xulrunner

Jboss 遇到的问题 :org.jboss.tools.vpe.xulrunner.XulRunnerBundleNotFoundException: Bundle org.mozilla.x...

我怕爱的太早我们不能终老 提交于 2020-07-27 05:57:40
解决办法: https://tunatore.wordpress.com/2015/06/15/org-jboss-tools-vpe-xulrunner-xulrunnerbundlenotfoundexception-bundle-org-mozilla-xulrunner-win32-win32-x86_64-is-not-found/ 二、Eclipse中jsp异常 The superclass "javax.servlet.http.HttpServlet" was not found on the Java Bu 问题描述: 学习ssh商城的时候,将资料中给的静态文件引入jsp文件夹,但是每个文件都有一个大红×,,然后在jsp文件里面出现了The superclass"javax.servlet.http.HttpServlet" was not found on the Java Build Path错误异常 原因分析: 在Javaweb工程下没有引入中间件(服务器Tomcat)运行的library 解决办法: (1)确认eclipse中server的运行环境是否有配置,设置方法为:Window-->Preferences-->Server-->RuntimeEnvironments-->Add-->选择Apache的版本后点Next,再填入安装的Apache

用更好的浏览器替换.NET WebBrowser控件,比如Chrome?

喜夏-厌秋 提交于 2020-02-25 22:13:30
有没有相对简单的方法将现代浏览器插入.NET应用程序? 据我所知, WebBrowser 控件是 IE 的包装 器 ,除了看起来它是一个非常老的 IE 版本之外不会有问题,所有这些都需要CSS搞砸,潜在的安全性风险(如果渲染引擎没有打补丁,我真的可以期待修复多个缓冲区溢出问题吗?)和其他问题。 我正在使用 Visual Studio C# (快速版 - 它在这里有什么不同吗?) 我想在我的应用程序中集成一个好的Web浏览器。 在某些情况下,我只是使用它来处理用户注册过程,与我的网站的一些功能和该订单的其他东西的接口,但我有另一个应用程序,需要更多错误...控制。 我需要: 可以集成到我的应用程序窗口内的浏览器(不是单独的窗口) 对CSS,js和其他Web技术的良好支持,与任何现代浏览器相同 基本浏览器功能,如“导航”,“返回”,“重新加载”...... 自由访问页面代码和输出。 我正在考虑Chrome,因为它属于BSD许可证,但我会对最新版本的IE感到满意。 尽可能地,我想保持简单。 最好的情况是,如果可以修补现有的 WebBrowser 控件,它已经占我所需要的大约70%,但我不认为这是可能的。 我找到了一个用于Mozilla的activeX控件( http://www.iol.ie/~locka/mozilla/control.htm ),但看起来它是一个旧版本

changing the content of browser in XULRunner

回眸只為那壹抹淺笑 提交于 2020-01-24 19:51:26
问题 I have an Xulrunner app that loads fullscreen without any controls and loads a html page by default. The only thing it has is browser element and a popup menu visible on right click. In the popup menu there is option to quit. Then there is a menu entry 'theme2'. I want the browser to load another html when theme2 is clicked. This is my main.xul, thats loaded by default: <?xml version="1.0"?> <?xml-stylesheet href="chrome://global/skin/" type="text/css"?> <window id="main" title="Edusoft"

How can I pass events on to a hidden <browser>?

試著忘記壹切 提交于 2020-01-17 12:52:28
问题 I've working on a simple view around a browser using XULRunner 1.9.2. <?xml version="1.0"?> <?xml-stylesheet type="text/css" href="chrome://global/skin/"?> <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" xmlns:html="http://www.w3.org/1999/xhtml"> <hbox equalsize="always" flex="2"> <browser flex="1" type="content-primary"/> <html:canvas flex="1"/> </hbox> </window> I've written some Javascript that handles MozAfterPaint events from the <browser> , pushes them to

How can I pass events on to a hidden <browser>?

不问归期 提交于 2020-01-17 12:52:24
问题 I've working on a simple view around a browser using XULRunner 1.9.2. <?xml version="1.0"?> <?xml-stylesheet type="text/css" href="chrome://global/skin/"?> <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" xmlns:html="http://www.w3.org/1999/xhtml"> <hbox equalsize="always" flex="2"> <browser flex="1" type="content-primary"/> <html:canvas flex="1"/> </hbox> </window> I've written some Javascript that handles MozAfterPaint events from the <browser> , pushes them to

Firefox 5, 6, 7 and XULRunner: Which versions are which?

会有一股神秘感。 提交于 2020-01-13 20:35:32
问题 I'm trying to recompile a Firefox extension that has binary components for use with Firefox 5 now that the beta is out. According to this I need to rebuild the binary components. What I can't figure out is which xulrunner to download and build against from here. Is there a table that matches up FF versions (5, 6, 7) with code names (Beta, Central, Aurora) with Xul Runner versions (2, etc)? Any decent guide would be great. Update It looks like the SDK / Mozilla version number has been changed

Single-file app with xulrunner - possible?

白昼怎懂夜的黑 提交于 2020-01-13 12:04:22
问题 I have tried to mess with xulrunner before, and now I'm trying once again :) The "real" tutorial (Getting started with XULRunner - MDN) does, in fact, show that one is supposed to have application.ini and other files ( possibly zipped as .xpi, which then requires --install-app ... ), and then the call should be like: xulrunner `pwd`/application.ini ... however, I'd like an easier way to start up - and hence, my hope for single-file XUL application approach :) ( A good note here is that one

Opening a window in XUL

泪湿孤枕 提交于 2020-01-06 08:15:56
问题 An exception is being thrown when trying to open a window using window.open in XUL. The exception details: Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIDOMJSWindow.open]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: The line of code throwing the exception is: newWind = window.open(settings.url, "Dialog", "chrome = yes, width=" + settings.width + ",height=" + settings.height + ",resizable = yes,scrollbars=yes"); Can anyone please tell me how to get

Prevent target=“_top” from taking over UI in Mozilla Chromeless

天涯浪子 提交于 2020-01-06 02:37:26
问题 I know a fix for this is coming soon; I'm just hoping to get a head start. Chromeless is basically Firefox without it's UI. You can build your own UI using HTML, CSS, and javascript. Tabs/windows are loaded in iframes. The main frame (the browser UI) has special priviledges that allow it to control the iframes. The iframes think they are the "top" document ( top === self ). There have been a couple issues with the way they have implemented these sandboxed iframes. One of which is that links

Install Flash Player plugin on xulrunner 22.0

允我心安 提交于 2020-01-04 02:43:31
问题 I am using GeckoFX running on xulrunner 22.0, and it works fine. But when it comes to load a website with Flash, then it does not load the Flash content. I have been trying to install the Flash Player plugin to the xulrunner but I've failed miserably. The installation I followed was to copy the NPSWF32_11_7_700_224.dll file to the /plugins/ directory in the xulrunner directory. and the FlashPlayerApp.exe to the xulrunner directory itself. And still nothing. Anybody knows how to get this thing