From philip at aleytys.pc.my Sun Nov 2 20:06:22 2008 From: philip at aleytys.pc.my (Philip Chee) Date: Mon, 03 Nov 2008 12:06:22 +0800 Subject: [Project_owners] Problem with JSLib on trunk (Gecko 1.9.1) Message-ID: On trunk the following code doesn't work: var du = new DirUtils(); var f = new File(du.getPrefsDir()); The second line causes the error: Error: Cannot convert WrappedNative to function = NS_ERROR_XPC_CANT_CONVERT_WN_TO_FUN Looking at the properties of File.prototype I get: Properties for object: [xpconnect wrapped native prototype] getAsText: function getAsText() { [native code] } getAsDataURL: function getAsDataURL() { [native code] } getAsBinary: function getAsBinary() { [native code] } This doesn't look like the jslib File() object at all. Looking through DevMo I see that nsIDOMFile was added in Firefox 3. So it seems we have a namespace clash. Unfortunately the extension I'm trying to update (Cookie Panel) is orphaned, so I don't know what to do. On the JSLib side I guess you could rename their File() object to JslibFile() or namespace it to JsLib.File() Phil -- Philip Chee , http://flashblock.mozdev.org/ http://xsidebar.mozdev.org Guard us from the she-wolf and the wolf, and guard us from the thief, oh Night, and so be good for us to pass. [ ]And I thought *I* had problems! * TagZilla 0.066.6 From pete at mozdevgroup.com Mon Nov 3 06:35:09 2008 From: pete at mozdevgroup.com (Pete Collins) Date: Mon, 03 Nov 2008 07:35:09 -0700 Subject: [Project_owners] Problem with JSLib on trunk (Gecko 1.9.1) In-Reply-To: References: Message-ID: <490F0C1D.2020400@mozdevgroup.com> There is a new File global script object now? Ideally I think jsLib should go in the direction of putting all it's objects behind a jslib namespace. This will however break backwards compatibility and that is something I don't want do. You might need to do this: File = null; include(jslib_file); var f = new File(du.getPrefsDir()); Right here is where the global object is defined: http://mxr.mozilla.org/mozilla-central/source/dom/src/base/nsDOMClassInfo.cpp#3447 I think it should be called "DOMFile" and *not* "File". --pete Philip Chee wrote: > On trunk the following code doesn't work: > > var du = new DirUtils(); > var f = new File(du.getPrefsDir()); > > The second line causes the error: > > Error: Cannot convert WrappedNative to function = > NS_ERROR_XPC_CANT_CONVERT_WN_TO_FUN > > Looking at the properties of File.prototype I get: > > Properties for object: > [xpconnect wrapped native prototype] > > > getAsText: function getAsText() { > [native code] > } > getAsDataURL: function getAsDataURL() { > [native code] > } > getAsBinary: function getAsBinary() { > [native code] > } > > This doesn't look like the jslib File() object at all. Looking through > DevMo I see that nsIDOMFile was added in Firefox 3. So it seems we have > a namespace clash. > > > > Unfortunately the extension I'm trying to update (Cookie Panel) is > orphaned, so I don't know what to do. On the JSLib side I guess you > could rename their File() object to JslibFile() or namespace it to > JsLib.File() > > Phil > > -- Pete Collins - Founder, Mozdev Group Inc. www.mozdevgroup.com Mozilla Software Development Solutions tel: 1-719-302-5811 fax: 1-719-302-5813 From kanjilish at gmail.com Mon Nov 3 07:30:29 2008 From: kanjilish at gmail.com (Kanji Learner) Date: Mon, 3 Nov 2008 07:30:29 -0800 Subject: [Project_owners] Updates to Version Compatibility Message-ID: <241ab0da0811030730m6a27fb6fgb5bae7e2036dc850@mail.gmail.com> I just noticed that with the update to 3.0.3 about 1/2 my extensions stopped working, even though the install.rdf file for all of them has an "3.0.*" entry. This is probably discussed before, but can you point me in the right direction for how to solve this problem? Is there an easy way to update compatibility for my extension from the control panel, or will I have to resubmit the extension with a new RDF that lists 3.0. specifically, resubmitting with each incremental upgrade? Thanks! -------------- next part -------------- An HTML attachment was scrubbed... URL: From abhinav.kumar.in at gmail.com Mon Nov 3 08:19:22 2008 From: abhinav.kumar.in at gmail.com (Abhinav Kumar) Date: Mon, 3 Nov 2008 21:49:22 +0530 Subject: [Project_owners] Updates to Version Compatibility In-Reply-To: <241ab0da0811030730m6a27fb6fgb5bae7e2036dc850@mail.gmail.com> References: <241ab0da0811030730m6a27fb6fgb5bae7e2036dc850@mail.gmail.com> Message-ID: Just reset the install.rdf files Reinstall firefox after deleting XP/2000 %appdata%\Mozilla %userprofile%\Local Settings\Application Data\Mozilla Vista %appdata%\Mozilla %localappdata%\Mozilla On 11/3/08, Kanji Learner wrote: > > I just noticed that with the update to 3.0.3 about 1/2 my extensions > stopped working, even though the install.rdf file for all of them has an > "3.0.*" entry. This is probably discussed > before, but can you point me in the right direction for how to solve this > problem? Is there an easy way to update compatibility for my extension from > the control panel, or will I have to resubmit the extension with a new RDF > that lists 3.0. specifically, resubmitting with each incremental > upgrade? > > Thanks! > > _______________________________________________ > Project_owners mailing list > Project_owners at mozdev.org > https://www.mozdev.org/mailman/listinfo/project_owners > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From philip at aleytys.pc.my Mon Nov 3 10:17:30 2008 From: philip at aleytys.pc.my (Philip Chee) Date: Tue, 04 Nov 2008 02:17:30 +0800 Subject: [Project_owners] Problem with JSLib on trunk (Gecko 1.9.1) In-Reply-To: References: Message-ID: On Mon, 03 Nov 2008 07:35:09 -0700, Pete Collins wrote: > You might need to do this: > > File = null; > include(jslib_file); > > var f = new File(du.getPrefsDir()); Error: File is not a constructor Source file: chrome://cookiepanel/content/cookiepanel.js Line: 574 > I think it should be called "DOMFile" and *not* "File". File a bug? Phil -- Philip Chee , http://flashblock.mozdev.org/ http://xsidebar.mozdev.org Guard us from the she-wolf and the wolf, and guard us from the thief, oh Night, and so be good for us to pass. [ ]Memory is a thing we forget with. * TagZilla 0.066.6 From kanjilish at gmail.com Tue Nov 4 19:39:01 2008 From: kanjilish at gmail.com (Kanji Learner) Date: Tue, 4 Nov 2008 19:39:01 -0800 Subject: [Project_owners] Updates to Version Compatibility In-Reply-To: References: <241ab0da0811030730m6a27fb6fgb5bae7e2036dc850@mail.gmail.com> Message-ID: <241ab0da0811041939g66b118f6u13b84d197f6d652a@mail.gmail.com> Sorry - I should have been more specific. Is this just a problem with my install, or are all extension users affected similarly? Why did all of the extensions suddenly stop working after update to 3.0.3? If it is a problem with the extensions, and not my install, what do I need to do to fix the .rdf file? On Mon, Nov 3, 2008 at 8:19 AM, Abhinav Kumar wrote: > Just reset the install.rdf files > > Reinstall firefox after deleting > > XP/2000 > %appdata%\Mozilla > %userprofile%\Local Settings\Application Data\Mozilla > > Vista > %appdata%\Mozilla > %localappdata%\Mozilla > > On 11/3/08, Kanji Learner wrote: > >> I just noticed that with the update to 3.0.3 about 1/2 my extensions >> stopped working, even though the install.rdf file for all of them has an >> "3.0.*" entry. This is probably discussed >> before, but can you point me in the right direction for how to solve this >> problem? Is there an easy way to update compatibility for my extension from >> the control panel, or will I have to resubmit the extension with a new RDF >> that lists 3.0. specifically, resubmitting with each incremental >> upgrade? >> >> Thanks! >> >> _______________________________________________ >> Project_owners mailing list >> Project_owners at mozdev.org >> https://www.mozdev.org/mailman/listinfo/project_owners >> >> > > _______________________________________________ > Project_owners mailing list > Project_owners at mozdev.org > https://www.mozdev.org/mailman/listinfo/project_owners > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From alta88 at gmail.com Tue Nov 4 22:18:19 2008 From: alta88 at gmail.com (alta88[nntp]) Date: Tue, 04 Nov 2008 23:18:19 -0700 Subject: [Project_owners] Announcing Mercurial at Mozdev In-Reply-To: References: Message-ID: ---On 2008.Jul.07 01:56 PM, Douglas E. Warner wrote: > We're happy to announce the availability of Mercurial for hosting > project sources at Mozdev. > Documentation can be found here: > http://www.mozdev.org/drupal/wiki/MozdevMercurial > The biggest caveats: > * CVS is still necessary for maintaining the website and downloads > (fixing this is on our roadmap) > * Projects' source information page needs updated by the PO to include > information on Mercurial > * We weren't planning on removing the old sources from CVS and we > don't have a mechanism for locking CVS, so it might slightly confusing > to new users or contributors as to where to get the canonical source > for a project if they switch to from CVS to Mercurial > If you're interested in having Mercurial setup for your project, head > over to the documentation page [1] and click the link to request a new > Mercurial repository. > -Doug > [1] http://www.mozdev.org/drupal/wiki/MozdevMercurial > -- > Douglas E. Warner Site Developer > Mozdev.org http://www.mozdev.org hi doug, anything more on also moving downloads and website into hg? i'd like to move over but it seems to make sense to go all or none.. -------------- next part -------------- An HTML attachment was scrubbed... URL: From matthew at mjwilson.demon.co.uk Tue Nov 4 23:05:19 2008 From: matthew at mjwilson.demon.co.uk (Matthew Wilson) Date: Wed, 05 Nov 2008 07:05:19 +0000 Subject: [Project_owners] Updates to Version Compatibility In-Reply-To: <241ab0da0811041939g66b118f6u13b84d197f6d652a@mail.gmail.com> References: <241ab0da0811030730m6a27fb6fgb5bae7e2036dc850@mail.gmail.com> <241ab0da0811041939g66b118f6u13b84d197f6d652a@mail.gmail.com> Message-ID: <491145AF.5010906@mjwilson.demon.co.uk> Kanji Learner wrote: > Sorry - I should have been more specific. Is this just a problem with > my install, or are all extension users affected similarly? Why did all > of the extensions suddenly stop working after update to 3.0.3? If it is > a problem with the extensions, and not my install, what do I need to do > to fix the .rdf file? I didn't have this problem. Matthew From silfreed at silfreed.net Wed Nov 5 05:32:57 2008 From: silfreed at silfreed.net (Douglas E. Warner) Date: Wed, 05 Nov 2008 08:32:57 -0500 Subject: [Project_owners] Announcing Mercurial at Mozdev In-Reply-To: References: Message-ID: <4911A089.30305@silfreed.net> alta88[nntp] wrote: > anything more on also moving downloads and website into hg? i'd like to > move over but it seems to make sense to go all or none.. No, there hasn't been any progress here. Our focus right now has been on improving the project setup aspect of Mozdev and then we might come back to fixing up how people maintain the projects at Mozdev. -Doug [1] http://www.mozdev.org/resources/roadmap.html -- Douglas E. Warner Site Developer Mozdev.org http://www.mozdev.org -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: OpenPGP digital signature URL: From belaviyo at gmail.com Sat Nov 8 13:53:44 2008 From: belaviyo at gmail.com (joe ertaba) Date: Sun, 9 Nov 2008 01:23:44 +0330 Subject: [Project_owners] Naming Message-ID: <23d9f6b20811081353s42ade702ubf2aa023bca674ef@mail.gmail.com> Hi I want to know what is the best method for naming variables,... *Please suggest naming for these conditions:* My Application name: *MyApp* My current XUL window name: *MyMainXUL* then what is the best name for these : What is the best name for main window id : My choice is id="*MyApp.MyMainXUL*" What is the best name for main window title (id for localization)= My choice is title="&*MyApp.MyMainXUL.Title*;" What is the best name for pref in Js file: pref("*MyApp.MyMainXUL.SomePrefName*", "*PrefValue*"); What is the best name for one element in main xul file (all ??? cases): ----- //My choice is * MyApp.MyMainXUL.Tabbox1* //My choice is *MyApp.MyMainXUL.** Tabbox1.Tab1* //My choice is *MyApp.MyMainXUL.** Tabbox1.Tab2* //My choice for id is * MyApp.MyMainXUL.**Tabbox1.Tab1.Textbox1* //My choice for value is *MyApp.MyMainXUL.**Tabbox1.Tab1.Textbox1* I think these example will show all possible cases, please add some more if you think they couldn't support all conditions. Thanks -Joe -------------- next part -------------- An HTML attachment was scrubbed... URL: From belaviyo at gmail.com Tue Nov 11 01:04:50 2008 From: belaviyo at gmail.com (joe ertaba) Date: Tue, 11 Nov 2008 12:34:50 +0330 Subject: [Project_owners] how to align elements in richlistbox Message-ID: <23d9f6b20811110104h6d0d9407v7177601aaba20d24@mail.gmail.com> Hi Is there any way to align elements in different richlistitems? Preview: http://i35.tinypic.com/1zp385x.jpg I think I should use grid element, but I cant figure out how to apply it. -------------- next part -------------- An HTML attachment was scrubbed... URL: From neil at parkwaycc.co.uk Tue Nov 11 02:41:56 2008 From: neil at parkwaycc.co.uk (Neil) Date: Tue, 11 Nov 2008 10:41:56 +0000 Subject: [Project_owners] how to align elements in richlistbox In-Reply-To: References: Message-ID: joe ertaba wrote: > Is there any way to align elements in different richlistitems? > > > > > > > > > I think I should use grid element, but I cant figure out how to apply it. I think you can do it with some CSS: .rows { display: -moz-grid-group; } .row { display: -moz-grid-line; } etc. From belaviyo at gmail.com Tue Nov 11 03:51:21 2008 From: belaviyo at gmail.com (joe ertaba) Date: Tue, 11 Nov 2008 15:21:21 +0330 Subject: [Project_owners] how to align elements in richlistbox In-Reply-To: References: Message-ID: <23d9f6b20811110351v544d9cd4u7c33c3bc6dc2a57d@mail.gmail.com> Hi Neil, Please see these three examples #1 ; This one is original grid 1 2 #2 ;In this one I replaced row element only and it works like above example 1 2 #3 ;In this one I replaced rows element only and it doesnt works :( 1 2 Do you know why ? On Tue, Nov 11, 2008 at 2:11 PM, Neil wrote: > joe ertaba wrote: > > Is there any way to align elements in different richlistitems? >> >> >> >> >> >> >> >> >> I think I should use grid element, but I cant figure out how to apply it. >> > > I think you can do it with some CSS: > .rows { display: -moz-grid-group; } > .row { display: -moz-grid-line; } > > > > > etc. > _______________________________________________ > Project_owners mailing list > Project_owners at mozdev.org > https://www.mozdev.org/mailman/listinfo/project_owners > -------------- next part -------------- An HTML attachment was scrubbed... URL: From varun21 at gmail.com Tue Nov 11 03:56:32 2008 From: varun21 at gmail.com (Shivanand Sharma / Varun) Date: Tue, 11 Nov 2008 17:26:32 +0530 Subject: [Project_owners] how to align elements in richlistbox In-Reply-To: <23d9f6b20811110351v544d9cd4u7c33c3bc6dc2a57d@mail.gmail.com> References: <23d9f6b20811110351v544d9cd4u7c33c3bc6dc2a57d@mail.gmail.com> Message-ID: <1a9fd9700811110356h50910585x7e6214a78af739a5@mail.gmail.com> Hi, Personally I cheat from the XUL Periodic table. Saves a lot of frustration and time :) http://www.hevanet.com/acorbin/xul/top.xul Also see https://developer.mozilla.org/en/Mozilla_CSS_Extensions for related CSS. Hope that helps. Cheers! Shivanand Sharma Producer and Editor http://www.binaryturf.com (Web Technology & Blogging) http://www.advancedphotography.net On Tue, Nov 11, 2008 at 5:21 PM, joe ertaba wrote: > Hi Neil, > > Please see these three examples > > #1 ; This one is original grid > > > > > > > > > 1 > 2 > > > > > #2 ;In this one I replaced row element only and it works like above example > > > > > > > > > 1 > 2 > > > > > #3 ;In this one I replaced rows element only and it doesnt works :( > > > > > > > > > 1 > 2 > > > > > Do you know why ? > > On Tue, Nov 11, 2008 at 2:11 PM, Neil wrote: > >> joe ertaba wrote: >> >> Is there any way to align elements in different richlistitems? >>> >>> >>> >>> >>> >>> >>> >>> >>> I think I should use grid element, but I cant figure out how to apply it. >>> >> >> I think you can do it with some CSS: >> .rows { display: -moz-grid-group; } >> .row { display: -moz-grid-line; } >> >> >> >> >> etc. >> _______________________________________________ >> Project_owners mailing list >> Project_owners at mozdev.org >> https://www.mozdev.org/mailman/listinfo/project_owners >> > > > _______________________________________________ > Project_owners mailing list > Project_owners at mozdev.org > https://www.mozdev.org/mailman/listinfo/project_owners > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From belaviyo at gmail.com Tue Nov 11 05:07:05 2008 From: belaviyo at gmail.com (joe ertaba) Date: Tue, 11 Nov 2008 16:37:05 +0330 Subject: [Project_owners] how to align elements in richlistbox In-Reply-To: <1a9fd9700811110356h50910585x7e6214a78af739a5@mail.gmail.com> References: <23d9f6b20811110351v544d9cd4u7c33c3bc6dc2a57d@mail.gmail.com> <1a9fd9700811110356h50910585x7e6214a78af739a5@mail.gmail.com> Message-ID: <23d9f6b20811110507j2cd16ab2i9990c663d6932aa0@mail.gmail.com> Hi I have found a solution , thanks both of you On Tue, Nov 11, 2008 at 3:26 PM, Shivanand Sharma / Varun wrote: > Hi, > > Personally I cheat from the XUL Periodic table. Saves a lot of frustration > and time :) http://www.hevanet.com/acorbin/xul/top.xul Also see > https://developer.mozilla.org/en/Mozilla_CSS_Extensions for related CSS. > Hope that helps. > > Cheers! > Shivanand Sharma > Producer and Editor > http://www.binaryturf.com (Web Technology & Blogging) > http://www.advancedphotography.net > > > > On Tue, Nov 11, 2008 at 5:21 PM, joe ertaba wrote: > >> Hi Neil, >> >> Please see these three examples >> >> #1 ; This one is original grid >> >> >> >> >> >> >> >> >> 1 >> 2 >> >> >> >> >> #2 ;In this one I replaced row element only and it works like above >> example >> >> >> >> >> >> >> >> >> 1 >> 2 >> >> >> >> >> #3 ;In this one I replaced rows element only and it doesnt works :( >> >> >> >> >> >> >> >> >> 1 >> 2 >> >> >> >> >> Do you know why ? >> >> On Tue, Nov 11, 2008 at 2:11 PM, Neil wrote: >> >>> joe ertaba wrote: >>> >>> Is there any way to align elements in different richlistitems? >>>> >>>> >>>> >>>> >>>> >>>> >>>> >>>> >>>> I think I should use grid element, but I cant figure out how to apply >>>> it. >>>> >>> >>> I think you can do it with some CSS: >>> .rows { display: -moz-grid-group; } >>> .row { display: -moz-grid-line; } >>> >>> >>> >>> >>> etc. >>> _______________________________________________ >>> Project_owners mailing list >>> Project_owners at mozdev.org >>> https://www.mozdev.org/mailman/listinfo/project_owners >>> >> >> >> _______________________________________________ >> Project_owners mailing list >> Project_owners at mozdev.org >> https://www.mozdev.org/mailman/listinfo/project_owners >> >> > > _______________________________________________ > Project_owners mailing list > Project_owners at mozdev.org > https://www.mozdev.org/mailman/listinfo/project_owners > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From belaviyo at gmail.com Tue Nov 11 05:10:29 2008 From: belaviyo at gmail.com (joe ertaba) Date: Tue, 11 Nov 2008 16:40:29 +0330 Subject: [Project_owners] textbox fires on enter Message-ID: <23d9f6b20811110510q74f02b06l8aef1d4095dd0537@mail.gmail.com> Hi, Is there any function like other built-in functions(onchange, ...) which fires when user press Enter in a textbox ? If there is no any default function, is there any why other than keyboard monitoring to find out when user press on Enter key ? -------------- next part -------------- An HTML attachment was scrubbed... URL: From enndeakin at gmail.com Tue Nov 11 06:11:53 2008 From: enndeakin at gmail.com (Neil Deakin) Date: Tue, 11 Nov 2008 09:11:53 -0500 Subject: [Project_owners] how to align elements in richlistbox In-Reply-To: <23d9f6b20811110507j2cd16ab2i9990c663d6932aa0@mail.gmail.com> References: <23d9f6b20811110351v544d9cd4u7c33c3bc6dc2a57d@mail.gmail.com> <1a9fd9700811110356h50910585x7e6214a78af739a5@mail.gmail.com> <23d9f6b20811110507j2cd16ab2i9990c663d6932aa0@mail.gmail.com> Message-ID: <491992A9.2030501@gmail.com> joe ertaba wrote: > Hi > > I have found a solution , thanks both of you > > > > > > > > > > > > > As richlistitem has to be a direct child of richlistbox, that won't actually work. From neil at parkwaycc.co.uk Tue Nov 11 06:22:22 2008 From: neil at parkwaycc.co.uk (Neil) Date: Tue, 11 Nov 2008 14:22:22 +0000 Subject: [Project_owners] how to align elements in richlistbox In-Reply-To: References: Message-ID: joe ertaba wrote: > Do you know why ? Sorry, you gave me the right hint though, try .rows { display: -moz-grid-group; -moz-box-orient: vertical; } .row { display: -moz-grid-line; -moz-box-orient: horizontal; } From neil at parkwaycc.co.uk Tue Nov 11 06:26:11 2008 From: neil at parkwaycc.co.uk (Neil) Date: Tue, 11 Nov 2008 14:26:11 +0000 Subject: [Project_owners] textbox fires on enter In-Reply-To: References: Message-ID: joe ertaba wrote: > Is there any function like other built-in functions(onchange, ...) > which fires when user press Enter in a textbox ? onchange will fire if you change the value then press Enter. From belaviyo at gmail.com Tue Nov 11 07:20:02 2008 From: belaviyo at gmail.com (joe ertaba) Date: Tue, 11 Nov 2008 18:50:02 +0330 Subject: [Project_owners] how to align elements in richlistbox In-Reply-To: <491992A9.2030501@gmail.com> References: <23d9f6b20811110351v544d9cd4u7c33c3bc6dc2a57d@mail.gmail.com> <1a9fd9700811110356h50910585x7e6214a78af739a5@mail.gmail.com> <23d9f6b20811110507j2cd16ab2i9990c663d6932aa0@mail.gmail.com> <491992A9.2030501@gmail.com> Message-ID: <23d9f6b20811110720l7e66d18bpce659b2f9e54dc@mail.gmail.com> On Tue, Nov 11, 2008 at 5:41 PM, Neil Deakin wrote: > joe ertaba wrote: > >> Hi >> >> I have found a solution , thanks both of you >> >> >> >> >> >> >> >> >> >> >> >> >> >> As richlistitem has to be a direct child of richlistbox, that won't > actually work. > But it seem that it works! I can select,... like normal > > > _______________________________________________ > Project_owners mailing list > Project_owners at mozdev.org > https://www.mozdev.org/mailman/listinfo/project_owners > -------------- next part -------------- An HTML attachment was scrubbed... URL: From belaviyo at gmail.com Tue Nov 11 07:30:31 2008 From: belaviyo at gmail.com (joe ertaba) Date: Tue, 11 Nov 2008 19:00:31 +0330 Subject: [Project_owners] how to align elements in richlistbox In-Reply-To: <23d9f6b20811110720l7e66d18bpce659b2f9e54dc@mail.gmail.com> References: <23d9f6b20811110351v544d9cd4u7c33c3bc6dc2a57d@mail.gmail.com> <1a9fd9700811110356h50910585x7e6214a78af739a5@mail.gmail.com> <23d9f6b20811110507j2cd16ab2i9990c663d6932aa0@mail.gmail.com> <491992A9.2030501@gmail.com> <23d9f6b20811110720l7e66d18bpce659b2f9e54dc@mail.gmail.com> Message-ID: <23d9f6b20811110730w649f530jb18ce4ab239d4ae1@mail.gmail.com> Here are 2 solutions first one is yours, but It still have problem :( I cant figure out why? This one seems to work but richlistitem is not directly a child ! Any idea ? On Tue, Nov 11, 2008 at 6:50 PM, joe ertaba wrote: > > > On Tue, Nov 11, 2008 at 5:41 PM, Neil Deakin wrote: > >> joe ertaba wrote: >> >>> Hi >>> >>> I have found a solution , thanks both of you >>> >>> >>> >>> >>> >>> >>> >>> >>> >>> >>> >>> >>> >>> As richlistitem has to be a direct child of richlistbox, that won't >> actually work. >> > > But it seem that it works! > I can select,... like normal > > >> >> >> _______________________________________________ >> Project_owners mailing list >> Project_owners at mozdev.org >> https://www.mozdev.org/mailman/listinfo/project_owners >> > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From belaviyo at gmail.com Tue Nov 11 07:33:56 2008 From: belaviyo at gmail.com (joe ertaba) Date: Tue, 11 Nov 2008 19:03:56 +0330 Subject: [Project_owners] textbox fires on enter In-Reply-To: References: Message-ID: <23d9f6b20811110733q223a866u46f809435e1baf84@mail.gmail.com> I know but I want something which fires always on Enter, is there any better way than addeventlistener ? On Tue, Nov 11, 2008 at 5:56 PM, Neil wrote: > joe ertaba wrote: > > Is there any function like other built-in functions(onchange, ...) which >> fires when user press Enter in a textbox ? >> > > onchange will fire if you change the value then press Enter. > _______________________________________________ > Project_owners mailing list > Project_owners at mozdev.org > https://www.mozdev.org/mailman/listinfo/project_owners > -------------- next part -------------- An HTML attachment was scrubbed... URL: From varun21 at gmail.com Tue Nov 11 07:43:31 2008 From: varun21 at gmail.com (Shivanand Sharma / Varun) Date: Tue, 11 Nov 2008 21:13:31 +0530 Subject: [Project_owners] textbox fires on enter In-Reply-To: <23d9f6b20811110733q223a866u46f809435e1baf84@mail.gmail.com> References: <23d9f6b20811110733q223a866u46f809435e1baf84@mail.gmail.com> Message-ID: <1a9fd9700811110743k162fafecq3b36a222d3a0ec3c@mail.gmail.com> Hi, If you place the input type="text" in a form element you can use onsubmit? Cheers! Shivanand Sharma Producer and Editor http://www.binaryturf.com (Web Technology & Blogging) http://www.advancedphotography.net On Tue, Nov 11, 2008 at 9:03 PM, joe ertaba wrote: > I know but I want something which fires always on Enter, is there any > better way than addeventlistener ? > > > On Tue, Nov 11, 2008 at 5:56 PM, Neil wrote: > >> joe ertaba wrote: >> >> Is there any function like other built-in functions(onchange, ...) which >>> fires when user press Enter in a textbox ? >>> >> >> onchange will fire if you change the value then press Enter. >> _______________________________________________ >> Project_owners mailing list >> Project_owners at mozdev.org >> https://www.mozdev.org/mailman/listinfo/project_owners >> > > > _______________________________________________ > Project_owners mailing list > Project_owners at mozdev.org > https://www.mozdev.org/mailman/listinfo/project_owners > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From hodabn at utk.edu Tue Nov 11 08:03:50 2008 From: hodabn at utk.edu (Baytiyeh, Hoda) Date: Tue, 11 Nov 2008 11:03:50 -0500 Subject: [Project_owners] research project Message-ID: Hello, I am a Ph.D. candidate in Instructional Technology at the University of Tennessee. For my dissertation, I am studying why people contribute to Free Open Source Software (F/OSS). I want to know what motivates you to join and contribute to F/OSS. The survey should take no more than 15 minutes and asks for no identifying information. Please click on the following link to take the survey. If you are interested in the results of the survey, please send me a message. http://ubiquity.utk.edu/limesurvey/index.php?sid=82655&lang=en Your help is highly appreciated. Thanks, Hoda Baytiyeh. hodabn at utk.edu -------------- next part -------------- An HTML attachment was scrubbed... URL: From belaviyo at gmail.com Tue Nov 11 11:00:58 2008 From: belaviyo at gmail.com (joe ertaba) Date: Tue, 11 Nov 2008 22:30:58 +0330 Subject: [Project_owners] Naming In-Reply-To: <23d9f6b20811081353s42ade702ubf2aa023bca674ef@mail.gmail.com> References: <23d9f6b20811081353s42ade702ubf2aa023bca674ef@mail.gmail.com> Message-ID: <23d9f6b20811111100i600c83e1id5f7e0e775a47e55@mail.gmail.com> Any Idea :) Is there any reference to show correct ways for naming variables ? On 11/9/08, joe ertaba wrote: > Hi > > I want to know what is the best method for naming variables,... > > *Please suggest naming for these conditions:* > > My Application name: *MyApp* > My current XUL window name: *MyMainXUL* > > then what is the best name for these : > > What is the best name for main window id : > My choice is id="*MyApp.MyMainXUL*" > What is the best name for main window title (id for localization)= > My choice is title="&*MyApp.MyMainXUL.Title*;" > What is the best name for pref in Js file: > pref("*MyApp.MyMainXUL.SomePrefName*", "*PrefValue*"); > > What is the best name for one element in main xul file (all ??? cases): > > > > ----- > //My choice is * > MyApp.MyMainXUL.Tabbox1* > > //My choice is *MyApp.MyMainXUL.** > Tabbox1.Tab1* > //My choice is *MyApp.MyMainXUL.** > Tabbox1.Tab2* > > > > //My choice for id is * > MyApp.MyMainXUL.**Tabbox1.Tab1.Textbox1* > //My > choice for value is *MyApp.MyMainXUL.**Tabbox1.Tab1.Textbox1* > > > > > > > I think these example will show all possible cases, please add some more if > you think they couldn't support all conditions. > > Thanks > -Joe > From varun21 at gmail.com Tue Nov 11 11:09:55 2008 From: varun21 at gmail.com (Shivanand Sharma / Varun) Date: Wed, 12 Nov 2008 00:39:55 +0530 Subject: [Project_owners] Naming In-Reply-To: <23d9f6b20811111100i600c83e1id5f7e0e775a47e55@mail.gmail.com> References: <23d9f6b20811081353s42ade702ubf2aa023bca674ef@mail.gmail.com> <23d9f6b20811111100i600c83e1id5f7e0e775a47e55@mail.gmail.com> Message-ID: <1a9fd9700811111109w39811d93ge594ce4468c49178@mail.gmail.com> I remember a mention of such conventions but can't locate them now... may be MDC or Mozillazine. But what's the concern anyways? Cheers! Shivanand Sharma Producer and Editor http://www.binaryturf.com (Web Technology & Blogging) http://www.advancedphotography.net On Wed, Nov 12, 2008 at 12:30 AM, joe ertaba wrote: > Any Idea :) > > Is there any reference to show correct ways for naming variables ? > > On 11/9/08, joe ertaba wrote: > > Hi > > > > I want to know what is the best method for naming variables,... > > > > *Please suggest naming for these conditions:* > > > > My Application name: *MyApp* > > My current XUL window name: *MyMainXUL* > > > > then what is the best name for these : > > > > What is the best name for main window id : > > My choice is id="*MyApp.MyMainXUL*" > > What is the best name for main window title (id for localization)= > > My choice is title="&*MyApp.MyMainXUL.Title*;" > > What is the best name for pref in Js file: > > pref("*MyApp.MyMainXUL.SomePrefName*", "*PrefValue*"); > > > > What is the best name for one element in main xul file (all ??? cases): > > > > > > > > ----- > > //My choice is * > > MyApp.MyMainXUL.Tabbox1* > > > > //My choice is > *MyApp.MyMainXUL.** > > Tabbox1.Tab1* > > //My choice is > *MyApp.MyMainXUL.** > > Tabbox1.Tab2* > > > > > > > > //My choice for id is > * > > MyApp.MyMainXUL.**Tabbox1.Tab1.Textbox1* > > //My > > choice for value is *MyApp.MyMainXUL.**Tabbox1.Tab1.Textbox1* > > > > > > > > > > > > > > I think these example will show all possible cases, please add some more > if > > you think they couldn't support all conditions. > > > > Thanks > > -Joe > > > _______________________________________________ > Project_owners mailing list > Project_owners at mozdev.org > https://www.mozdev.org/mailman/listinfo/project_owners > -------------- next part -------------- An HTML attachment was scrubbed... URL: From neil at parkwaycc.co.uk Wed Nov 12 02:55:30 2008 From: neil at parkwaycc.co.uk (Neil) Date: Wed, 12 Nov 2008 10:55:30 +0000 Subject: [Project_owners] Naming In-Reply-To: References: Message-ID: joe ertaba wrote: > What is the best name for main window id : > My choice is id="MyApp.MyMainXUL" .s are a bad idea for ids because you have to remember to quote them in CSS. From belaviyo at gmail.com Thu Nov 13 00:10:53 2008 From: belaviyo at gmail.com (joe ertaba) Date: Thu, 13 Nov 2008 11:40:53 +0330 Subject: [Project_owners] CSS urlbar Message-ID: <23d9f6b20811130010y58a0a304n8ca4e87dfb1d7d70@mail.gmail.com> Hi, I used this css to hide and show my extension icon #urlbar[a attrible is true] > #MyIcon { visibility: visible !important; } #urlbar[a attrible is false] > #MyIcon { display: none !important; } now I want to show my extension icon when mouse is over urlbar #urlbar[a attrible is true] > #MyIcon { visibility: visible !important; } #urlbar[a attrible is false] > #MyIcon { display: none !important; } *#urlbar[a attrible is false]:hover > #MyIcon { visibility: visible !important; }* it doesn't works :( can anybody fix it ? -------------- next part -------------- An HTML attachment was scrubbed... URL: From neil at parkwaycc.co.uk Thu Nov 13 01:50:51 2008 From: neil at parkwaycc.co.uk (Neil) Date: Thu, 13 Nov 2008 09:50:51 +0000 Subject: [Project_owners] CSS urlbar In-Reply-To: References: Message-ID: joe ertaba wrote: > #urlbar[a attrible is false] > #MyIcon > { > display: none !important; > } > *#urlbar[a attrible is false]:hover > #MyIcon > { > visibility: visible !important; > }* display: none beats visibility, so don't mix and match. From o.e.ekker at gmail.com Thu Nov 13 06:49:56 2008 From: o.e.ekker at gmail.com (Onno Ekker) Date: Thu, 13 Nov 2008 15:49:56 +0100 Subject: [Project_owners] Announcing Mercurial at Mozdev In-Reply-To: References: Message-ID: <491C3E94.90304@gmail.com> alta88[nntp] wrote: > hi doug, > > anything more on also moving downloads and website into hg? i'd like > to move over but it seems to make sense to go all or none.. I tried moving all of my website to drupal. That would make it easier to move the source to mercurial. And downloads aren't that frequently updated... Onno -------------- next part -------------- An HTML attachment was scrubbed... URL: From manish at experiencecommerce.com Thu Nov 13 08:28:18 2008 From: manish at experiencecommerce.com (manish deora) Date: Thu, 13 Nov 2008 21:58:18 +0530 Subject: [Project_owners] Catch events of main window in firefox sidebar Message-ID: Hi, How can i catch the a tag events of main window page into my firefox sidebar plugin. -- Regards, Manish Deora -------------- next part -------------- An HTML attachment was scrubbed... URL: From ocramius at gmail.com Thu Nov 13 09:54:39 2008 From: ocramius at gmail.com (Marco Pivetta) Date: Thu, 13 Nov 2008 18:54:39 +0100 Subject: [Project_owners] Catch events of main window in firefox sidebar In-Reply-To: References: Message-ID: you could get the various window objects through the tabbed browser: https://developer.mozilla.org/en/Code_snippets/Tabbed_browser 2008/11/13 manish deora > Hi, > > How can i catch the a tag events of main window page into my firefox > sidebar plugin. > > > -- > Regards, > Manish Deora > > _______________________________________________ > Project_owners mailing list > Project_owners at mozdev.org > https://www.mozdev.org/mailman/listinfo/project_owners > > -- Standard Ogame Project - StOgame http://www.stogame.net Making Ogame a better place... -------------- next part -------------- An HTML attachment was scrubbed... URL: From can at ecpcorp.net Thu Nov 13 19:15:52 2008 From: can at ecpcorp.net (can) Date: Thu, 13 Nov 2008 19:15:52 -0800 Subject: [Project_owners] problem with first time extension install (Windows) Message-ID: <00f401c94607$4d17f1a0$0210a8c0@ECPCorp.local> I am just learning about Firefox extensions, so I hope this is the appropriate list. I spent quite a bit of time searching, and this seemed like the best place to start. Please correct me if I should be posting elsewhere. I am using Windows and Firefox 3.0.3. I have managed to build an extension .xpi file which seems to install correctly "by hand." That is, if, from within Firefox, I do: File -> Open File -> the installation goes as I hope (after a warning and a Firefox restart, of course). However, I would like to be able to install "automatically," via the Registry, as documented here: https://developer.mozilla.org/en/Adding_Extensions_using_the_Windows_Registry The instructions seem very simple, but nothing I have tried has worked. I should note that I have tried putting the Registry entry under both "Mozilla\Firefox\Extensions" (as instructed on the page), and also under "Mozilla\Mozilla Firefox 3.0.3\extensions" which is the key that is created by the Firefox install. I don't know how to go about trouble shooting this. Can anyone help? Thank you, can -------------- next part -------------- An HTML attachment was scrubbed... URL: From varun21 at gmail.com Thu Nov 13 19:20:12 2008 From: varun21 at gmail.com (Shivanand Sharma / Varun) Date: Fri, 14 Nov 2008 08:50:12 +0530 Subject: [Project_owners] problem with first time extension install (Windows) In-Reply-To: <00f401c94607$4d17f1a0$0210a8c0@ECPCorp.local> References: <00f401c94607$4d17f1a0$0210a8c0@ECPCorp.local> Message-ID: <1a9fd9700811131920k46d1e549l7bd17119e76af0e9@mail.gmail.com> can you export this registry (the entries that you have created), open with notepad and paste into the email? Cheers! Shivanand Sharma Producer and Editor http://www.binaryturf.com (Web Technology & Blogging) http://www.advancedphotography.net On Fri, Nov 14, 2008 at 8:45 AM, can wrote: > I am just learning about Firefox extensions, so I hope this is the > appropriate list. I spent quite a bit of time searching, and this seemed > like the best place to start. Please correct me if I should be posting > elsewhere. > > I am using Windows and Firefox 3.0.3. > > I have managed to build an extension .xpi file which seems to install > correctly "by hand." That is, if, from within Firefox, I do: > > File -> Open File -> > > the installation goes as I hope (after a warning and a Firefox restart, of > course). > > > However, I would like to be able to install "automatically," via the > Registry, as documented here: > > > https://developer.mozilla.org/en/Adding_Extensions_using_the_Windows_Registry > > > The instructions seem very simple, but nothing I have tried has worked. I > should note that I have tried putting the Registry entry under both > "Mozilla\Firefox\Extensions" (as instructed on the page), and also under > "Mozilla\Mozilla Firefox 3.0.3\extensions" which is the key that is created > by the Firefox install. > > I don't know how to go about trouble shooting this. Can anyone help? > > Thank you, > can > > > _______________________________________________ > Project_owners mailing list > Project_owners at mozdev.org > https://www.mozdev.org/mailman/listinfo/project_owners > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From can at ecpcorp.net Thu Nov 13 19:50:17 2008 From: can at ecpcorp.net (can) Date: Thu, 13 Nov 2008 19:50:17 -0800 Subject: [Project_owners] problem with first time extension install(Windows) References: <00f401c94607$4d17f1a0$0210a8c0@ECPCorp.local> <1a9fd9700811131920k46d1e549l7bd17119e76af0e9@mail.gmail.com> Message-ID: <019f01c9460c$1bd16770$0210a8c0@ECPCorp.local> Thank you for the blindingly fast reply! Here are the two registry branches: ------------ [HKEY_LOCAL_MACHINE\SOFTWARE\Mozilla\Firefox] [HKEY_LOCAL_MACHINE\SOFTWARE\Mozilla\Firefox\Extensions] "{e773addc-9ee8-4e6f-bcfe-d23c401a22e2}"="c:\\xpi\\soodo.xpi" ===== [HKEY_LOCAL_MACHINE\SOFTWARE\Mozilla\Mozilla Firefox 3.0.3] "GeckoVer"="1.9.0.3" [HKEY_LOCAL_MACHINE\SOFTWARE\Mozilla\Mozilla Firefox 3.0.3\bin] "PathToExe"="C:\\Program Files\\Mozilla Firefox\\firefox.exe" [HKEY_LOCAL_MACHINE\SOFTWARE\Mozilla\Mozilla Firefox 3.0.3\extensions] "Components"="C:\\Program Files\\Mozilla Firefox\\components" "Plugins"="C:\\Program Files\\Mozilla Firefox\\plugins" "{e773addc-9ee8-4e6f-bcfe-d23c401a22e2}"="c:\\xpi\\soodo.xpi" -------------------------------------- The first is the one I added to conform with the instructions I read on the mozilla.org page I cited. The second is the one I tried after the first one did not work. Also, in these entries, the id is in GUID format (see https://developer.mozilla.org/en/Install_Manifests#id ) I tried the name at org format first, and resorted to the GUID format only when that did not work. I get the feeling I must be doing something really stupid, so please let me apologize for that in advance. :) can ----- Original Message ----- From: Shivanand Sharma / Varun To: Mozdev Project Owners List Sent: Thursday, 13 November, 2008 19:20 Subject: Re: [Project_owners] problem with first time extension install(Windows) can you export this registry (the entries that you have created), open with notepad and paste into the email? Cheers! Shivanand Sharma Producer and Editor http://www.binaryturf.com (Web Technology & Blogging) http://www.advancedphotography.net On Fri, Nov 14, 2008 at 8:45 AM, can wrote: I am just learning about Firefox extensions, so I hope this is the appropriate list. I spent quite a bit of time searching, and this seemed like the best place to start. Please correct me if I should be posting elsewhere. I am using Windows and Firefox 3.0.3. I have managed to build an extension .xpi file which seems to install correctly "by hand." That is, if, from within Firefox, I do: File -> Open File -> the installation goes as I hope (after a warning and a Firefox restart, of course). However, I would like to be able to install "automatically," via the Registry, as documented here: https://developer.mozilla.org/en/Adding_Extensions_using_the_Windows_Registry The instructions seem very simple, but nothing I have tried has worked. I should note that I have tried putting the Registry entry under both "Mozilla\Firefox\Extensions" (as instructed on the page), and also under "Mozilla\Mozilla Firefox 3.0.3\extensions" which is the key that is created by the Firefox install. I don't know how to go about trouble shooting this. Can anyone help? Thank you, can _______________________________________________ Project_owners mailing list Project_owners at mozdev.org https://www.mozdev.org/mailman/listinfo/project_owners ------------------------------------------------------------------------------ _______________________________________________ Project_owners mailing list Project_owners at mozdev.org https://www.mozdev.org/mailman/listinfo/project_owners -------------- next part -------------- An HTML attachment was scrubbed... URL: From varun21 at gmail.com Thu Nov 13 20:14:24 2008 From: varun21 at gmail.com (Shivanand Sharma / Varun) Date: Fri, 14 Nov 2008 09:44:24 +0530 Subject: [Project_owners] problem with first time extension install(Windows) In-Reply-To: <019f01c9460c$1bd16770$0210a8c0@ECPCorp.local> References: <00f401c94607$4d17f1a0$0210a8c0@ECPCorp.local> <1a9fd9700811131920k46d1e549l7bd17119e76af0e9@mail.gmail.com> <019f01c9460c$1bd16770$0210a8c0@ECPCorp.local> Message-ID: <1a9fd9700811132014i4b0bd605v85201236785a36b4@mail.gmail.com> Okey I got it. The xpi won't do (even I missed that part in the article). You'll have to point the registry value to the directory where you have placed the unpacked xpi. I used the following registry to try installing colorfultabs. I had to extract the colorfultabs xpi into c:\colorfultabs. Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Mozilla\Firefox\Extensions] "{0545b830-f0aa-4d7e-8820-50a4629a56fe}"="C:\\colorfultabs" Cheers! Shivanand Sharma Producer and Editor http://www.binaryturf.com (Web Technology & Blogging) http://www.advancedphotography.net On Fri, Nov 14, 2008 at 9:20 AM, can wrote: > Thank you for the blindingly fast reply! > > Here are the two registry branches: > > ------------ > > [HKEY_LOCAL_MACHINE\SOFTWARE\Mozilla\Firefox] > > [HKEY_LOCAL_MACHINE\SOFTWARE\Mozilla\Firefox\Extensions] > "{e773addc-9ee8-4e6f-bcfe-d23c401a22e2}"="c:\\xpi\\soodo.xpi" > > > ===== > > > [HKEY_LOCAL_MACHINE\SOFTWARE\Mozilla\Mozilla Firefox 3.0.3] > "GeckoVer"="1.9.0.3" > > [HKEY_LOCAL_MACHINE\SOFTWARE\Mozilla\Mozilla Firefox 3.0.3\bin] > "PathToExe"="C:\\Program Files\\Mozilla Firefox\\firefox.exe" > > [HKEY_LOCAL_MACHINE\SOFTWARE\Mozilla\Mozilla Firefox 3.0.3\extensions] > "Components"="C:\\Program Files\\Mozilla Firefox\\components" > "Plugins"="C:\\Program Files\\Mozilla Firefox\\plugins" > "{e773addc-9ee8-4e6f-bcfe-d23c401a22e2}"="c:\\xpi\\soodo.xpi" > > -------------------------------------- > > > The first is the one I added to conform with the instructions I read on the > mozilla.org page I cited. The second is the one I tried after the first > one did not work. > > > Also, in these entries, the id is in GUID format (see > https://developer.mozilla.org/en/Install_Manifests#id ) I tried the > name at org format first, and resorted to the GUID format only when that did > not work. > > I get the feeling I must be doing something really stupid, so please let me > apologize for that in advance. :) > > can > > > ----- Original Message ----- > *From:* Shivanand Sharma / Varun > *To:* Mozdev Project Owners List > *Sent:* Thursday, 13 November, 2008 19:20 > *Subject:* Re: [Project_owners] problem with first time extension > install(Windows) > > can you export this registry (the entries that you have created), open with > notepad and paste into the email? > > Cheers! > Shivanand Sharma > Producer and Editor > http://www.binaryturf.com (Web Technology & Blogging) > http://www.advancedphotography.net > > > On Fri, Nov 14, 2008 at 8:45 AM, can wrote: > >> I am just learning about Firefox extensions, so I hope this is the >> appropriate list. I spent quite a bit of time searching, and this seemed >> like the best place to start. Please correct me if I should be posting >> elsewhere. >> >> I am using Windows and Firefox 3.0.3. >> >> I have managed to build an extension .xpi file which seems to install >> correctly "by hand." That is, if, from within Firefox, I do: >> >> File -> Open File -> >> >> the installation goes as I hope (after a warning and a Firefox restart, of >> course). >> >> >> However, I would like to be able to install "automatically," via the >> Registry, as documented here: >> >> >> https://developer.mozilla.org/en/Adding_Extensions_using_the_Windows_Registry >> >> >> The instructions seem very simple, but nothing I have tried has worked. I >> should note that I have tried putting the Registry entry under both >> "Mozilla\Firefox\Extensions" (as instructed on the page), and also under >> "Mozilla\Mozilla Firefox 3.0.3\extensions" which is the key that is created >> by the Firefox install. >> >> I don't know how to go about trouble shooting this. Can anyone help? >> >> Thank you, >> can >> >> >> _______________________________________________ >> Project_owners mailing list >> Project_owners at mozdev.org >> https://www.mozdev.org/mailman/listinfo/project_owners >> >> > ------------------------------ > > _______________________________________________ > Project_owners mailing list > Project_owners at mozdev.org > https://www.mozdev.org/mailman/listinfo/project_owners > > > _______________________________________________ > Project_owners mailing list > Project_owners at mozdev.org > https://www.mozdev.org/mailman/listinfo/project_owners > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From can at ecpcorp.net Thu Nov 13 22:28:22 2008 From: can at ecpcorp.net (can) Date: Thu, 13 Nov 2008 22:28:22 -0800 Subject: [Project_owners] problem with first time extensioninstall(Windows) References: <00f401c94607$4d17f1a0$0210a8c0@ECPCorp.local><1a9fd9700811131920k46d1e549l7bd17119e76af0e9@mail.gmail.com><019f01c9460c$1bd16770$0210a8c0@ECPCorp.local> <1a9fd9700811132014i4b0bd605v85201236785a36b4@mail.gmail.com> Message-ID: <001c01c94622$319b6630$0210a8c0@ECPCorp.local> Thank you so much for the help. I haven't tried it out yet, but I am sure you are right. As you point out, the very page I cited explains this. (However, it still seems odd to me that Firefox won't read in the .xpi in this situation - it does so when using File -> Open... So obviously the implementation is already built in.) I feel quite ashamed for having overlooked this detail, and apologize for taking your time. I usually read more carefully than this. I can only offer that my oversight is probably caused by lack of sleep and a tight deadline. I hope I get the chance to return the favor some day. can ----- Original Message ----- From: Shivanand Sharma / Varun To: Mozdev Project Owners List Sent: Thursday, 13 November, 2008 20:14 Subject: Re: [Project_owners] problem with first time extensioninstall(Windows) Okey I got it. The xpi won't do (even I missed that part in the article). You'll have to point the registry value to the directory where you have placed the unpacked xpi. I used the following registry to try installing colorfultabs. I had to extract the colorfultabs xpi into c:\colorfultabs. Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Mozilla\Firefox\Extensions] "{0545b830-f0aa-4d7e-8820-50a4629a56fe}"="C:\\colorfultabs" Cheers! Shivanand Sharma Producer and Editor http://www.binaryturf.com (Web Technology & Blogging) http://www.advancedphotography.net On Fri, Nov 14, 2008 at 9:20 AM, can wrote: Thank you for the blindingly fast reply! Here are the two registry branches: ------------ [HKEY_LOCAL_MACHINE\SOFTWARE\Mozilla\Firefox] [HKEY_LOCAL_MACHINE\SOFTWARE\Mozilla\Firefox\Extensions] "{e773addc-9ee8-4e6f-bcfe-d23c401a22e2}"="c:\\xpi\\soodo.xpi" ===== [HKEY_LOCAL_MACHINE\SOFTWARE\Mozilla\Mozilla Firefox 3.0.3] "GeckoVer"="1.9.0.3" [HKEY_LOCAL_MACHINE\SOFTWARE\Mozilla\Mozilla Firefox 3.0.3\bin] "PathToExe"="C:\\Program Files\\Mozilla Firefox\\firefox.exe" [HKEY_LOCAL_MACHINE\SOFTWARE\Mozilla\Mozilla Firefox 3.0.3\extensions] "Components"="C:\\Program Files\\Mozilla Firefox\\components" "Plugins"="C:\\Program Files\\Mozilla Firefox\\plugins" "{e773addc-9ee8-4e6f-bcfe-d23c401a22e2}"="c:\\xpi\\soodo.xpi" -------------------------------------- The first is the one I added to conform with the instructions I read on the mozilla.org page I cited. The second is the one I tried after the first one did not work. Also, in these entries, the id is in GUID format (see https://developer.mozilla.org/en/Install_Manifests#id ) I tried the name at org format first, and resorted to the GUID format only when that did not work. I get the feeling I must be doing something really stupid, so please let me apologize for that in advance. :) can ----- Original Message ----- From: Shivanand Sharma / Varun To: Mozdev Project Owners List Sent: Thursday, 13 November, 2008 19:20 Subject: Re: [Project_owners] problem with first time extension install(Windows) can you export this registry (the entries that you have created), open with notepad and paste into the email? Cheers! Shivanand Sharma Producer and Editor http://www.binaryturf.com (Web Technology & Blogging) http://www.advancedphotography.net On Fri, Nov 14, 2008 at 8:45 AM, can wrote: I am just learning about Firefox extensions, so I hope this is the appropriate list. I spent quite a bit of time searching, and this seemed like the best place to start. Please correct me if I should be posting elsewhere. I am using Windows and Firefox 3.0.3. I have managed to build an extension .xpi file which seems to install correctly "by hand." That is, if, from within Firefox, I do: File -> Open File -> the installation goes as I hope (after a warning and a Firefox restart, of course). However, I would like to be able to install "automatically," via the Registry, as documented here: https://developer.mozilla.org/en/Adding_Extensions_using_the_Windows_Registry The instructions seem very simple, but nothing I have tried has worked. I should note that I have tried putting the Registry entry under both "Mozilla\Firefox\Extensions" (as instructed on the page), and also under "Mozilla\Mozilla Firefox 3.0.3\extensions" which is the key that is created by the Firefox install. I don't know how to go about trouble shooting this. Can anyone help? Thank you, can _______________________________________________ Project_owners mailing list Project_owners at mozdev.org https://www.mozdev.org/mailman/listinfo/project_owners -------------------------------------------------------------------------- _______________________________________________ Project_owners mailing list Project_owners at mozdev.org https://www.mozdev.org/mailman/listinfo/project_owners _______________________________________________ Project_owners mailing list Project_owners at mozdev.org https://www.mozdev.org/mailman/listinfo/project_owners ------------------------------------------------------------------------------ _______________________________________________ Project_owners mailing list Project_owners at mozdev.org https://www.mozdev.org/mailman/listinfo/project_owners -------------- next part -------------- An HTML attachment was scrubbed... URL: From neil at parkwaycc.co.uk Fri Nov 14 02:25:02 2008 From: neil at parkwaycc.co.uk (Neil) Date: Fri, 14 Nov 2008 10:25:02 +0000 Subject: [Project_owners] problem with first time extensioninstall(Windows) In-Reply-To: References: <00f401c94607$4d17f1a0$0210a8c0@ECPCorp.local><1a9fd9700811131920k46d1e549l7bd17119e76af0e9@mail.gmail.com><019f01c9460c$1bd16770$0210a8c0@ECPCorp.local> <1a9fd9700811132014i4b0bd605v85201236785a36b4@mail.gmail.com> Message-ID: can wrote: > Thank you so much for the help. I haven't tried it out yet, but I am > sure you are right. As you point out, the very page I cited explains > this. (However, it still seems odd to me that Firefox won't read in > the .xpi in this situation - it does so when using File -> Open... Yes, but once you agree to the install it then goes and unpacks it into your extensions folder so that it can actually use it. From can at ecpcorp.net Fri Nov 14 10:22:12 2008 From: can at ecpcorp.net (can) Date: Fri, 14 Nov 2008 10:22:12 -0800 Subject: [Project_owners] problem with first time extensioninstall(Windows) Message-ID: <00b201c94685$ea7ff9a0$0210a8c0@ECPCorp.local> Neil wrote: > Yes, but once you agree to the install it then goes and unpacks it > into your extensions folder so that it can actually use it. Please forgive me if I'm missing something, but I don't see the point you are making. What I had in mind was that Firefox could do this very same thing when it sees a new .xpi to load in the registry. Perhaps the Mozilla people see there is some security worry with this approach, but I don't see it. They could add the same warning that is there in the File->Open interface. (Though I'm not certain this is absolutely necessary since the Windows Registry can't get modified without user approval anyway.) Besides, this is how Java handles .jar files. In fact, since my last response to this thread, I realized that the reason I ran into confusion in the first place probably has to do with expectations set from using Java. (This is no excuse for misreading instructions of course, just an observation.) Maybe the root problem here is that I don't fully understand the Mozilla vision of the install process. So if don't mind, I'd like to take a step back and ask an even more basic question. What is the "best" way to distribute and install Firefox extension from a third-party server? I looked around for this, and the best instructions I found were on that "Install from Registry" page I cited. Can you point me to a better source? I know that it is possible to distribute a third-party extension through the Mozilla site (Tools -> Add Ons...) Maybe some day I'll want to do this. But for now, (a) I don't know how one goes about putting one's extension up on the Mozilla download site, and (b) even if I did, I probably would still want to be able to distribute the extension from a third-party server. I also have read that one can distribute an installer that copies files to Firefox extensions directory. In principle, this is clean and straightforward, but one has to worry about getting registry strings right for cases where Firefox was not installed to the default path. It seems more desirable to use an install mechanism that is managed entirely by Firefox itself. I actually have a guess about this now that I know about the File->Open... install method. (I am going to give it a try unless someone on this list tells me it won't work.) Maybe all I have to do is get the mime type right on the server and then the extension will be installed if the user selects "Open" during the download. Please remember I am new to all this. I get the feeling that there is some overview document that I have failed to find. If anyone knows of such a thing, please feel free to point me to it. Thanks, can From silfreed at silfreed.net Fri Nov 14 11:11:04 2008 From: silfreed at silfreed.net (Douglas E. Warner) Date: Fri, 14 Nov 2008 14:11:04 -0500 Subject: [Project_owners] problem with first time extensioninstall(Windows) In-Reply-To: <00b201c94685$ea7ff9a0$0210a8c0@ECPCorp.local> References: <00b201c94685$ea7ff9a0$0210a8c0@ECPCorp.local> Message-ID: <491DCD48.5060005@silfreed.net> can wrote: > Please remember I am new to all this. I get the feeling that there is > some overview document that I have failed to find. If anyone knows of > such a thing, please feel free to point me to it. If you're packaging your extension as a .xpi file, you can use InstallTrigger [1]. If you're putting your .xpi extensions up on Mozdev you can make use of our installation page that already has InstallTrigger setup for you. [2] -Doug [1] https://developer.mozilla.org/En/Installing_Extensions_and_Themes_From_Web_Pages [2] http://www.mozdev.org/drupal/wiki/MozdevDownloadReleases -- Douglas E. Warner Site Developer Mozdev.org http://www.mozdev.org -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: OpenPGP digital signature URL: From massey at stlouis-shopper.com Fri Nov 14 11:47:33 2008 From: massey at stlouis-shopper.com (massey) Date: Fri, 14 Nov 2008 13:47:33 -0600 Subject: [Project_owners] problem with first time extensioninstall(Windows) In-Reply-To: <00b201c94685$ea7ff9a0$0210a8c0@ECPCorp.local> References: <00b201c94685$ea7ff9a0$0210a8c0@ECPCorp.local> Message-ID: <491DD5D5.7020009@stlouis-shopper.com> I think maybe the confusion here is how an xpi is installed by firefox. If so just an overview: - When firefox installs an xpi(extension) it gets unpaked into the user profile ./extensions directory, on windows this is something like c:\Documents and Settings\Admin|\Application Data\Mozilla\Firefox\Profiles\XXXNNNXXN.default\extensions\ExtensionName. Firefox does not use the windows registry to find/use extensions in a normal scenario as far as I know. - For firefox you need to install an xpi from a https server or the xpi must be signed otherwise the install will fail. These things supposedly make extensions safer to install. - On firefox startup the users extensions directory is scanned for extensions and those found get registered/used if the extension is compatible. - The xpinstall docs are hard to follow/find and put together to get a good sense of how it all works. It just takes a lot of poking around. Hope that helps can wrote: > Neil wrote: > >> Yes, but once you agree to the install it then goes and unpacks it >> into your extensions folder so that it can actually use it. > > > Please forgive me if I'm missing something, but I don't see the point > you are making. What I had in mind was that Firefox could do this > very same thing when it sees a new .xpi to load in the registry. > > Perhaps the Mozilla people see there is some security worry with this > approach, but I don't see it. They could add the same warning that is > there in the File->Open interface. (Though I'm not certain this is > absolutely necessary since the Windows Registry can't get modified > without user approval anyway.) Besides, this is how Java handles .jar > files. In fact, since my last response to this thread, I realized > that the reason I ran into confusion in the first place probably has > to do with expectations set from using Java. (This is no excuse for > misreading instructions of course, just an observation.) > > > Maybe the root problem here is that I don't fully understand the > Mozilla vision of the install process. So if don't mind, I'd like to > take a step back and ask an even more basic question. > > > > What is the "best" way to distribute and install Firefox extension > from a third-party server? I looked around for this, and the best > instructions I found were on that "Install from Registry" page I > cited. Can you point me to a better source? > > > > I know that it is possible to distribute a third-party extension > through the Mozilla site (Tools -> Add Ons...) Maybe some day I'll > want to do this. But for now, (a) I don't know how one goes about > putting one's extension up on > the Mozilla download site, and (b) even if I did, I probably would > still want to be able to distribute the extension from a > third-party server. > > I also have read that one can distribute an installer that copies > files to Firefox extensions directory. In principle, this is > clean and straightforward, but one has to worry about getting registry > strings right for cases where Firefox was not installed to the default > path. It seems more desirable to use an install mechanism that is > managed entirely by Firefox itself. > > > I actually have a guess about this now that I know about the > File->Open... install method. (I am going to give it a try unless > someone on this list tells me it won't work.) Maybe all I have to do > is get the mime type right on the server and then the extension will > be installed if the user selects "Open" during the download. > > > Please remember I am new to all this. I get the feeling that there is > some overview document that I have failed to find. If anyone knows of > such a thing, please feel free to point me to it. > > Thanks, > can > > _______________________________________________ > Project_owners mailing list > Project_owners at mozdev.org > https://www.mozdev.org/mailman/listinfo/project_owners > From varun21 at gmail.com Fri Nov 14 15:36:46 2008 From: varun21 at gmail.com (Shivanand Sharma / Varun) Date: Sat, 15 Nov 2008 05:06:46 +0530 Subject: [Project_owners] problem with first time extensioninstall(Windows) In-Reply-To: <491DD5D5.7020009@stlouis-shopper.com> References: <00b201c94685$ea7ff9a0$0210a8c0@ECPCorp.local> <491DD5D5.7020009@stlouis-shopper.com> Message-ID: <1a9fd9700811141536n4b6ae531uaa9a1255a7ba2fcc@mail.gmail.com> If you want to install through the registry (take the example of Google Gears), instead of packing as an xpi, make it a self extracting executable or a self installing exe which extracts itself, modifies the registry and asks to restart Firefox. Cheers! Shivanand Sharma Producer and Editor http://www.binaryturf.com (Web Technology & Blogging) http://www.advancedphotography.net On Sat, Nov 15, 2008 at 1:17 AM, massey wrote: > I think maybe the confusion here is how an xpi is installed by firefox. If > so just an overview: > - When firefox installs an xpi(extension) it gets unpaked into the user > profile ./extensions directory, on windows this is something like > c:\Documents and Settings\Admin|\Application > Data\Mozilla\Firefox\Profiles\XXXNNNXXN.default\extensions\ExtensionName. > Firefox does not use the windows registry to find/use extensions in a normal > scenario as far as I know. > - For firefox you need to install an xpi from a https server or the xpi > must be signed otherwise the install will fail. These things supposedly make > extensions safer to install. > - On firefox startup the users extensions directory is scanned for > extensions and those found get registered/used if the extension is > compatible. > - The xpinstall docs are hard to follow/find and put together to get a good > sense of how it all works. It just takes a lot of poking around. > > Hope that helps > > > > can wrote: > > Neil wrote: >> >> Yes, but once you agree to the install it then goes and unpacks it >>> into your extensions folder so that it can actually use it. >>> >> >> >> Please forgive me if I'm missing something, but I don't see the point you >> are making. What I had in mind was that Firefox could do this very same >> thing when it sees a new .xpi to load in the registry. >> >> Perhaps the Mozilla people see there is some security worry with this >> approach, but I don't see it. They could add the same warning that is there >> in the File->Open interface. (Though I'm not certain this is absolutely >> necessary since the Windows Registry can't get modified without user >> approval anyway.) Besides, this is how Java handles .jar files. In fact, >> since my last response to this thread, I realized that the reason I ran into >> confusion in the first place probably has to do with expectations set from >> using Java. (This is no excuse for misreading instructions of course, just >> an observation.) >> >> >> Maybe the root problem here is that I don't fully understand the Mozilla >> vision of the install process. So if don't mind, I'd like to take a step >> back and ask an even more basic question. >> >> >> >> What is the "best" way to distribute and install Firefox extension from a >> third-party server? I looked around for this, and the best instructions I >> found were on that "Install from Registry" page I cited. Can you point me >> to a better source? >> >> >> >> I know that it is possible to distribute a third-party extension through >> the Mozilla site (Tools -> Add Ons...) Maybe some day I'll want to do this. >> But for now, (a) I don't know how one goes about putting one's extension up >> on >> the Mozilla download site, and (b) even if I did, I probably would still >> want to be able to distribute the extension from a >> third-party server. >> >> I also have read that one can distribute an installer that copies files to >> Firefox extensions directory. In principle, this is >> clean and straightforward, but one has to worry about getting registry >> strings right for cases where Firefox was not installed to the default path. >> It seems more desirable to use an install mechanism that is managed entirely >> by Firefox itself. >> >> >> I actually have a guess about this now that I know about the File->Open... >> install method. (I am going to give it a try unless someone on this list >> tells me it won't work.) Maybe all I have to do is get the mime type right >> on the server and then the extension will be installed if the user selects >> "Open" during the download. >> >> >> Please remember I am new to all this. I get the feeling that there is >> some overview document that I have failed to find. If anyone knows of such >> a thing, please feel free to point me to it. >> >> Thanks, >> can >> >> _______________________________________________ >> Project_owners mailing list >> Project_owners at mozdev.org >> https://www.mozdev.org/mailman/listinfo/project_owners >> >> _______________________________________________ > Project_owners mailing list > Project_owners at mozdev.org > https://www.mozdev.org/mailman/listinfo/project_owners > -------------- next part -------------- An HTML attachment was scrubbed... URL: From manish at experiencecommerce.com Sat Nov 15 05:31:47 2008 From: manish at experiencecommerce.com (manish deora) Date: Sat, 15 Nov 2008 19:01:47 +0530 Subject: [Project_owners] Catch events of main window in firefox sidebar In-Reply-To: References: Message-ID: Hi, Thanks a lot for the reply, It was exactly what i was looking for,i have 1 more question how can i make my sidebar always shown by default when the browser window opens... Expection a reply soon :) On Thu, Nov 13, 2008 at 11:24 PM, Marco Pivetta wrote: > you could get the various window objects through the tabbed browser: > https://developer.mozilla.org/en/Code_snippets/Tabbed_browser > > 2008/11/13 manish deora > >> Hi, >> >> How can i catch the a tag events of main window page into my firefox >> sidebar plugin. >> >> -- >> Regards, >> Manish Deora >> >> _______________________________________________ >> Project_owners mailing list >> Project_owners at mozdev.org >> https://www.mozdev.org/mailman/listinfo/project_owners >> >> > > > -- > Standard Ogame Project - StOgame > http://www.stogame.net > Making Ogame a better place... > > _______________________________________________ > Project_owners mailing list > Project_owners at mozdev.org > https://www.mozdev.org/mailman/listinfo/project_owners > > -- Regards, Manish Deora -------------- next part -------------- An HTML attachment was scrubbed... URL: From o.e.ekker at gmail.com Sat Nov 15 05:38:51 2008 From: o.e.ekker at gmail.com (Onno Ekker) Date: Sat, 15 Nov 2008 14:38:51 +0100 Subject: [Project_owners] RSS Feed on mozdev homepage Message-ID: <491ED0EB.9000208@gmail.com> Hi, Next to the "New Projects" and "Last Updated" feeds, it would be nice, if project owners could feed their website/drupal/blog updates to the mozdev homepage or a subpage, comparable to planet.mozilla.org. For this purpose I entered enhancement request 20243: https://www.mozdev.org/bugs/show_bug.cgi?id=20243 If you also think this is a good idea to extend current website possibilities, or you have other ideas about it, please comment here or add your thoughts to bug . Thanks, Onno From brian at mozdev.org Sat Nov 15 07:46:43 2008 From: brian at mozdev.org (Brian King) Date: Sat, 15 Nov 2008 16:46:43 +0100 Subject: [Project_owners] Catch events of main window in firefox sidebar In-Reply-To: References: Message-ID: <491EEEE3.6070409@mozdev.org> manish deora wrote: > ... i have 1 more question how can i > make my sidebar always shown by default when the browser window opens... https://developer.mozilla.org/en/Code_snippets/Sidebar I would strongly discourage this though, it is considered rude. The user expects to see the same sidebar content open as when they shutdown Firefox. Overwriting that creates a bad user experience. - Brian From manish at experiencecommerce.com Sat Nov 15 10:55:37 2008 From: manish at experiencecommerce.com (manish deora) Date: Sun, 16 Nov 2008 00:25:37 +0530 Subject: [Project_owners] Catch events of main window in firefox sidebar In-Reply-To: References: <491EEEE3.6070409@mozdev.org> Message-ID: Thanks a lot > > i will keep it in mind > Regards, Manish Deora -------------- next part -------------- An HTML attachment was scrubbed... URL: From philip at aleytys.pc.my Sat Nov 15 20:07:25 2008 From: philip at aleytys.pc.my (Philip Chee) Date: Sun, 16 Nov 2008 12:07:25 +0800 Subject: [Project_owners] RSS Feed on mozdev homepage In-Reply-To: References: Message-ID: On Sat, 15 Nov 2008 14:38:51 +0100, Onno Ekker wrote: > Hi, > > Next to the "New Projects" and "Last Updated" feeds, it would be nice, > if project owners could feed their website/drupal/blog updates to the > mozdev homepage or a subpage, comparable to planet.mozilla.org. > For this purpose I entered enhancement request 20243: > https://www.mozdev.org/bugs/show_bug.cgi?id=20243 > > If you also think this is a good idea to extend current website > possibilities, or you have other ideas about it, please comment here or > add your thoughts to bug > . I've suggested as the obvious location. Also I came across this recently: Phil -- Philip Chee , http://flashblock.mozdev.org/ http://xsidebar.mozdev.org Guard us from the she-wolf and the wolf, and guard us from the thief, oh Night, and so be good for us to pass. [ ]Rainy days and automatic weapons get me down.... * TagZilla 0.066.6 From silver.surfer444 at gmail.com Sat Nov 15 22:45:40 2008 From: silver.surfer444 at gmail.com (Silver Surfer) Date: Sun, 16 Nov 2008 12:15:40 +0530 Subject: [Project_owners] gURLBar.value Message-ID: Hi Friends, Can you please tell me what are the Firefox versions that supports the "gURLBar.value" property? Is there any problem with it when working on UBUNTU? thanks & regards, -- ~Silver Surfer~ Surfing through time & space http://risingofsilversurfer.blogspot.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From frisco82 at gmail.com Sun Nov 16 04:50:47 2008 From: frisco82 at gmail.com (Ramiro Aparicio) Date: Sun, 16 Nov 2008 13:50:47 +0100 Subject: [Project_owners] CVS Branching Message-ID: <607c3f4d0811160450x22d64fc4k14947f48f1accbde@mail.gmail.com> Hi, I need to start with a big overhaul of my extension and I wanted to try the branhing features of CVS, I know they are not great but probably I will not use that branch anymore, It is just to have an easy way to see the last version. But when I try to branch my src directory I get the following errors: The server reported an error while performing the "cvs tag" command. foxgame: cvs tag: User 'frisco82' cannot access src/chrome foxgame: cvs tag: User 'frisco82' cannot access src/chrome/content foxgame: cvs tag: User 'frisco82' cannot access src/chrome/locale foxgame: cvs tag: User 'frisco82' cannot access src/chrome/skin foxgame: cvs tag: User 'frisco82' cannot access src/defaults foxgame: cvs [tag aborted]: correct the above errors first! Please note that I am the main developer I have added files without problem until today in these directories. I hope someone can help with this, or tell me if I should forget about branching on Mozdev. Best regards Ramiro Aparicio --------------------------------------------------------------------------------- Desarrollador de FoxGame http://foxgame.mozdev.org Blogero aficionado en http://www.habitaquo.net -------------- next part -------------- An HTML attachment was scrubbed... URL: From can at ecpcorp.net Sun Nov 16 17:44:07 2008 From: can at ecpcorp.net (can) Date: Sun, 16 Nov 2008 17:44:07 -0800 Subject: [Project_owners] extension stops working under Firefox 3.0.4 -- please help Message-ID: <00b401c94855$fb037e60$0210a8c0@ECPCorp.local> Many thanks again to all the nice people who helped me with my first uninformed question. I think this one is a little more substantive. I have written my first "Hello World" Firefox extension. I had some confusion about installing it, but I think I got that straightened out now - BUT ONLY under Firefox 3.0.3. Yesterday, Firefox updated itself without giving me any chance to stop it (at least as far as I could tell). I now have version 3.0.4. I didn't think that would be a big deal until I got back to trying to work on my extension. Now, the exact same extension that works under 3.0.3 will not install under 3.0.4. I have tried two install methods: (a) copy my extension directory to the Firefox profile/extensions directory (where Firefox installs), (b) set the appropriate Windows Registry key to point to a directory where I have unpacked the contents of my .xpi file. In case (a), Firefox starts and I see *nothing* new in the Extensions window. In case (b), Firefox starts, and I see an entry for my extension, but it is whited out and there is a message that says, "This extension is not compatible with Firefox 3.0.4." I have a separate computer that (thank God), is still running 3.0.3, and everything still seems to work there. I tried searching for posts from other people who might have encountered this problem and have come up with nothing. Can anyone help? As a related question, hopefully much easier, can someone please tell me how to stop Firefox from updating its version WITHOUT my permission? I would expect at least an OK/Cancel box. Thanks, can From varun21 at gmail.com Sun Nov 16 18:03:35 2008 From: varun21 at gmail.com (Shivanand Sharma / Varun) Date: Mon, 17 Nov 2008 07:33:35 +0530 Subject: [Project_owners] extension stops working under Firefox 3.0.4 -- please help In-Reply-To: <00b401c94855$fb037e60$0210a8c0@ECPCorp.local> References: <00b401c94855$fb037e60$0210a8c0@ECPCorp.local> Message-ID: <1a9fd9700811161803pc449c72pcbcdfde1c6d496a2@mail.gmail.com> you'll have an install.rdf file in your extensio xpi. Search for the string "maxversion" without quotes. this is the string that decides the compatibility of your addon with the version of firefox. If you are just testing you can bump it up to 300. But a valid version can be pulled from https://addons.mozilla.org/en-US/firefox/pages/appversions Cheers! Shivanand Sharma Producer and Editor http://www.binaryturf.com (Web Technology & Blogging) http://www.advancedphotography.net On Mon, Nov 17, 2008 at 7:14 AM, can wrote: > Many thanks again to all the nice people who helped me with my first > uninformed question. I think this one is a little more substantive. > > I have written my first "Hello World" Firefox extension. I had some > confusion about installing it, but I think I got that straightened out now - > BUT ONLY under Firefox 3.0.3. Yesterday, Firefox updated itself without > giving me any chance to stop it (at least as far as I could tell). I now > have version 3.0.4. I didn't think that would be a big deal until I got > back to trying to work on my extension. Now, the exact same extension that > works under 3.0.3 will not install under 3.0.4. > > I have tried two install methods: (a) copy my extension directory to the > Firefox profile/extensions directory (where Firefox installs), (b) set the > appropriate Windows Registry key to point to a directory where I have > unpacked the contents of my .xpi file. In case (a), Firefox starts and I > see *nothing* new in the Extensions window. In case (b), Firefox starts, > and I see an entry for my extension, but it is whited out and there is a > message that says, "This extension is not compatible with Firefox 3.0.4." > > I have a separate computer that (thank God), is still running 3.0.3, and > everything still seems to work there. I tried searching for posts from > other people who might have encountered this problem and have come up with > nothing. Can anyone help? > > > As a related question, hopefully much easier, can someone please tell me > how to stop Firefox from updating its version WITHOUT my permission? I > would expect at least an OK/Cancel box. > > > Thanks, > can > > _______________________________________________ > Project_owners mailing list > Project_owners at mozdev.org > https://www.mozdev.org/mailman/listinfo/project_owners > -------------- next part -------------- An HTML attachment was scrubbed... URL: From srazzano at gmail.com Sun Nov 16 18:13:20 2008 From: srazzano at gmail.com (Andrew Razzano) Date: Sun, 16 Nov 2008 20:13:20 -0600 Subject: [Project_owners] extension stops working under Firefox 3.0.4 -- please help In-Reply-To: <00b401c94855$fb037e60$0210a8c0@ECPCorp.local> References: <00b401c94855$fb037e60$0210a8c0@ECPCorp.local> Message-ID: <1e0feff10811161813r24f90569nf7c6fa2bbc3d52f8@mail.gmail.com> On Sun, Nov 16, 2008 at 7:44 PM, can wrote: > Many thanks again to all the nice people who helped me with my first > uninformed question. I think this one is a little more substantive. > > I have written my first "Hello World" Firefox extension. I had some > confusion about installing it, but I think I got that straightened out now - > BUT ONLY under Firefox 3.0.3. Yesterday, Firefox updated itself without > giving me any chance to stop it (at least as far as I could tell). I now > have version 3.0.4. I didn't think that would be a big deal until I got > back to trying to work on my extension. Now, the exact same extension that > works under 3.0.3 will not install under 3.0.4. > > I have tried two install methods: (a) copy my extension directory to the > Firefox profile/extensions directory (where Firefox installs), (b) set the > appropriate Windows Registry key to point to a directory where I have > unpacked the contents of my .xpi file. In case (a), Firefox starts and I > see *nothing* new in the Extensions window. In case (b), Firefox starts, > and I see an entry for my extension, but it is whited out and there is a > message that says, "This extension is not compatible with Firefox 3.0.4." > > I have a separate computer that (thank God), is still running 3.0.3, and > everything still seems to work there. I tried searching for posts from > other people who might have encountered this problem and have come up with > nothing. Can anyone help? > > > As a related question, hopefully much easier, can someone please tell me > how to stop Firefox from updating its version WITHOUT my permission? I > would expect at least an OK/Cancel box. > > > Thanks, > can > > _______________________________________________ > Project_owners mailing list > Project_owners at mozdev.org > https://www.mozdev.org/mailman/listinfo/project_owners > In your extensions install.rdf file change maxVersion to 3.0.4 or 3.0.* under id ec8030f7-c20a-464f-9b0e-13a3a9e97384 and in your browsers tools menu go to Options... > Advanced > Update tab and check "Ask me what I want to do" -- Sonny -------------- next part -------------- An HTML attachment was scrubbed... URL: From can at ecpcorp.net Sun Nov 16 18:17:46 2008 From: can at ecpcorp.net (can) Date: Sun, 16 Nov 2008 18:17:46 -0800 Subject: [Project_owners] extension stops working under Firefox 3.0.4 -- disregard? References: <00b401c94855$fb037e60$0210a8c0@ECPCorp.local> Message-ID: <00c201c9485a$aecdcff0$0210a8c0@ECPCorp.local> I have just noticed that my other machine has already updated to 3.0.4 without my noticing. That means my problem must be something other than a Firefox version issue. Sorry for the false alarm, but I didn't know what else to attribute the problem to. I guess I still have lingering questions - but not quite the same. (1) Is there anything I can do to trouble shoot the error message? (2) I would still like to know if I can prevent Firefox from updating without my permission. Thanks again, can ----- Original Message ----- From: "can" To: "Mozdev Project Owners List" Sent: Sunday, 16 November, 2008 17:44 Subject: [Project_owners] extension stops working under Firefox 3.0.4 --please help > Many thanks again to all the nice people who helped me with my first > uninformed question. I think this one is a little more substantive. > > I have written my first "Hello World" Firefox extension. I had some > confusion about installing it, but I think I got that straightened out > now - BUT ONLY under Firefox 3.0.3. Yesterday, Firefox updated itself > without giving me any chance to stop it (at least as far as I could tell). > I now have version 3.0.4. I didn't think that would be a big deal until I > got back to trying to work on my extension. Now, the exact same extension > that works under 3.0.3 will not install under 3.0.4. > > I have tried two install methods: (a) copy my extension directory to the > Firefox profile/extensions directory (where Firefox installs), (b) set the > appropriate Windows Registry key to point to a directory where I have > unpacked the contents of my .xpi file. In case (a), Firefox starts and I > see *nothing* new in the Extensions window. In case (b), Firefox starts, > and I see an entry for my extension, but it is whited out and there is a > message that says, "This extension is not compatible with Firefox 3.0.4." > > I have a separate computer that (thank God), is still running 3.0.3, and > everything still seems to work there. I tried searching for posts from > other people who might have encountered this problem and have come up with > nothing. Can anyone help? > > > As a related question, hopefully much easier, can someone please tell me > how to stop Firefox from updating its version WITHOUT my permission? I > would expect at least an OK/Cancel box. > > > Thanks, > can > > _______________________________________________ > Project_owners mailing list > Project_owners at mozdev.org > https://www.mozdev.org/mailman/listinfo/project_owners > From can at ecpcorp.net Sun Nov 16 18:38:55 2008 From: can at ecpcorp.net (can) Date: Sun, 16 Nov 2008 18:38:55 -0800 Subject: [Project_owners] extension stops working under Firefox 3.0.4 --please help References: <00b401c94855$fb037e60$0210a8c0@ECPCorp.local> <1a9fd9700811161803pc449c72pcbcdfde1c6d496a2@mail.gmail.com> Message-ID: <011e01c9485d$a2f6a000$0210a8c0@ECPCorp.local> Several of you replied with advice about "maxVersion" in the .rdf file. Thank you, I should have mentioned that I checked this before sending my original post. I have had maxVersion="99" for more than a week now. As I said, I now have one machine where the extension installs, and one where it does not. Originally I thought there was a difference in the Firefox version, but I was wrong. They are both at 3.0.4. It would be great to know if there is a way to get something more informative than "This extension is not compatible with Firefox 3.0.4." Otherwise I am just going to wipe everything clean on the non-functioning machine and try again hoping there was some kind of pilot error the first time. I'd still like to know how I can prevent Firefox automatic updates without permission. can ----- Original Message ----- From: Shivanand Sharma / Varun To: Mozdev Project Owners List Sent: Sunday, 16 November, 2008 18:03 Subject: Re: [Project_owners] extension stops working under Firefox 3.0.4 --please help you'll have an install.rdf file in your extensio xpi. Search for the string "maxversion" without quotes. this is the string that decides the compatibility of your addon with the version of firefox. If you are just testing you can bump it up to 300. But a valid version can be pulled from https://addons.mozilla.org/en-US/firefox/pages/appversions Cheers! Shivanand Sharma Producer and Editor http://www.binaryturf.com (Web Technology & Blogging) http://www.advancedphotography.net -------------- next part -------------- An HTML attachment was scrubbed... URL: From jesper at heroes-addon.dk Sun Nov 16 18:55:20 2008 From: jesper at heroes-addon.dk (Jesper Staun Hansen) Date: Mon, 17 Nov 2008 03:55:20 +0100 Subject: [Project_owners] extension stops working under Firefox 3.0.4 --please help In-Reply-To: <011e01c9485d$a2f6a000$0210a8c0@ECPCorp.local> References: <00b401c94855$fb037e60$0210a8c0@ECPCorp.local> <1a9fd9700811161803pc449c72pcbcdfde1c6d496a2@mail.gmail.com> <011e01c9485d$a2f6a000$0210a8c0@ECPCorp.local> Message-ID: <4920DD18.2020308@heroes-addon.dk> 99 is not a valid version and will result in failure. can wrote: > Several of you replied with advice about "maxVersion" in the .rdf > file. Thank you, I should have mentioned that I checked this before > sending my original post. I have had maxVersion="99" for more than a > week now. > > As I said, I now have one machine where the extension installs, and > one where it does not. Originally I thought there was a difference in > the Firefox version, but I was wrong. They are both at 3.0.4. > > It would be great to know if there is a way to get something more > informative than "This extension is not compatible with Firefox > 3.0.4." Otherwise I am just going to wipe everything clean on the > non-functioning machine and try again hoping there was some kind of > pilot error the first time. > > I'd still like to know how I can prevent Firefox automatic updates > without permission. > > can > > ----- Original Message ----- > *From:* Shivanand Sharma / Varun > *To:* Mozdev Project Owners List > *Sent:* Sunday, 16 November, 2008 18:03 > *Subject:* Re: [Project_owners] extension stops working under > Firefox 3.0.4 --please help > > you'll have an install.rdf file in your extensio xpi. Search for > the string "maxversion" without quotes. this is the string that > decides the compatibility of your addon with the version of > firefox. If you are just testing you can bump it up to 300. But a > valid version can be pulled from > https://addons.mozilla.org/en-US/firefox/pages/appversions > > Cheers! > Shivanand Sharma > Producer and Editor > http://www.binaryturf.com (Web Technology & Blogging) > http://www.advancedphotography.net > > > ------------------------------------------------------------------------ > > _______________________________________________ > Project_owners mailing list > Project_owners at mozdev.org > https://www.mozdev.org/mailman/listinfo/project_owners > From jesper at heroes-addon.dk Sun Nov 16 18:56:07 2008 From: jesper at heroes-addon.dk (Jesper Staun Hansen) Date: Mon, 17 Nov 2008 03:56:07 +0100 Subject: [Project_owners] extension stops working under Firefox 3.0.4 -- disregard? In-Reply-To: <00c201c9485a$aecdcff0$0210a8c0@ECPCorp.local> References: <00b401c94855$fb037e60$0210a8c0@ECPCorp.local> <00c201c9485a$aecdcff0$0210a8c0@ECPCorp.local> Message-ID: <4920DD47.4000404@heroes-addon.dk> Check app.update.incompatible.mode, that is probably set on the one machine that "works" can wrote: > I have just noticed that my other machine has already updated to 3.0.4 > without my noticing. That means my problem must be something other > than a Firefox version issue. Sorry for the false alarm, but I didn't > know what else to attribute the problem to. > > I guess I still have lingering questions - but not quite the same. > > (1) Is there anything I can do to trouble shoot the error message? > > (2) I would still like to know if I can prevent Firefox from updating > without my permission. > > > Thanks again, > can > > ----- Original Message ----- From: "can" > To: "Mozdev Project Owners List" > Sent: Sunday, 16 November, 2008 17:44 > Subject: [Project_owners] extension stops working under Firefox 3.0.4 > --please help > > >> Many thanks again to all the nice people who helped me with my first >> uninformed question. I think this one is a little more substantive. >> >> I have written my first "Hello World" Firefox extension. I had some >> confusion about installing it, but I think I got that straightened >> out now - BUT ONLY under Firefox 3.0.3. Yesterday, Firefox updated >> itself without giving me any chance to stop it (at least as far as I >> could tell). I now have version 3.0.4. I didn't think that would be >> a big deal until I got back to trying to work on my extension. Now, >> the exact same extension that works under 3.0.3 will not install >> under 3.0.4. >> >> I have tried two install methods: (a) copy my extension directory to >> the Firefox profile/extensions directory (where Firefox installs), >> (b) set the appropriate Windows Registry key to point to a directory >> where I have unpacked the contents of my .xpi file. In case (a), >> Firefox starts and I see *nothing* new in the Extensions window. In >> case (b), Firefox starts, and I see an entry for my extension, but it >> is whited out and there is a message that says, "This extension is >> not compatible with Firefox 3.0.4." >> >> I have a separate computer that (thank God), is still running 3.0.3, >> and everything still seems to work there. I tried searching for >> posts from other people who might have encountered this problem and >> have come up with nothing. Can anyone help? >> >> >> As a related question, hopefully much easier, can someone please tell >> me how to stop Firefox from updating its version WITHOUT my >> permission? I would expect at least an OK/Cancel box. >> >> >> Thanks, >> can >> >> _______________________________________________ >> Project_owners mailing list >> Project_owners at mozdev.org >> https://www.mozdev.org/mailman/listinfo/project_owners >> > > _______________________________________________ > Project_owners mailing list > Project_owners at mozdev.org > https://www.mozdev.org/mailman/listinfo/project_owners > From philip at aleytys.pc.my Sun Nov 16 20:29:39 2008 From: philip at aleytys.pc.my (Philip Chee) Date: Mon, 17 Nov 2008 12:29:39 +0800 Subject: [Project_owners] extension stops working under Firefox 3.0.4 --please help In-Reply-To: References: <00b401c94855$fb037e60$0210a8c0@ECPCorp.local> <1a9fd9700811161803pc449c72pcbcdfde1c6d496a2@mail.gmail.com> <011e01c9485d$a2f6a000$0210a8c0@ECPCorp.local> Message-ID: On Mon, 17 Nov 2008 03:55:20 +0100, Jesper Staun Hansen wrote: > 99 is not a valid version and will result in failure. Why is "99" not valid for the maxVersion field? Phil (Thinks 98 is cute) -- Philip Chee , http://flashblock.mozdev.org/ http://xsidebar.mozdev.org Guard us from the she-wolf and the wolf, and guard us from the thief, oh Night, and so be good for us to pass. [ ]I'm a Lumberjack and I'm OK! * TagZilla 0.066.6 From varun21 at gmail.com Sun Nov 16 20:44:57 2008 From: varun21 at gmail.com (Shivanand Sharma / Varun) Date: Mon, 17 Nov 2008 10:14:57 +0530 Subject: [Project_owners] extension stops working under Firefox 3.0.4 --please help In-Reply-To: References: <00b401c94855$fb037e60$0210a8c0@ECPCorp.local> <1a9fd9700811161803pc449c72pcbcdfde1c6d496a2@mail.gmail.com> <011e01c9485d$a2f6a000$0210a8c0@ECPCorp.local> Message-ID: <1a9fd9700811162044l942d4bfw4340994751797248@mail.gmail.com> I believe for personal testing and technically, it is by all means a valid figure. But I know that won't go well on AMO. Cheers! Shivanand Sharma Producer and Editor http://www.binaryturf.com (Web Technology & Blogging) http://www.advancedphotography.net On Mon, Nov 17, 2008 at 9:59 AM, Philip Chee wrote: > On Mon, 17 Nov 2008 03:55:20 +0100, Jesper Staun Hansen wrote: > > > 99 is not a valid version and will result in failure. > > Why is "99" not valid for the maxVersion field? > > Phil (Thinks 98 is cute) > > -- > Philip Chee , > http://flashblock.mozdev.org/ http://xsidebar.mozdev.org > Guard us from the she-wolf and the wolf, and guard us from the thief, > oh Night, and so be good for us to pass. > [ ]I'm a Lumberjack and I'm OK! > * TagZilla 0.066.6 > > _______________________________________________ > Project_owners mailing list > Project_owners at mozdev.org > https://www.mozdev.org/mailman/listinfo/project_owners > -------------- next part -------------- An HTML attachment was scrubbed... URL: From manish at experiencecommerce.com Mon Nov 17 01:57:51 2008 From: manish at experiencecommerce.com (manish deora) Date: Mon, 17 Nov 2008 15:27:51 +0530 Subject: [Project_owners] Firefox sidebar Message-ID: Hi, i have a query, i have created a sampe firefox sidebar but i want it open by default first time after installing it.so how can i capture the firefox load event and where should i specify this. expecting a reply soon. -- Regards, Manish Deora -------------- next part -------------- An HTML attachment was scrubbed... URL: From manish at experiencecommerce.com Mon Nov 17 05:56:32 2008 From: manish at experiencecommerce.com (manish deora) Date: Mon, 17 Nov 2008 19:26:32 +0530 Subject: [Project_owners] Firefox sidebar issue Message-ID: Hi, i am facing a unique issue, that on some of the webpages which are built on ruby on rails, my sidebar refreshes automatically.. does any one have any clue on it. waiting for reply -- Regards, Manish Deora -------------- next part -------------- An HTML attachment was scrubbed... URL: From jay at jaygarcia.com Mon Nov 17 06:10:16 2008 From: jay at jaygarcia.com (Jay Garcia) Date: Mon, 17 Nov 2008 08:10:16 -0600 (CST) Subject: [Project_owners] Firefox sidebar issue In-Reply-To: References: Message-ID: <46803.165.130.136.210.1226931016.squirrel@gatewayno.com> > Hi, > > i am facing a unique issue, that on some of the webpages which are built > on > ruby on rails, my sidebar refreshes automatically.. > > does any one have any clue on it. > > waiting for reply > > -- > Regards, > Manish Deora > _______________________________________________ > Project_owners mailing list > Project_owners at mozdev.org > https://www.mozdev.org/mailman/listinfo/project_owners Does it do the refresh no matter what is loaded in the sidebar? Do you have a site loaded in the sidebar that may be auto-refreshing? Jay From manish at experiencecommerce.com Mon Nov 17 06:12:17 2008 From: manish at experiencecommerce.com (Manish Deora) Date: Mon, 17 Nov 2008 19:42:17 +0530 Subject: [Project_owners] Firefox sidebar issue In-Reply-To: <46803.165.130.136.210.1226931016.squirrel@gatewayno.com> References: <46803.165.130.136.210.1226931016.squirrel@gatewayno.com> Message-ID: <8f8c4d340811170612p500fcff1t64a7c021fa230555@mail.gmail.com> yes it just refreshes no matters whats loaded in it.i have site loaded in sidebar but its not auto refreshing and i works fine in most of the cases but only a few sites it doesnot work . example is 16bugs.com etc. On Mon, Nov 17, 2008 at 7:40 PM, Jay Garcia wrote: > > Hi, > > > > i am facing a unique issue, that on some of the webpages which are built > > on > > ruby on rails, my sidebar refreshes automatically.. > > > > does any one have any clue on it. > > > > waiting for reply > > > > -- > > Regards, > > Manish Deora > > _______________________________________________ > > Project_owners mailing list > > Project_owners at mozdev.org > > https://www.mozdev.org/mailman/listinfo/project_owners > > Does it do the refresh no matter what is loaded in the sidebar? Do you > have a site loaded in the sidebar that may be auto-refreshing? > > Jay > > > > _______________________________________________ > Project_owners mailing list > Project_owners at mozdev.org > https://www.mozdev.org/mailman/listinfo/project_owners > -------------- next part -------------- An HTML attachment was scrubbed... URL: From manish.deora at gmail.com Sat Nov 15 05:28:27 2008 From: manish.deora at gmail.com (manish deora) Date: Sat, 15 Nov 2008 18:58:27 +0530 Subject: [Project_owners] Catch events of main window in firefox sidebar In-Reply-To: References: Message-ID: Hii, Thanks a lot, i was exactly what i was looking for, i have one more issue,how can i set mysidebar always open by default when the browser opens. On Thu, Nov 13, 2008 at 11:24 PM, Marco Pivetta wrote: > you could get the various window objects through the tabbed browser: > https://developer.mozilla.org/en/Code_snippets/Tabbed_browser > > 2008/11/13 manish deora > >> Hi, >> >> How can i catch the a tag events of main window page into my firefox >> sidebar plugin. >> >> -- >> Regards, >> Manish Deora >> >> _______________________________________________ >> Project_owners mailing list >> Project_owners at mozdev.org >> https://www.mozdev.org/mailman/listinfo/project_owners >> >> > > > -- > Standard Ogame Project - StOgame > http://www.stogame.net > Making Ogame a better place... > > _______________________________________________ > Project_owners mailing list > Project_owners at mozdev.org > https://www.mozdev.org/mailman/listinfo/project_owners > > -- Regards, Manish Deora -------------- next part -------------- An HTML attachment was scrubbed... URL: From silfreed at silfreed.net Mon Nov 17 06:33:36 2008 From: silfreed at silfreed.net (Douglas E. Warner) Date: Mon, 17 Nov 2008 09:33:36 -0500 Subject: [Project_owners] CVS Branching In-Reply-To: <607c3f4d0811160450x22d64fc4k14947f48f1accbde@mail.gmail.com> References: <607c3f4d0811160450x22d64fc4k14947f48f1accbde@mail.gmail.com> Message-ID: <492180C0.8010206@silfreed.net> Ramiro Aparicio wrote: > Hi, > > I need to start with a big overhaul of my extension and I wanted to try > the branhing features of CVS, I know they are not great but probably I > will not use that branch anymore, It is just to have an easy way to see > the last version. > But when I try to branch my src directory I get the following errors: > > The server reported an error while performing the "cvs tag" command. > foxgame: cvs tag: User 'frisco82' cannot access src/chrome > foxgame: cvs tag: User 'frisco82' cannot access src/chrome/content > foxgame: cvs tag: User 'frisco82' cannot access src/chrome/locale > foxgame: cvs tag: User 'frisco82' cannot access src/chrome/skin > foxgame: cvs tag: User 'frisco82' cannot access src/defaults > foxgame: cvs [tag aborted]: correct the above errors first! > > Please note that I am the main developer I have added files without > problem until today in these directories. I frequently use branches on Mozdev to do development; what CVS client are you using? Do you know what the command is that is being issued? I have problems do the branching and merging from Eclipse; I currently have to do everything using the cli. -Doug -- Douglas E. Warner Site Developer Mozdev.org http://www.mozdev.org -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: OpenPGP digital signature URL: From silver.surfer444 at gmail.com Mon Nov 17 07:16:42 2008 From: silver.surfer444 at gmail.com (Silver Surfer) Date: Mon, 17 Nov 2008 20:46:42 +0530 Subject: [Project_owners] Firefox sidebar In-Reply-To: References: Message-ID: I don't know it'll exactly work but give a try. Use a preference variable to identify the first launch of browser and let say you have initialized it to true for identifying the first launch. You have to specify about the preference variable in another js file. If you don't know about it, search it in mozilladev.org site. In overlay.xul, add this script for run the sidebar toggling function on browser loading. I didn't test it. But I think it should work. On Mon, Nov 17, 2008 at 3:27 PM, manish deora wrote: > Hi, > > i have a query, i have created a sampe firefox sidebar but i want it open > by default first time after installing it.so how can i capture the firefox > load event and where should i specify this. > > expecting a reply soon. > > -- > Regards, > Manish Deora > > _______________________________________________ > Project_owners mailing list > Project_owners at mozdev.org > https://www.mozdev.org/mailman/listinfo/project_owners > > -- ~Silver Surfer~ Surfing through time & space http://risingofsilversurfer.blogspot.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From frisco82 at gmail.com Mon Nov 17 07:22:21 2008 From: frisco82 at gmail.com (Ramiro Aparicio) Date: Mon, 17 Nov 2008 12:22:21 -0300 Subject: [Project_owners] CVS Branching In-Reply-To: <492180C0.8010206@silfreed.net> References: <607c3f4d0811160450x22d64fc4k14947f48f1accbde@mail.gmail.com> <492180C0.8010206@silfreed.net> Message-ID: <607c3f4d0811170722w85b3ad9w19807315cbbaf2e@mail.gmail.com> Hi, Yup I am using Eclipse as a CVS client, I used to have Tortoise CVS installed but I will give it a try as soon as possible. The CVS console says it is using: cvs tag "/foxgame/Root_version_15" "/foxgame/src" Hasta Otra Ramiro Aparicio --------------------------------------------------------------------------------- Desarrollador de FoxGame http://foxgame.mozdev.org Blogero aficionado en http://www.habitaquo.net On Mon, Nov 17, 2008 at 11:33 AM, Douglas E. Warner wrote: > Ramiro Aparicio wrote: > >> Hi, >> >> I need to start with a big overhaul of my extension and I wanted to try >> the branhing features of CVS, I know they are not great but probably I will >> not use that branch anymore, It is just to have an easy way to see the last >> version. >> But when I try to branch my src directory I get the following errors: >> >> The server reported an error while performing the "cvs tag" command. >> foxgame: cvs tag: User 'frisco82' cannot access src/chrome >> foxgame: cvs tag: User 'frisco82' cannot access src/chrome/content >> foxgame: cvs tag: User 'frisco82' cannot access src/chrome/locale >> foxgame: cvs tag: User 'frisco82' cannot access src/chrome/skin >> foxgame: cvs tag: User 'frisco82' cannot access src/defaults >> foxgame: cvs [tag aborted]: correct the above errors first! >> >> Please note that I am the main developer I have added files without >> problem until today in these directories. >> > > I frequently use branches on Mozdev to do development; what CVS client are > you using? Do you know what the command is that is being issued? > > I have problems do the branching and merging from Eclipse; I currently have > to do everything using the cli. > > -Doug > > -- > Douglas E. Warner Site Developer > Mozdev.org http://www.mozdev.org > > > _______________________________________________ > Project_owners mailing list > Project_owners at mozdev.org > https://www.mozdev.org/mailman/listinfo/project_owners > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From jay at jaygarcia.com Mon Nov 17 08:13:16 2008 From: jay at jaygarcia.com (Jay Garcia) Date: Mon, 17 Nov 2008 10:13:16 -0600 (CST) Subject: [Project_owners] Firefox sidebar issue In-Reply-To: <8f8c4d340811170612p500fcff1t64a7c021fa230555@mail.gmail.com> References: <46803.165.130.136.210.1226931016.squirrel@gatewayno.com> <8f8c4d340811170612p500fcff1t64a7c021fa230555@mail.gmail.com> Message-ID: <64110.165.130.136.206.1226938396.squirrel@gatewayno.com> > yes it just refreshes no matters whats loaded in it.i have site loaded in > sidebar but its not auto refreshing and > > i works fine in most of the cases but only a few sites it doesnot work . > example is 16bugs.com etc. Do you by chance have an auto-refresh extension installed? Try loading just a search engine in the sidebar to see if it still refreshes. Does the main browser window refresh as well? Post this to my UFAQ at www.ufaq.org and we'll see if someone else can attack this. Jay From manish at experiencecommerce.com Mon Nov 17 09:43:10 2008 From: manish at experiencecommerce.com (Manish Deora) Date: Mon, 17 Nov 2008 23:13:10 +0530 Subject: [Project_owners] Firefox sidebar In-Reply-To: References: Message-ID: <8f8c4d340811170943w346f6a8av7931ef04470f853@mail.gmail.com> Thanks a lot it worked well... :) On Mon, Nov 17, 2008 at 8:46 PM, Silver Surfer wrote: > I don't know it'll exactly work but give a try. > > Use a preference variable to identify the first launch of browser and let > say you have initialized it to true for identifying the first launch. > You have to specify about the preference variable in another js file. If > you don't know about it, search it in mozilladev.org site. > In overlay.xul, add this script for run the sidebar toggling function on > browser loading. > > I didn't test it. But I think it should work. > On Mon, Nov 17, 2008 at 3:27 PM, manish deora < > manish at experiencecommerce.com> wrote: > >> Hi, >> >> i have a query, i have created a sampe firefox sidebar but i want it open >> by default first time after installing it.so how can i capture the firefox >> load event and where should i specify this. >> >> expecting a reply soon. >> -- >> Regards, >> Manish Deora >> >> _______________________________________________ >> Project_owners mailing list >> Project_owners at mozdev.org >> https://www.mozdev.org/mailman/listinfo/project_owners >> >> > > > -- > ~Silver Surfer~ > Surfing through time & space > http://risingofsilversurfer.blogspot.com/ > > _______________________________________________ > Project_owners mailing list > Project_owners at mozdev.org > https://www.mozdev.org/mailman/listinfo/project_owners > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From manish at experiencecommerce.com Mon Nov 17 09:45:40 2008 From: manish at experiencecommerce.com (Manish Deora) Date: Mon, 17 Nov 2008 23:15:40 +0530 Subject: [Project_owners] Firefox sidebar issue In-Reply-To: <64110.165.130.136.206.1226938396.squirrel@gatewayno.com> References: <46803.165.130.136.210.1226931016.squirrel@gatewayno.com> <8f8c4d340811170612p500fcff1t64a7c021fa230555@mail.gmail.com> <64110.165.130.136.206.1226938396.squirrel@gatewayno.com> Message-ID: <8f8c4d340811170945h468972d8j6dd0de490007995e@mail.gmail.com> Hi, it was my mistake i was refreshing it on some parameter in setInterval.. sorry for this... i got the issue On Mon, Nov 17, 2008 at 9:43 PM, Jay Garcia wrote: > > yes it just refreshes no matters whats loaded in it.i have site loaded in > > sidebar but its not auto refreshing and > > > > i works fine in most of the cases but only a few sites it doesnot work . > > example is 16bugs.com etc. > > Do you by chance have an auto-refresh extension installed? > > Try loading just a search engine in the sidebar to see if it still > refreshes. > > Does the main browser window refresh as well? > > Post this to my UFAQ at www.ufaq.org and we'll see if someone else can > attack this. > > Jay > > _______________________________________________ > Project_owners mailing list > Project_owners at mozdev.org > https://www.mozdev.org/mailman/listinfo/project_owners > -------------- next part -------------- An HTML attachment was scrubbed... URL: From jay at jaygarcia.com Mon Nov 17 11:03:58 2008 From: jay at jaygarcia.com (Jay Garcia) Date: Mon, 17 Nov 2008 13:03:58 -0600 (CST) Subject: [Project_owners] Firefox sidebar issue In-Reply-To: <8f8c4d340811170945h468972d8j6dd0de490007995e@mail.gmail.com> References: <46803.165.130.136.210.1226931016.squirrel@gatewayno.com> <8f8c4d340811170612p500fcff1t64a7c021fa230555@mail.gmail.com> <64110.165.130.136.206.1226938396.squirrel@gatewayno.com> <8f8c4d340811170945h468972d8j6dd0de490007995e@mail.gmail.com> Message-ID: <42328.165.130.136.210.1226948638.squirrel@gatewayno.com> > Hi, > > it was my mistake i was refreshing it on some parameter in setInterval.. > > sorry for this... i got the issue Great, thanks for letting us know. Jay From belaviyo at gmail.com Mon Nov 17 12:21:15 2008 From: belaviyo at gmail.com (joe ertaba) Date: Mon, 17 Nov 2008 23:51:15 +0330 Subject: [Project_owners] server listen or not Message-ID: <23d9f6b20811171221u7bcbd6d0p12939e24d609e6a8@mail.gmail.com> Hi I there any way to find out if server is listening or not ? in socket programming base on Mozilla api I cant find any appropriate way to find out if server exist or not ! Thanks Joe -------------- next part -------------- An HTML attachment was scrubbed... URL: From belaviyo at gmail.com Tue Nov 18 05:39:58 2008 From: belaviyo at gmail.com (joe ertaba) Date: Tue, 18 Nov 2008 17:09:58 +0330 Subject: [Project_owners] auto increment textbox Message-ID: <23d9f6b20811180539o7573b0cakfb22893c57fcd79c@mail.gmail.com> Hi, I want a textbox which can increment it's height to adjust itself with new text, any idea ? -------------- next part -------------- An HTML attachment was scrubbed... URL: From manish.deora at gmail.com Mon Nov 17 09:34:59 2008 From: manish.deora at gmail.com (manish deora) Date: Mon, 17 Nov 2008 23:04:59 +0530 Subject: [Project_owners] Firefox sidebar issue In-Reply-To: <64110.165.130.136.206.1226938396.squirrel@gatewayno.com> References: <46803.165.130.136.210.1226931016.squirrel@gatewayno.com> <8f8c4d340811170612p500fcff1t64a7c021fa230555@mail.gmail.com> <64110.165.130.136.206.1226938396.squirrel@gatewayno.com> Message-ID: Hi, sorry i got the issue, it was due to some url i was checking... and refreshing in setInterval by mistake. but i have other issue as well that i want after installing a extension and restarting firefox it should come automatically opend how can i do that On Mon, Nov 17, 2008 at 9:43 PM, Jay Garcia wrote: > > yes it just refreshes no matters whats loaded in it.i have site loaded in > > sidebar but its not auto refreshing and > > > > i works fine in most of the cases but only a few sites it doesnot work . > > example is 16bugs.com etc. > > Do you by chance have an auto-refresh extension installed? > > Try loading just a search engine in the sidebar to see if it still > refreshes. > > Does the main browser window refresh as well? > > Post this to my UFAQ at www.ufaq.org and we'll see if someone else can > attack this. > > Jay > > _______________________________________________ > Project_owners mailing list > Project_owners at mozdev.org > https://www.mozdev.org/mailman/listinfo/project_owners > -- Regards, Manish Deora -------------- next part -------------- An HTML attachment was scrubbed... URL: From jay at jaygarcia.com Tue Nov 18 06:36:20 2008 From: jay at jaygarcia.com (Jay Garcia) Date: Tue, 18 Nov 2008 08:36:20 -0600 (CST) Subject: [Project_owners] Firefox sidebar issue In-Reply-To: References: <46803.165.130.136.210.1226931016.squirrel@gatewayno.com> <8f8c4d340811170612p500fcff1t64a7c021fa230555@mail.gmail.com> <64110.165.130.136.206.1226938396.squirrel@gatewayno.com> Message-ID: <5392.165.130.136.206.1227018980.squirrel@gatewayno.com> > Hi, > > sorry i got the issue, it was due to some url i was checking... and > refreshing in setInterval by mistake. > > but i have other issue as well that i want after installing a extension > and > restarting firefox it should come automatically opend > > how can i do that Make sure the extension is enabled in the addons/extensions window and then go into the specific extension options for various preferences. What "extension"?? Jay From jesper at heroes-addon.dk Tue Nov 18 08:53:52 2008 From: jesper at heroes-addon.dk (Jesper Staun Hansen) Date: Tue, 18 Nov 2008 17:53:52 +0100 Subject: [Project_owners] auto increment textbox In-Reply-To: <23d9f6b20811180539o7573b0cakfb22893c57fcd79c@mail.gmail.com> References: <23d9f6b20811180539o7573b0cakfb22893c57fcd79c@mail.gmail.com> Message-ID: <4922F320.3060607@heroes-addon.dk> xul or (x)html? joe ertaba wrote: > Hi, > > I want a textbox which can increment it's height to adjust itself with > new text, any idea ? > > > ------------------------------------------------------------------------ > > _______________________________________________ > Project_owners mailing list > Project_owners at mozdev.org > https://www.mozdev.org/mailman/listinfo/project_owners > From belaviyo at gmail.com Tue Nov 18 10:42:22 2008 From: belaviyo at gmail.com (joe ertaba) Date: Tue, 18 Nov 2008 22:12:22 +0330 Subject: [Project_owners] auto increment textbox In-Reply-To: <4922F320.3060607@heroes-addon.dk> References: <23d9f6b20811180539o7573b0cakfb22893c57fcd79c@mail.gmail.com> <4922F320.3060607@heroes-addon.dk> Message-ID: <23d9f6b20811181042x642e23cfl8a20318ec9f67d4a@mail.gmail.com> xml /xul On 11/18/08, Jesper Staun Hansen wrote: > xul or (x)html? > > joe ertaba wrote: >> Hi, >> >> I want a textbox which can increment it's height to adjust itself with >> new text, any idea ? >> >> >> ------------------------------------------------------------------------ >> >> _______________________________________________ >> Project_owners mailing list >> Project_owners at mozdev.org >> https://www.mozdev.org/mailman/listinfo/project_owners >> > > _______________________________________________ > Project_owners mailing list > Project_owners at mozdev.org > https://www.mozdev.org/mailman/listinfo/project_owners > From antonglv at gmail.com Tue Nov 18 11:12:04 2008 From: antonglv at gmail.com (Anton Glazatov) Date: Wed, 19 Nov 2008 02:12:04 +0700 Subject: [Project_owners] auto increment textbox In-Reply-To: <23d9f6b20811181042x642e23cfl8a20318ec9f67d4a@mail.gmail.com> References: <23d9f6b20811180539o7573b0cakfb22893c57fcd79c@mail.gmail.com> <4922F320.3060607@heroes-addon.dk> <23d9f6b20811181042x642e23cfl8a20318ec9f67d4a@mail.gmail.com> Message-ID: <49231384.20505@gmail.com> I think next code line is proper: > xml /xul > > > > On 11/18/08, Jesper Staun Hansen wrote: > >> xul or (x)html? >> >> joe ertaba wrote: >> >>> Hi, >>> >>> I want a textbox which can increment it's height to adjust itself with >>> new text, any idea ? >>> >>> >>> ------------------------------------------------------------------------ >>> >>> _______________________________________________ >>> Project_owners mailing list >>> Project_owners at mozdev.org >>> https://www.mozdev.org/mailman/listinfo/project_owners >>> >>> >> _______________________________________________ >> Project_owners mailing list >> Project_owners at mozdev.org >> https://www.mozdev.org/mailman/listinfo/project_owners >> >> > _______________________________________________ > Project_owners mailing list > Project_owners at mozdev.org > https://www.mozdev.org/mailman/listinfo/project_owners > > From belaviyo at gmail.com Fri Nov 21 01:07:53 2008 From: belaviyo at gmail.com (joe ertaba) Date: Fri, 21 Nov 2008 12:37:53 +0330 Subject: [Project_owners] FTP Socket Message-ID: <23d9f6b20811210107id7db20fh7405ce3f2431cb9a@mail.gmail.com> Hi, I need a ftp server, anybody know what is the easiest way to implement ftp server ? Is there any help in developer area about ftp ? -------------- next part -------------- An HTML attachment was scrubbed... URL: From varun21 at gmail.com Fri Nov 21 01:15:30 2008 From: varun21 at gmail.com (Shivanand Sharma / Varun) Date: Fri, 21 Nov 2008 14:45:30 +0530 Subject: [Project_owners] FTP Socket In-Reply-To: <23d9f6b20811210107id7db20fh7405ce3f2431cb9a@mail.gmail.com> References: <23d9f6b20811210107id7db20fh7405ce3f2431cb9a@mail.gmail.com> Message-ID: <1a9fd9700811210115i1a76c137pf51baadabf544b05@mail.gmail.com> Hi, If you can describe the application it will help. If you own a webhosting it will already come with an ftp server. Cheers! Shivanand Sharma Producer and Editor http://www.binaryturf.com (Web Technology & Blogging) http://www.advancedphotography.net On Fri, Nov 21, 2008 at 2:37 PM, joe ertaba wrote: > Hi, > > I need a ftp server, anybody know what is the easiest way to implement ftp > server ? Is there any help in developer area about ftp ? > > _______________________________________________ > Project_owners mailing list > Project_owners at mozdev.org > https://www.mozdev.org/mailman/listinfo/project_owners > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From belaviyo at gmail.com Fri Nov 21 02:04:37 2008 From: belaviyo at gmail.com (joe ertaba) Date: Fri, 21 Nov 2008 13:34:37 +0330 Subject: [Project_owners] FTP Socket In-Reply-To: <1a9fd9700811210115i1a76c137pf51baadabf544b05@mail.gmail.com> References: <23d9f6b20811210107id7db20fh7405ce3f2431cb9a@mail.gmail.com> <1a9fd9700811210115i1a76c137pf51baadabf544b05@mail.gmail.com> Message-ID: <23d9f6b20811210204p1bec92f5rf7614abff0b185ed@mail.gmail.com> Hi Shivanand, I want to implement a ftp server base on Mozilla then use it for sending/receiving file from my other PC (it is a small home computer). Firefox is always run on my PC, so it is good idea to implement server on that. On Fri, Nov 21, 2008 at 12:45 PM, Shivanand Sharma / Varun < varun21 at gmail.com> wrote: > Hi, > > If you can describe the application it will help. If you own a webhosting > it will already come with an ftp server. > > Cheers! > Shivanand Sharma > Producer and Editor > http://www.binaryturf.com (Web Technology & Blogging) > http://www.advancedphotography.net > > > On Fri, Nov 21, 2008 at 2:37 PM, joe ertaba wrote: > >> Hi, >> >> I need a ftp server, anybody know what is the easiest way to implement ftp >> server ? Is there any help in developer area about ftp ? >> >> _______________________________________________ >> Project_owners mailing list >> Project_owners at mozdev.org >> https://www.mozdev.org/mailman/listinfo/project_owners >> >> > > _______________________________________________ > Project_owners mailing list > Project_owners at mozdev.org > https://www.mozdev.org/mailman/listinfo/project_owners > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From varun21 at gmail.com Fri Nov 21 02:40:22 2008 From: varun21 at gmail.com (Shivanand Sharma / Varun) Date: Fri, 21 Nov 2008 16:10:22 +0530 Subject: [Project_owners] FTP Socket In-Reply-To: <23d9f6b20811210204p1bec92f5rf7614abff0b185ed@mail.gmail.com> References: <23d9f6b20811210107id7db20fh7405ce3f2431cb9a@mail.gmail.com> <1a9fd9700811210115i1a76c137pf51baadabf544b05@mail.gmail.com> <23d9f6b20811210204p1bec92f5rf7614abff0b185ed@mail.gmail.com> Message-ID: <1a9fd9700811210240u1a1b4146pe90e996b55094bac@mail.gmail.com> k. Thanks and sorry, I'll have to pass that one. Cheers! Shivanand Sharma Producer and Editor http://www.binaryturf.com (Web Technology & Blogging) http://www.advancedphotography.net On Fri, Nov 21, 2008 at 3:34 PM, joe ertaba wrote: > Hi Shivanand, > > I want to implement a ftp server base on Mozilla then use it for > sending/receiving file from my other PC (it is a small home computer). > > Firefox is always run on my PC, so it is good idea to implement server on > that. > > > On Fri, Nov 21, 2008 at 12:45 PM, Shivanand Sharma / Varun < > varun21 at gmail.com> wrote: > >> Hi, >> >> If you can describe the application it will help. If you own a webhosting >> it will already come with an ftp server. >> >> Cheers! >> Shivanand Sharma >> Producer and Editor >> http://www.binaryturf.com (Web Technology & Blogging) >> http://www.advancedphotography.net >> >> >> On Fri, Nov 21, 2008 at 2:37 PM, joe ertaba wrote: >> >>> Hi, >>> >>> I need a ftp server, anybody know what is the easiest way to implement >>> ftp server ? Is there any help in developer area about ftp ? >>> >>> _______________________________________________ >>> Project_owners mailing list >>> Project_owners at mozdev.org >>> https://www.mozdev.org/mailman/listinfo/project_owners >>> >>> >> >> _______________________________________________ >> Project_owners mailing list >> Project_owners at mozdev.org >> https://www.mozdev.org/mailman/listinfo/project_owners >> >> > > _______________________________________________ > Project_owners mailing list > Project_owners at mozdev.org > https://www.mozdev.org/mailman/listinfo/project_owners > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From dernotte at yahoo.com Fri Nov 21 06:02:54 2008 From: dernotte at yahoo.com (Didier Ernotte) Date: Fri, 21 Nov 2008 06:02:54 -0800 (PST) Subject: [Project_owners] FTP Socket In-Reply-To: <1a9fd9700811210240u1a1b4146pe90e996b55094bac@mail.gmail.com> Message-ID: <217443.35822.qm@web31005.mail.mud.yahoo.com> There is tons of free and robust FTP server on PC, Mac, and Linux. Why create a new one in Mozilla ? A complete waist of time ! Didier --- On Fri, 11/21/08, Shivanand Sharma / Varun wrote: From: Shivanand Sharma / Varun Subject: Re: [Project_owners] FTP Socket To: "Mozdev Project Owners List" Date: Friday, November 21, 2008, 5:40 AM k. Thanks and sorry, I'll have to pass that one. Cheers! Shivanand Sharma Producer and Editor http://www.binaryturf.com (Web Technology & Blogging) http://www.advancedphotography.net On Fri, Nov 21, 2008 at 3:34 PM, joe ertaba wrote: Hi Shivanand, I want to implement a ftp server base on Mozilla then use it for sending/receiving file from my other PC (it is a small home computer). Firefox is always run on my PC, so it is good idea to implement server on that. On Fri, Nov 21, 2008 at 12:45 PM, Shivanand Sharma / Varun wrote: Hi, If you can describe the application it will help. If you own a webhosting it will already come with an ftp server. Cheers! Shivanand Sharma Producer and Editor http://www.binaryturf.com (Web Technology & Blogging) http://www.advancedphotography.net On Fri, Nov 21, 2008 at 2:37 PM, joe ertaba wrote: Hi, I need a ftp server, anybody know what is the easiest way to implement ftp server ? Is there any help in developer area about ftp ? _______________________________________________ Project_owners mailing list Project_owners at mozdev.org https://www.mozdev.org/mailman/listinfo/project_owners _______________________________________________ Project_owners mailing list Project_owners at mozdev.org https://www.mozdev.org/mailman/listinfo/project_owners _______________________________________________ Project_owners mailing list Project_owners at mozdev.org https://www.mozdev.org/mailman/listinfo/project_owners _______________________________________________ Project_owners mailing list Project_owners at mozdev.org https://www.mozdev.org/mailman/listinfo/project_owners -------------- next part -------------- An HTML attachment was scrubbed... URL: From twhitema at gmail.com Fri Nov 21 10:49:21 2008 From: twhitema at gmail.com (Todd Whiteman) Date: Fri, 21 Nov 2008 10:49:21 -0800 Subject: [Project_owners] FTP Socket In-Reply-To: <23d9f6b20811210204p1bec92f5rf7614abff0b185ed@mail.gmail.com> References: <23d9f6b20811210107id7db20fh7405ce3f2431cb9a@mail.gmail.com> <1a9fd9700811210115i1a76c137pf51baadabf544b05@mail.gmail.com> <23d9f6b20811210204p1bec92f5rf7614abff0b185ed@mail.gmail.com> Message-ID: <492702B1.6070000@gmail.com> joe ertaba wrote: > Hi Shivanand, > > I want to implement a ftp server base on Mozilla then use it for > sending/receiving file from my other PC (it is a small home computer). > > Firefox is always run on my PC, so it is good idea to implement server > on that. Hi Joe, You could use PyXPCOM and then create an extension that handles the loading of the ftp server, re-use an existing Python ftp server would be relatively straight forward, such as: http://code.google.com/p/pyftpdlib/ You'd include the pyftpdlib code in your extension, under the "pylib" directory, then you can use PyDOM to import this code and play with it directly, or create a Python XPCOM interface that wraps around the necessary Python methods and is thus exposed to JavaScript. Cheers, Todd From philip.chee at gmail.com Fri Nov 21 19:56:17 2008 From: philip.chee at gmail.com (Philip Chee) Date: Sat, 22 Nov 2008 11:56:17 +0800 Subject: [Project_owners] FTP Socket In-Reply-To: References: Message-ID: On Fri, 21 Nov 2008 06:02:54 -0800 (PST), Didier Ernotte wrote: > There is tons of free and robust FTP server on PC, Mac, and Linux. > Why create a new one in Mozilla ? Well there is already a FTP /client/ (FireFTP) and a HTTP Server (POW) written in JS (Firefox extensions). I think it would be just a SMOP to leverage on these extensions to write a FTP server. > A complete waist of time ! Not if you are on a diet. Phil (my mind is a terrible waist) -- Philip Chee , http://flashblock.mozdev.org/ http://xsidebar.mozdev.org Guard us from the she-wolf and the wolf, and guard us from the thief, oh Night, and so be good for us to pass. [ ]First Shalt thou pull out the Holy Pin! * TagZilla 0.066.6 From manish at experiencecommerce.com Mon Nov 24 04:23:34 2008 From: manish at experiencecommerce.com (manish deora) Date: Mon, 24 Nov 2008 17:53:34 +0530 Subject: [Project_owners] Firefox sidebar extension upgrading Message-ID: Hi, i have developed a firefox sidebar extension now i need to know what are the steps required to submit it to firefox addon directory. and other thing is if i have made some updates in the extension than, how will the old users get updated wid that change. any help ..!! -- Regards, Manish Deora -------------- next part -------------- An HTML attachment was scrubbed... URL: From manish at experiencecommerce.com Mon Nov 24 05:14:35 2008 From: manish at experiencecommerce.com (manish deora) Date: Mon, 24 Nov 2008 18:44:35 +0530 Subject: [Project_owners] How to create Experimental addons Message-ID: Hi, can anyone tell me how to submit experimental addon.? -- Regards, Manish Deora -------------- next part -------------- An HTML attachment was scrubbed... URL: From varun21 at gmail.com Mon Nov 24 07:36:14 2008 From: varun21 at gmail.com (Shivanand Sharma / Varun) Date: Mon, 24 Nov 2008 21:06:14 +0530 Subject: [Project_owners] How to create Experimental addons In-Reply-To: References: Message-ID: <1a9fd9700811240736r63a73d8ag4464899aab3cfd8b@mail.gmail.com> You have to create a (developer?) account at https://addons.mozilla.org and upload your addon. Cheers! Shivanand Sharma Producer and Editor http://www.binaryturf.com (Web Technology & Blogging) http://www.advancedphotography.net On Mon, Nov 24, 2008 at 6:44 PM, manish deora wrote: > Hi, > > can anyone tell me how to submit experimental addon.? > > -- > Regards, > Manish Deora > > _______________________________________________ > Project_owners mailing list > Project_owners at mozdev.org > https://www.mozdev.org/mailman/listinfo/project_owners > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From manish at experiencecommerce.com Mon Nov 24 23:42:47 2008 From: manish at experiencecommerce.com (Manish Deora) Date: Tue, 25 Nov 2008 13:12:47 +0530 Subject: [Project_owners] How to create Experimental addons In-Reply-To: <1a9fd9700811240736r63a73d8ag4464899aab3cfd8b@mail.gmail.com> References: <1a9fd9700811240736r63a73d8ag4464899aab3cfd8b@mail.gmail.com> Message-ID: <8f8c4d340811242342j41603a4bx9362ac033ddec31a@mail.gmail.com> Hi, thanks a lot i made it done !! On Mon, Nov 24, 2008 at 9:06 PM, Shivanand Sharma / Varun wrote: > You have to create a (developer?) account at https://addons.mozilla.organd upload your addon. > > Cheers! > Shivanand Sharma > Producer and Editor > http://www.binaryturf.com (Web Technology & Blogging) > http://www.advancedphotography.net > > > On Mon, Nov 24, 2008 at 6:44 PM, manish deora < > manish at experiencecommerce.com> wrote: > >> Hi, >> >> can anyone tell me how to submit experimental addon.? >> >> -- >> Regards, >> Manish Deora >> >> _______________________________________________ >> Project_owners mailing list >> Project_owners at mozdev.org >> https://www.mozdev.org/mailman/listinfo/project_owners >> >> > > _______________________________________________ > Project_owners mailing list > Project_owners at mozdev.org > https://www.mozdev.org/mailman/listinfo/project_owners > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From manish at experiencecommerce.com Tue Nov 25 07:22:40 2008 From: manish at experiencecommerce.com (manish deora) Date: Tue, 25 Nov 2008 20:52:40 +0530 Subject: [Project_owners] Sidebar uninstall event Message-ID: Hi, Is there any event fired which we can catch if a user uninstalls the sidebar. i need to set the some settings to default on uninstalling it. -- Regards, Manish Deora -------------- next part -------------- An HTML attachment was scrubbed... URL: From jesper at heroes-addon.dk Tue Nov 25 09:32:11 2008 From: jesper at heroes-addon.dk (Jesper Staun Hansen) Date: Tue, 25 Nov 2008 18:32:11 +0100 Subject: [Project_owners] Sidebar uninstall event In-Reply-To: References: Message-ID: <492C369B.4000503@heroes-addon.dk> Look at https://developer.mozilla.org/en/Enhanced_Extension_Installation#Uninstallation manish deora wrote: > > Hi, > > Is there any event fired which we can catch if a user uninstalls the > sidebar. i need to set the some settings to default on uninstalling it. > > > -- > Regards, > Manish Deora > ------------------------------------------------------------------------ > > _______________________________________________ > Project_owners mailing list > Project_owners at mozdev.org > https://www.mozdev.org/mailman/listinfo/project_owners > From manish at experiencecommerce.com Wed Nov 26 20:53:01 2008 From: manish at experiencecommerce.com (manish deora) Date: Thu, 27 Nov 2008 10:23:01 +0530 Subject: [Project_owners] Sidebar for firefox 2 Message-ID: Hi, i have developed a sidebar which is compatible with higher versions of firefox 1.5. but in some firefox2.0 versions when i tried to open xpi it just shows the junk character in browser and doesnot install it. Any clue? -- Regards, Manish Deora -------------- next part -------------- An HTML attachment was scrubbed... URL: From manish at experiencecommerce.com Wed Nov 26 21:23:01 2008 From: manish at experiencecommerce.com (manish deora) Date: Thu, 27 Nov 2008 10:53:01 +0530 Subject: [Project_owners] Sidebar uninstall event In-Reply-To: <492C369B.4000503@heroes-addon.dk> References: <492C369B.4000503@heroes-addon.dk> Message-ID: Hi, I want to set some of attributes of my sidebar extension to default if the user uninstalls the sidebar. How can i do this..? On Tue, Nov 25, 2008 at 11:02 PM, Jesper Staun Hansen < jesper at heroes-addon.dk> wrote: > Look at > https://developer.mozilla.org/en/Enhanced_Extension_Installation#Uninstallation > > manish deora wrote: > >> >> Hi, >> >> Is there any event fired which we can catch if a user uninstalls the >> sidebar. i need to set the some settings to default on uninstalling it. >> >> >> -- >> Regards, >> Manish Deora >> ------------------------------------------------------------------------ >> >> _______________________________________________ >> Project_owners mailing list >> Project_owners at mozdev.org >> https://www.mozdev.org/mailman/listinfo/project_owners >> >> > > _______________________________________________ > Project_owners mailing list > Project_owners at mozdev.org > https://www.mozdev.org/mailman/listinfo/project_owners > -- Regards, Manish Deora -------------- next part -------------- An HTML attachment was scrubbed... URL: From belaviyo at gmail.com Fri Nov 28 07:13:13 2008 From: belaviyo at gmail.com (joe ertaba) Date: Fri, 28 Nov 2008 18:43:13 +0330 Subject: [Project_owners] xmlterm Message-ID: <23d9f6b20811280713n2b9d5afdicde1dfd53ec9bb3e@mail.gmail.com> Hi, Is it possible to use xmlterm in extensions ? is it multi-platform ? What I want is to send data to some interface[original data with all control codes,...] (maybe xmlterm) to show them correctly -------------- next part -------------- An HTML attachment was scrubbed... URL: From twhitema at gmail.com Fri Nov 28 10:46:14 2008 From: twhitema at gmail.com (Todd Whiteman) Date: Fri, 28 Nov 2008 10:46:14 -0800 Subject: [Project_owners] xmlterm In-Reply-To: <23d9f6b20811280713n2b9d5afdicde1dfd53ec9bb3e@mail.gmail.com> References: <23d9f6b20811280713n2b9d5afdicde1dfd53ec9bb3e@mail.gmail.com> Message-ID: <49303C76.3010707@gmail.com> joe ertaba wrote: > Is it possible to use xmlterm in extensions ? is it multi-platform ? > > What I want is to send data to some interface[original data with all > control codes,...] (maybe xmlterm) to show them correctly What control codes are you wanting to send, xterm emulation, like VT100, ansi color? May be related: I've recently setup a VT100 terminal emulation extension for Mozilla, to connect to a remote server using SSH, and handle the VT100 specific control codes: http://pyxpcomext.mozdev.org/samples.html#sftp_and_ssh_protocol Cheers, Todd From belaviyo at gmail.com Fri Nov 28 11:43:02 2008 From: belaviyo at gmail.com (joe ertaba) Date: Fri, 28 Nov 2008 23:13:02 +0330 Subject: [Project_owners] xmlterm In-Reply-To: <49303C76.3010707@gmail.com> References: <23d9f6b20811280713n2b9d5afdicde1dfd53ec9bb3e@mail.gmail.com> <49303C76.3010707@gmail.com> Message-ID: <23d9f6b20811281143h2756ed7x3b71dc7d7dadaafd@mail.gmail.com> Hi Todd Thanks for response Yes, I want to send xterm emulation, like VT100 to a component which can phrase them and show them correctly I can receive data and control codes correctly but I don't know how to phrase them and which element I should use for that On 11/28/08, Todd Whiteman wrote: > joe ertaba wrote: >> Is it possible to use xmlterm in extensions ? is it multi-platform ? >> >> What I want is to send data to some interface[original data with all >> control codes,...] (maybe xmlterm) to show them correctly > > What control codes are you wanting to send, xterm emulation, like VT100, > ansi color? > > May be related: I've recently setup a VT100 terminal emulation extension > for Mozilla, to connect to a remote server using SSH, and handle the > VT100 specific control codes: > http://pyxpcomext.mozdev.org/samples.html#sftp_and_ssh_protocol > > Cheers, > Todd > _______________________________________________ > Project_owners mailing list > Project_owners at mozdev.org > https://www.mozdev.org/mailman/listinfo/project_owners > From belaviyo at gmail.com Fri Nov 28 12:49:02 2008 From: belaviyo at gmail.com (joe ertaba) Date: Sat, 29 Nov 2008 00:19:02 +0330 Subject: [Project_owners] xmlterm In-Reply-To: <23d9f6b20811281143h2756ed7x3b71dc7d7dadaafd@mail.gmail.com> References: <23d9f6b20811280713n2b9d5afdicde1dfd53ec9bb3e@mail.gmail.com> <49303C76.3010707@gmail.com> <23d9f6b20811281143h2756ed7x3b71dc7d7dadaafd@mail.gmail.com> Message-ID: <23d9f6b20811281249j4836e40fwb721581dad159f55@mail.gmail.com> Hi again, I built a sample xul from vt100.js here is code: