Difference between revisions of "Mozilla.dev.platform"
(Added link to Dec 1) |
|||
(20 intermediate revisions by 2 users not shown) | |||
Line 4: | Line 4: | ||
Mozilla.dev.platform | Mozilla.dev.platform | ||
+ | |||
+ | Now being updated on [http://developer.mozilla.org/en/docs/Newsgroup_summaries:mozilla-dev-platform MDC] | ||
== Authors == | == Authors == | ||
Line 11: | Line 13: | ||
== Weekly Summaries == | == Weekly Summaries == | ||
+ | ===[http://developer.mozilla.org/en/docs/Newsgroup_summaries:mozilla-dev-platform:2006-09-29 September 22 - 29, 2006]=== | ||
+ | ===[http://developer.mozilla.org/en/docs/Newsgroup_summaries:mozilla-dev-platform:2006-10-06 September 30 - October 6, 2006]=== | ||
+ | ===[http://developer.mozilla.org/en/docs/Newsgroup_summaries:mozilla-dev-platform:2006-10-13 October 7 - October 13, 2006]=== | ||
+ | ===[http://developer.mozilla.org/en/docs/Newsgroup_summaries:mozilla-dev-platform:2006-10-20 October 14 - October 20, 2006]=== | ||
+ | ===[http://developer.mozilla.org/en/docs/Newsgroup_summaries:mozilla-dev-platform:2006-10-27 October 21 - October 27, 2006]=== | ||
− | === [[ | + | ===[http://developer.mozilla.org/en/docs/Newsgroup_summaries:mozilla-dev-platform:2006-11-03 October 27 - November 3, 2006]=== |
+ | ===[http://developer.mozilla.org/en/docs/Newsgroup_summaries:mozilla-dev-platform:2006-11-10 November 4 - November 10, 2006]=== | ||
+ | ===[http://developer.mozilla.org/en/docs/Newsgroup_summaries:mozilla-dev-platform:2006-11-17 November 11 - November 17, 2006]=== | ||
− | + | ===[http://developer.mozilla.org/en/docs/Newsgroup_summaries:mozilla-dev-platform:2006-18-24 November 18 - November 24, 2006]=== | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | === | + | ===[http://developer.mozilla.org/en/docs/Newsgroup_summaries:mozilla-dev-platform:2006-12-01 November 25 - December 1, 2006]=== |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
== FAQ == | == FAQ == | ||
+ | [http://developer.mozilla.org/en/docs/mozilla.dev.platform_FAQ mozilla.dev.platform FAQ on MDC] | ||
− | + | === '''Q''' === | |
− | |||
− | |||
− | |||
− | |||
− | + | * [http://groups.google.com/group/mozilla.dev.platform/browse_thread/thread/f36bd89790743d85/0a59403a5f9d092c#0a59403a5f9d092c|Sep 27 Xulrunner fails without feedback on OSX Intel 10.4.7] | |
+ | ''I am trying to port our XUL application to OS X. However when I run | ||
+ | xulrunner from the command line it fails silently without feedback. | ||
+ | The xulrunner-bin executable runs for about 4-5 seconds, then exits. | ||
+ | It outputs no message to the console or system logs and returns code | ||
+ | 0 to the shell. Passing the -console and/or -jsconsole options have | ||
+ | no effect on this behaviour. I have tried several other XUL | ||
+ | applications as well as ours, with the same result. | ||
+ | I downloaded the OSX xulrunner .dmg files and installed them using the | ||
+ | standard OSX package installer. I am not trying to install | ||
+ | applications, just run them from their own directory using'' | ||
+ | <pre>/path/to/xulrunner-bin application.ini</pre> | ||
+ | ''My system is OS X Intel 10.4.7. I get the same result using | ||
+ | xulrunner 1.8.0.1, 1.8.0.4 and the latest nightly 1.8.'' | ||
+ | Can anyone give me any pointers on how to pin down this problem? | ||
− | |||
− | + | === '''A''' === | |
− | |||
− | + | In order for applications to run on | |
− | + | mac, they must be in an application bundle (Foo.app). The xulrunner | |
+ | <pre>-install-app</pre> | ||
+ | flag can be used to "unpack" a XUL app into the correct mac | ||
+ | bundle structure. |
Latest revision as of 03:33, 30 November 2006
Contents
- 1 Newsgroup
- 2 Authors
- 3 Weekly Summaries
- 3.1 September 22 - 29, 2006
- 3.2 September 30 - October 6, 2006
- 3.3 October 7 - October 13, 2006
- 3.4 October 14 - October 20, 2006
- 3.5 October 21 - October 27, 2006
- 3.6 October 27 - November 3, 2006
- 3.7 November 4 - November 10, 2006
- 3.8 November 11 - November 17, 2006
- 3.9 November 18 - November 24, 2006
- 3.10 November 25 - December 1, 2006
- 4 FAQ
Newsgroup
Mozilla.dev.platform
Now being updated on MDC
Authors
Weekly Summaries
September 22 - 29, 2006
September 30 - October 6, 2006
October 7 - October 13, 2006
October 14 - October 20, 2006
October 21 - October 27, 2006
October 27 - November 3, 2006
November 4 - November 10, 2006
November 11 - November 17, 2006
November 18 - November 24, 2006
November 25 - December 1, 2006
FAQ
mozilla.dev.platform FAQ on MDC
Q
I am trying to port our XUL application to OS X. However when I run xulrunner from the command line it fails silently without feedback. The xulrunner-bin executable runs for about 4-5 seconds, then exits. It outputs no message to the console or system logs and returns code 0 to the shell. Passing the -console and/or -jsconsole options have no effect on this behaviour. I have tried several other XUL applications as well as ours, with the same result. I downloaded the OSX xulrunner .dmg files and installed them using the standard OSX package installer. I am not trying to install applications, just run them from their own directory using
/path/to/xulrunner-bin application.ini
My system is OS X Intel 10.4.7. I get the same result using xulrunner 1.8.0.1, 1.8.0.4 and the latest nightly 1.8. Can anyone give me any pointers on how to pin down this problem?
A
In order for applications to run on mac, they must be in an application bundle (Foo.app). The xulrunner
-install-app
flag can be used to "unpack" a XUL app into the correct mac bundle structure.