Account Options

  1. Sign in
The old Google Groups will be going away soon.
Switch to the new Google Groups.
Google Groups Home
« Groups Home
Auto update extension from XULRunner
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  7 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Alexander N. Treyner  
View profile  
 More options Mar 26 2007, 4:38 am
Newsgroups: mozilla.dev.platform
From: "Alexander N. Treyner" <a...@treyner.israel.net>
Date: Mon, 26 Mar 2007 10:38:14 +0200
Local: Mon, Mar 26 2007 4:38 am
Subject: Auto update extension from XULRunner
Hi,
I'm writing application using XULRunner 1.8.1 + extensions for it.
I got Extension Manager to work within XULRunner, and I'm able to update
installed Extensions from Extension Manager via right click on Extension
and "Find Update" command, but I don't understand under which condition
XULRunner will check for updates on opening my application (If it should).
I tried to play with next pref:
pref("extensions.update.interval", 60);

I supposed that interval measured in seconds, so should it check updates
every 60 seconds?

I got prompt saying "Update Found" only twice during 3 days that I work
with my application, but extension version changed dozens times.

Please help me figure out how it work,

Thanks,

--
    Alexander N. Treyner


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Brian King  
View profile  
 More options Mar 26 2007, 1:18 pm
Newsgroups: mozilla.dev.platform
From: Brian King <br...@mozdev.org>
Date: Mon, 26 Mar 2007 19:18:48 +0200
Local: Mon, Mar 26 2007 1:18 pm
Subject: Re: Auto update extension from XULRunner
On 26/03/2007 10:38 (CET), Alexander N. Treyner wrote:

Maybe I am stating the obvious, but just in case ...

There are a couple of other relevant prefs:

- extensions.update.enabled
- extensions.update.notifyUser

Have you turned these on?

--
Brian King
www.mozdev.org - free project hosting for the Mozilla community


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
mark.fin...@gmail.com  
View profile  
 More options Mar 27 2007, 12:33 am
Newsgroups: mozilla.dev.platform
From: mark.fin...@gmail.com
Date: 26 Mar 2007 21:33:53 -0700
Local: Tues, Mar 27 2007 12:33 am
Subject: Re: Auto update extension from XULRunner
On Mar 26, 4:38 am, "Alexander N. Treyner" <a...@treyner.israel.net>
wrote:

Brain pointed out some preferences you'll need to turn on. You might
need more. You will may alos need to use "branding" DTD
and .properties files (if your displaying the extension manager UI).
More information here:
http://developer.mozilla.org/en/docs/XULRunner_tips

Mark Finkle


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
mark.fin...@gmail.com  
View profile  
 More options Mar 27 2007, 12:35 am
Newsgroups: mozilla.dev.platform
From: mark.fin...@gmail.com
Date: 26 Mar 2007 21:35:43 -0700
Local: Tues, Mar 27 2007 12:35 am
Subject: Re: Auto update extension from XULRunner

> Brain pointed out some preferences you'll need to turn on. You might
> need more. You will may alos need to use "branding" DTD
> and .properties files (if your displaying the extension manager UI).
> More information here:http://developer.mozilla.org/en/docs/XULRunner_tips

s/Brain/Brian

Although, I know Brian has a brain


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Alexander N. Treyner  
View profile  
 More options Mar 27 2007, 3:59 am
Newsgroups: mozilla.dev.platform
From: "Alexander N. Treyner" <a...@treyner.israel.net>
Date: Tue, 27 Mar 2007 09:59:11 +0200
Local: Tues, Mar 27 2007 3:59 am
Subject: Re: Auto update extension from XULRunner

Brian King wrote:
> On 26/03/2007 10:38 (CET), Alexander N. Treyner wrote:

> Maybe I am stating the obvious, but just in case ...

> There are a couple of other relevant prefs:

> - extensions.update.enabled
> - extensions.update.notifyUser

> Have you turned these on?

notifyUser was missed for me, but when I added it - I still have no
automatic update. Only manual. Here my prefs:

// Extension
pref("xpinstall.enabled",       true);
pref("xpinstall.dialog.confirm",
"chrome://mozapps/content/xpinstall/xpinstallConfirm.xul");
pref("xpinstall.dialog.progress.skin",
"chrome://mozapps/content/extensions/extensions.xul?type=themes");
pref("xpinstall.dialog.progress.chrome",
"chrome://mozapps/content/extensions/extensions.xul?type=extensions");
pref("xpinstall.dialog.progress.type.skin", "Extension:Manager-themes");
pref("xpinstall.dialog.progress.type.chrome",
"Extension:Manager-extensions");
pref("extensions.update.enabled", true);
pref("extensions.update.notifyUser",true);
//pref("extensions.update.interval", 86400);
pref("extensions.update.interval", 60);
pref("extensions.dss.enabled", false);
pref("extensions.dss.switchPending", false);
pref("extensions.ignoreMTimeChanges", false);
pref("extensions.logging.enabled", false);
pref("general.skins.selectedSkin", "classic/1.0");
// NB these point at AMO
pref("extensions.update.url",
"chrome://mozapps/locale/extensions/extensions.properties");
pref("extensions.getMoreExtensionsURL",
"chrome://mozapps/locale/extensions/extensions.properties");
pref("extensions.getMoreThemesURL",
"chrome://mozapps/locale/extensions/extensions.properties");

Thanks,
Alex


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Brian King  
View profile  
 More options Mar 27 2007, 5:45 pm
Newsgroups: mozilla.dev.platform
From: Brian King <br...@mozdev.org>
Date: Tue, 27 Mar 2007 23:45:30 +0200
Local: Tues, Mar 27 2007 5:45 pm
Subject: Re: Auto update extension from XULRunner
On 27/03/2007 09:59 (CET), Alexander N. Treyner wrote:

Which seems to correlate with :

http://developer.mozilla.org/en/docs/XULRunner_tips#Extension_Manager

I've not done this (yet), so I would just be speculating otherwise.

--
Brian King
www.mozdev.org - free project hosting for the Mozilla community


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Alexander N. Treyner  
View profile  
 More options Mar 28 2007, 12:04 pm
Newsgroups: mozilla.dev.platform
From: "Alexander N. Treyner" <a...@treyner.israel.net>
Date: Wed, 28 Mar 2007 18:04:04 +0200
Local: Wed, Mar 28 2007 12:04 pm
Subject: Re: Auto update extension from XULRunner

Brian King wrote:
> On 27/03/2007 09:59 (CET), Alexander N. Treyner wrote:
> Which seems to correlate with :

> http://developer.mozilla.org/en/docs/XULRunner_tips#Extension_Manager

> I've not done this (yet), so I would just be speculating otherwise.

Could you point me which step I should do (in general) in order to
get/create mechanism for auto update. I tried to figure out how it work
in Firefox, but quickly get lost.

Thanks,

Alex.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »