Re: [wpkg-users] Using WPKG on Win7

2011-07-14 Thread simplesi


Paul McGrath-2 wrote:
 
 
 Hi Simon,
   I was wondering why you don't run WPKG as a service as it is designed? 
I've been using WPKG for a long time (originally on Win98 with linux SMB
servers) so I've just kept things simple with running it as a all users
startup bat file :)

AFAIK this saves me having to make proper silent packages but maybe I've
got that wrong?

Simon

-- 
View this message in context: 
http://old.nabble.com/Using-WPKG-on-Win7-tp31953827p32059815.html
Sent from the WPKG - Users mailing list archive at Nabble.com.

-
wpkg-users mailing list archives  http://lists.wpkg.org/pipermail/wpkg-users/
___
wpkg-users mailing list
wpkg-users@lists.wpkg.org
http://lists.wpkg.org/mailman/listinfo/wpkg-users


[wpkg-users] Replace xmlhttp download with curl/wget

2011-07-14 Thread heiko . helmle
Hello,

While wondering why download is so slow, i looked around.

The problem with WSH and URL downloads is:
* It's a kludge. That's why it's documented as should not use
* It even can crash the CMD-window WPKG runs in.
* It works only with HTTP
* It loads the file completely into memory before dumping it to disk. 
(wasteful)

So maybe we could (optionally) have an external tool handle the download 
tag - curl or wget are excellent specialised (and free/GPL) tools.

Pros:
* much more robust than the WSH download method
* saves memory
* faster (probably because of the memory savings)
* Support not only for HTTP, but FTP too.

Cons: 
* WPKG would rely on an external binary (so it's foreign code, but at 
least no license problems)

Why downloading anyway:
2 reasons:
* I don't want installations to stall/fail in the middle of the (critical) 
process just because the network goes down (mobile users tend to be pretty 
mobile sometimes)
* some Installers (especially MSI)  are for some reasons really really 
slow and use huge network resources (10x the actual size) when run over 
SMB. They work fine when run from local storage.

What do you think?

Best Regards
Heiko Helmle-
wpkg-users mailing list archives  http://lists.wpkg.org/pipermail/wpkg-users/
___
wpkg-users mailing list
wpkg-users@lists.wpkg.org
http://lists.wpkg.org/mailman/listinfo/wpkg-users


Re: [wpkg-users] Replace xmlhttp download with curl/wget

2011-07-14 Thread Falko Trojahn

Hello,


So maybe we could (optionally) have an external tool handle the download
tag - curl or wget are excellent specialised (and free/GPL) tools.

Pros:
* much more robust than the WSH download method
* saves memory
* faster (probably because of the memory savings)
* Support not only for HTTP, but FTP too.

Cons:
* WPKG would rely on an external binary (so it's foreign code, but at
least no license problems)

...

What do you think?



We could introduce similar option like rebootCmd:special, where 
psshutdown is used for reboot (from config.xml:

Setting rebootCmd to special will use tools\psshutdown.exe from
* from www.sysinternals.com - if it exists
).

So we can have predefined options for e.g. wget or curl in wpkg.js,
while preserving the possibility to use another tool.

Best regards,
Falko
-
wpkg-users mailing list archives  http://lists.wpkg.org/pipermail/wpkg-users/
___
wpkg-users mailing list
wpkg-users@lists.wpkg.org
http://lists.wpkg.org/mailman/listinfo/wpkg-users


Re: [wpkg-users] Replace xmlhttp download with curl/wget

2011-07-14 Thread Marco Gaiarin
Mandi! Falko Trojahn
  In chel di` si favelave...

 So we can have predefined options for e.g. wget or curl in wpkg.js,
 while preserving the possibility to use another tool.

...eg, a script (cmd suffices?!) that also check the MD5 of the file,
preventing wpkg tring to install ever an ever that corrupted installer.
;-)

This clearly needs an hash= or md5= field in download / tag.

-- 
dott. Marco Gaiarin GNUPG Key ID: 240A3D66
  Associazione ``La Nostra Famiglia''http://www.sv.lnf.it/
  Polo FVG  -  Via della Bontà, 7 - 33078  -  San Vito al Tagliamento (PN)
  marco.gaiarin(at)sv.lnf.it  tel +39-0434-842711  fax +39-0434-842797

Dona il 5 PER MILLE a LA NOSTRA FAMIGLIA!
   http://www.lanostrafamiglia.it/chi_siamo/5xmille.php
(cf 00307430132, categoria ONLUS oppure RICERCA SANITARIA)
-
wpkg-users mailing list archives  http://lists.wpkg.org/pipermail/wpkg-users/
___
wpkg-users mailing list
wpkg-users@lists.wpkg.org
http://lists.wpkg.org/mailman/listinfo/wpkg-users


Re: [wpkg-users] Replace xmlhttp download with curl/wget

2011-07-14 Thread heiko . helmle
  So we can have predefined options for e.g. wget or curl in wpkg.js,
  while preserving the possibility to use another tool.
 
 ...eg, a script (cmd suffices?!) that also check the MD5 of the file,
 preventing wpkg tring to install ever an ever that corrupted installer.
 ;-)
 
 This clearly needs an hash= or md5= field in download / tag.


Great idea! But this'll require another external tool, because hash 
calculation via WSH is a world of slow.-
wpkg-users mailing list archives  http://lists.wpkg.org/pipermail/wpkg-users/
___
wpkg-users mailing list
wpkg-users@lists.wpkg.org
http://lists.wpkg.org/mailman/listinfo/wpkg-users


Re: [wpkg-users] Replace xmlhttp download with curl/wget

2011-07-14 Thread Falko Trojahn

Am 14.07.2011 14:55, schrieb heiko.hel...@horiba.com:

So we can have predefined options for e.g. wget or curl in wpkg.js,
while preserving the possibility to use another tool.


...eg, a script (cmd suffices?!) that also check the MD5 of the file,
preventing wpkg tring to install ever an ever that corrupted installer.
;-)

This clearly needs an hash= or md5= field indownload /  tag.



Great idea! But this'll require another external tool, because hash
calculation via WSH is a world of slow.



Yes. BTW there is already a feature request for that:
http://bugzilla.wpkg.org/show_bug.cgi?id=195

Falko

-
wpkg-users mailing list archives  http://lists.wpkg.org/pipermail/wpkg-users/
___
wpkg-users mailing list
wpkg-users@lists.wpkg.org
http://lists.wpkg.org/mailman/listinfo/wpkg-users


Re: [wpkg-users] Replace xmlhttp download with curl/wget

2011-07-14 Thread Marco Gaiarin
Mandi! heiko.hel...@horiba.com
  In chel di` si favelave...

 Great idea! But this'll require another external tool, because hash 
 calculation
 via WSH is a world of slow.

I've speaked about a script exactly for that.

It is trivial in a CMD script to execute firstly curl/wget to download
files, check exit code and if '0', run 'md5 -c' as in:

http://www.fourmilab.ch/md5/

and do and 'exit 0' if and only if both retun zero.

-- 
dott. Marco Gaiarin GNUPG Key ID: 240A3D66
  Associazione ``La Nostra Famiglia''http://www.sv.lnf.it/
  Polo FVG  -  Via della Bontà, 7 - 33078  -  San Vito al Tagliamento (PN)
  marco.gaiarin(at)sv.lnf.it  tel +39-0434-842711  fax +39-0434-842797

Dona il 5 PER MILLE a LA NOSTRA FAMIGLIA!
   http://www.lanostrafamiglia.it/chi_siamo/5xmille.php
(cf 00307430132, categoria ONLUS oppure RICERCA SANITARIA)
-
wpkg-users mailing list archives  http://lists.wpkg.org/pipermail/wpkg-users/
___
wpkg-users mailing list
wpkg-users@lists.wpkg.org
http://lists.wpkg.org/mailman/listinfo/wpkg-users


Re: [wpkg-users] Replace xmlhttp download with curl/wget

2011-07-14 Thread Rainer Meier

Hi Marco,

On 14.07.2011 15:13, Marco Gaiarin wrote:

Mandi! heiko.hel...@horiba.com
   In chel di` si favelave...


Great idea! But this'll require another external tool, because hash calculation
via WSH is a world of slow.


I've speaked about a script exactly for that.

It is trivial in a CMD script to execute firstly curl/wget to download
files, check exit code and if '0', run 'md5 -c' as in:

http://www.fourmilab.ch/md5/

and do and 'exit 0' if and only if both retun zero.


Is there a reason this could not be done using existing commands?
At first look this request somehow looks like someone would use the download tag 
just to launch an external program or script with some parameters. This is done 
on install/upgrade/downgrade/remove if the download tag is used. But to execute 
commands there is already a tag: install /, upgrade /, remove / and 
downgrade /.


There is no requirement that these commands can only launch installers. In fact 
it's even the case that many packages use these commands to do preparation or 
post-install work. So simply calling a script with some parameters (e.g. 
download URL, download target, MD5-sum) the script could take care about 
downloading and checksumming the file. If anything fails it just returns an exit 
code different to 0 to indicate an error so WPKG will stop the installation.


I know that the download / tag is very limited but the reasons for it have 
been listed already in this discussion. But I am not sure if there is good 
reason to abuse the download tag just to invoke some external download tools 
when such a thing can be done already using existing functionality.


Well, probably I am just weary today but somebody might explain in detail why 
using existing commands is not an option or why the download tag would be much 
better to achieve this.


I agree that using a special download command flag would be possible too. I 
would then prefer to call a cmd script (included in wplkg distribution) with all 
required parameters like

downloader.cmd URL target MD5

So this script could handle download and verification as needed using any tool 
you like and any flags suitable for your environment (e.g. proxy flags).



Well, still I am not sure where the advantage over using this script as one of 
the first commands would be.


br,
Rainer
-
wpkg-users mailing list archives  http://lists.wpkg.org/pipermail/wpkg-users/
___
wpkg-users mailing list
wpkg-users@lists.wpkg.org
http://lists.wpkg.org/mailman/listinfo/wpkg-users


[wpkg-users] Thunderbird extensions

2011-07-14 Thread Donny Brooks

Hello all,

 I am trying to get my thunderbird extensions to install via wpkg. 
I finally got my firefox extensions to install but still cannot seem to 
get my thunderbird ones to install. As for firefox I only have done 
adblock+. On Thunderbird I am trying to install the sogo-integrator. 
Below you will find my configs for each.


It seems to copy the extension over to the machine but thunderbird never 
sees it and therefore does not install it. My Tools-- 
addons--extensions is empty in thunderbird. Anyone have an idea as to why?



adblock+:

?xml version=1.0 encoding=UTF-8?

packages

package
  id=firefox-adblock64
  name=Adblock+
  revision=%version%
  priority=18

variable name=version value=1.3.9 /
variable name=extid value={d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d} /

check
type=file
condition=exists
path=%PROGRAMFILES% (x86) (x86)\Mozilla 
Firefox\extensions\%extid%\chrome.manifest /


install cmd='%COMSPEC% /C xcopy /E /Y 
%SOFTWARE%\firefox\adblock\%version% %PROGRAMFILES% (x86)\Mozilla 
Firefox\extensions\%extid%\' /


upgrade cmd=taskkill /F /IM Firefox.exe
exit code=0 /
exit code=128 /
exit code=-1073741515 /
/upgrade
upgrade cmd='%COMSPEC% /C if exist %PROGRAMFILES% (x86)\Mozilla 
Firefox\extensions\%extid% rmdir /q /s %PROGRAMFILES% (x86)\Mozilla 
Firefox\extensions\%extid%' /
upgrade cmd='%COMSPEC% /C xcopy /E /Y 
%SOFTWARE%\firefox\adblock\%version% %PROGRAMFILES% (x86)\Mozilla 
Firefox\extensions\%extid%\' /


remove cmd=taskkill /F /IM Firefox.exe
exit code=0 /
exit code=128 /
exit code=-1073741515 /
/remove
remove cmd='%COMSPEC% /C if exist %PROGRAMFILES% (x86)\Mozilla 
Firefox\extensions\%extid% rmdir /q /s %PROGRAMFILES% (x86)\Mozilla 
Firefox\extensions\%extid%' /

/package

/packages


sogo-integrator:

?xml version=1.0 encoding=UTF-8?

packages

package
 id=sogo-integrator64
 name=SOGo integrator extension
 revision=2011.07.14.02
 reboot=false
 priority=18

check type=file condition=exists path=%PROGRAMFILES% (x86)\Mozilla 
Thunderbird\extensions\{3550f703-e582-4d05-9a08-453d09bdfdc6}\install.rdf 
/


install cmd='cmd.exe /C xcopy /Q /I /E /Y 
%SOFTWARE%\thunderbird\extensions\sogo-integrator\{3550f703-e582-4d05-9a08-453d09bdfdc6} 
%PROGRAMFILES% (x86)\Mozilla 
Thunderbird\extensions\{3550f703-e582-4d05-9a08-453d09bdfdc6}' /


upgrade cmd='cmd.exe /C xcopy /Q /I /E /Y 
%SOFTWARE%\thunderbird\extensions\sogo-integrator\{3550f703-e582-4d05-9a08-453d09bdfdc6} 
%PROGRAMFILES% (x86)\Mozilla 
Thunderbird\extensions\{3550f703-e582-4d05-9a08-453d09bdfdc6}' /


remove cmd='cmd.exe /C rmdir /S /Q %PROGRAMFILES% (x86)\Mozilla 
Thunderbird\extensions\{3550f703-e582-4d05-9a08-453d09bdfdc6}' /

/package

/packages
-
wpkg-users mailing list archives  http://lists.wpkg.org/pipermail/wpkg-users/
___
wpkg-users mailing list
wpkg-users@lists.wpkg.org
http://lists.wpkg.org/mailman/listinfo/wpkg-users


Re: [wpkg-users] Thunderbird extensions

2011-07-14 Thread John Danks
That's the same type of package definition I use for TB add-ons. I'd
double-check that you extracted the XPI correctly and see if it's
actually getting copied to the correct place.

sogo-integrator is not addons.mozilla.org and the link to it's website
from Freshmeat is 404, so maybe the add-on was not updated for the
version of TB you're using? Does it work if you install it manually?

On Thu, Jul 14, 2011 at 9:49 AM, Donny Brooks dbro...@mdah.state.ms.us wrote:
 Hello all,

     I am trying to get my thunderbird extensions to install via wpkg. I
 finally got my firefox extensions to install but still cannot seem to get my
 thunderbird ones to install. As for firefox I only have done adblock+. On
 Thunderbird I am trying to install the sogo-integrator. Below you will find
 my configs for each.

 It seems to copy the extension over to the machine but thunderbird never
 sees it and therefore does not install it. My Tools-- addons--extensions
 is empty in thunderbird. Anyone have an idea as to why?


 adblock+:

 ?xml version=1.0 encoding=UTF-8?

 packages

 package
  id=firefox-adblock64
  name=Adblock+
  revision=%version%
  priority=18

 variable name=version value=1.3.9 /
 variable name=extid value={d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d} /

 check
    type=file
    condition=exists
    path=%PROGRAMFILES% (x86) (x86)\Mozilla
 Firefox\extensions\%extid%\chrome.manifest /

 install cmd='%COMSPEC% /C xcopy /E /Y
 %SOFTWARE%\firefox\adblock\%version% %PROGRAMFILES% (x86)\Mozilla
 Firefox\extensions\%extid%\' /

 upgrade cmd=taskkill /F /IM Firefox.exe
 exit code=0 /
 exit code=128 /
 exit code=-1073741515 /
 /upgrade
 upgrade cmd='%COMSPEC% /C if exist %PROGRAMFILES% (x86)\Mozilla
 Firefox\extensions\%extid% rmdir /q /s %PROGRAMFILES% (x86)\Mozilla
 Firefox\extensions\%extid%' /
 upgrade cmd='%COMSPEC% /C xcopy /E /Y
 %SOFTWARE%\firefox\adblock\%version% %PROGRAMFILES% (x86)\Mozilla
 Firefox\extensions\%extid%\' /

 remove cmd=taskkill /F /IM Firefox.exe
 exit code=0 /
 exit code=128 /
 exit code=-1073741515 /
 /remove
 remove cmd='%COMSPEC% /C if exist %PROGRAMFILES% (x86)\Mozilla
 Firefox\extensions\%extid% rmdir /q /s %PROGRAMFILES% (x86)\Mozilla
 Firefox\extensions\%extid%' /
 /package

 /packages


 sogo-integrator:

 ?xml version=1.0 encoding=UTF-8?

 packages

 package
     id=sogo-integrator64
     name=SOGo integrator extension
     revision=2011.07.14.02
     reboot=false
     priority=18

 check type=file condition=exists path=%PROGRAMFILES% (x86)\Mozilla
 Thunderbird\extensions\{3550f703-e582-4d05-9a08-453d09bdfdc6}\install.rdf
 /

 install cmd='cmd.exe /C xcopy /Q /I /E /Y
 %SOFTWARE%\thunderbird\extensions\sogo-integrator\{3550f703-e582-4d05-9a08-453d09bdfdc6}
 %PROGRAMFILES% (x86)\Mozilla
 Thunderbird\extensions\{3550f703-e582-4d05-9a08-453d09bdfdc6}' /

 upgrade cmd='cmd.exe /C xcopy /Q /I /E /Y
 %SOFTWARE%\thunderbird\extensions\sogo-integrator\{3550f703-e582-4d05-9a08-453d09bdfdc6}
 %PROGRAMFILES% (x86)\Mozilla
 Thunderbird\extensions\{3550f703-e582-4d05-9a08-453d09bdfdc6}' /

 remove cmd='cmd.exe /C rmdir /S /Q %PROGRAMFILES% (x86)\Mozilla
 Thunderbird\extensions\{3550f703-e582-4d05-9a08-453d09bdfdc6}' /
 /package

 /packages
 -
 wpkg-users mailing list archives 
 http://lists.wpkg.org/pipermail/wpkg-users/
 ___
 wpkg-users mailing list
 wpkg-users@lists.wpkg.org
 http://lists.wpkg.org/mailman/listinfo/wpkg-users

-
wpkg-users mailing list archives  http://lists.wpkg.org/pipermail/wpkg-users/
___
wpkg-users mailing list
wpkg-users@lists.wpkg.org
http://lists.wpkg.org/mailman/listinfo/wpkg-users


Re: [wpkg-users] Thunderbird extensions

2011-07-14 Thread Donny Brooks

On 7/14/2011 12:02 PM, John Danks wrote:

That's the same type of package definition I use for TB add-ons. I'd
double-check that you extracted the XPI correctly and see if it's
actually getting copied to the correct place.

sogo-integrator is not addons.mozilla.org and the link to it's website
from Freshmeat is 404, so maybe the add-on was not updated for the
version of TB you're using? Does it work if you install it manually?

On Thu, Jul 14, 2011 at 9:49 AM, Donny Brooksdbro...@mdah.state.ms.us  wrote:

Hello all,

 I am trying to get my thunderbird extensions to install via wpkg. I
finally got my firefox extensions to install but still cannot seem to get my
thunderbird ones to install. As for firefox I only have done adblock+. On
Thunderbird I am trying to install the sogo-integrator. Below you will find
my configs for each.

It seems to copy the extension over to the machine but thunderbird never
sees it and therefore does not install it. My Tools--  addons--extensions
is empty in thunderbird. Anyone have an idea as to why?


adblock+:

?xml version=1.0 encoding=UTF-8?

packages

package
  id=firefox-adblock64
  name=Adblock+
  revision=%version%
  priority=18

variable name=version value=1.3.9 /
variable name=extid value={d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d} /

check
type=file
condition=exists
path=%PROGRAMFILES% (x86) (x86)\Mozilla
Firefox\extensions\%extid%\chrome.manifest /

install cmd='%COMSPEC% /C xcopy /E /Y
%SOFTWARE%\firefox\adblock\%version% %PROGRAMFILES% (x86)\Mozilla
Firefox\extensions\%extid%\' /

upgrade cmd=taskkill /F /IM Firefox.exe
exit code=0 /
exit code=128 /
exit code=-1073741515 /
/upgrade
upgrade cmd='%COMSPEC% /C if exist %PROGRAMFILES% (x86)\Mozilla
Firefox\extensions\%extid% rmdir /q /s %PROGRAMFILES% (x86)\Mozilla
Firefox\extensions\%extid%' /
upgrade cmd='%COMSPEC% /C xcopy /E /Y
%SOFTWARE%\firefox\adblock\%version% %PROGRAMFILES% (x86)\Mozilla
Firefox\extensions\%extid%\' /

remove cmd=taskkill /F /IM Firefox.exe
exit code=0 /
exit code=128 /
exit code=-1073741515 /
/remove
remove cmd='%COMSPEC% /C if exist %PROGRAMFILES% (x86)\Mozilla
Firefox\extensions\%extid% rmdir /q /s %PROGRAMFILES% (x86)\Mozilla
Firefox\extensions\%extid%' /
/package

/packages


sogo-integrator:

?xml version=1.0 encoding=UTF-8?

packages

package
 id=sogo-integrator64
 name=SOGo integrator extension
 revision=2011.07.14.02
 reboot=false
 priority=18

check type=file condition=exists path=%PROGRAMFILES% (x86)\Mozilla
Thunderbird\extensions\{3550f703-e582-4d05-9a08-453d09bdfdc6}\install.rdf
/

install cmd='cmd.exe /C xcopy /Q /I /E /Y
%SOFTWARE%\thunderbird\extensions\sogo-integrator\{3550f703-e582-4d05-9a08-453d09bdfdc6}
%PROGRAMFILES% (x86)\Mozilla
Thunderbird\extensions\{3550f703-e582-4d05-9a08-453d09bdfdc6}' /

upgrade cmd='cmd.exe /C xcopy /Q /I /E /Y
%SOFTWARE%\thunderbird\extensions\sogo-integrator\{3550f703-e582-4d05-9a08-453d09bdfdc6}
%PROGRAMFILES% (x86)\Mozilla
Thunderbird\extensions\{3550f703-e582-4d05-9a08-453d09bdfdc6}' /

remove cmd='cmd.exe /C rmdir /S /Q %PROGRAMFILES% (x86)\Mozilla
Thunderbird\extensions\{3550f703-e582-4d05-9a08-453d09bdfdc6}' /
/package

/packages
-
wpkg-users mailing list archives
http://lists.wpkg.org/pipermail/wpkg-users/
___
wpkg-users mailing list
wpkg-users@lists.wpkg.org
http://lists.wpkg.org/mailman/listinfo/wpkg-users

It does work if I install manually. I did upgrade to the latest one 
also. It does copy to the correct folder and I re-extracted the contents 
just in case. I am at a loss.Any ideas?

-
wpkg-users mailing list archives  http://lists.wpkg.org/pipermail/wpkg-users/
___
wpkg-users mailing list
wpkg-users@lists.wpkg.org
http://lists.wpkg.org/mailman/listinfo/wpkg-users


Re: [wpkg-users] Thunderbird extensions

2011-07-14 Thread Stefan Pendl
 
 On 7/14/2011 12:02 PM, John Danks wrote:
  That's the same type of package definition I use for TB add-ons. I'd
  double-check that you extracted the XPI correctly and see if it's
  actually getting copied to the correct place.
 
  sogo-integrator is not addons.mozilla.org and the link to 
 it's website
  from Freshmeat is 404, so maybe the add-on was not updated for the
  version of TB you're using? Does it work if you install it manually?
 
 It does work if I install manually. I did upgrade to the latest one 
 also. It does copy to the correct folder and I re-extracted 
 the contents 
 just in case. I am at a loss.Any ideas?

The latest release of Firefox does not extract all add-ons, just the ones which 
really need to.

I am currently installing AddBlockPlus by copying the XPI file to the 
extensions folder, that's all.

You should check if this can be done with the other add-on too.

It seems there is something going on in addition to extracting the add-on and 
this step is currently missing.

---
Stefan

-
wpkg-users mailing list archives  http://lists.wpkg.org/pipermail/wpkg-users/
___
wpkg-users mailing list
wpkg-users@lists.wpkg.org
http://lists.wpkg.org/mailman/listinfo/wpkg-users


[wpkg-users] [Bug 227] New: Add some updated packages and replace outdated Firefox

2011-07-14 Thread bugzilla-daemon
http://bugzilla.wpkg.org/show_bug.cgi?id=227

   Summary: Add some updated packages and replace outdated Firefox
   Product: WPKG
   Version: 1.1.3-RCx
  Platform: PC
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: P2
 Component: documentation
AssignedTo: man...@wpkg.org
ReportedBy: pendl2mega...@yahoo.de
 QAContact: wpkg-users@lists.wpkg.org


Attached find some updated packages using the latest features available.

Firefox and Thunderbird are really old, where I have not updated Thunderbird,
since I do not us it.

---
Stefan

-- 
Configure bugmail: http://bugzilla.wpkg.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the QA contact for the bug.
-
wpkg-users mailing list archives  http://lists.wpkg.org/pipermail/wpkg-users/
___
wpkg-users mailing list
wpkg-users@lists.wpkg.org
http://lists.wpkg.org/mailman/listinfo/wpkg-users


[wpkg-users] [Bug 227] Add some updated packages and replace outdated Firefox

2011-07-14 Thread bugzilla-daemon
http://bugzilla.wpkg.org/show_bug.cgi?id=227

--- Comment #1 from Stefan Pendl pendl2mega...@yahoo.de  ---
Created attachment 201
  -- http://bugzilla.wpkg.org/attachment.cgi?id=201
updated packages

-- 
Configure bugmail: http://bugzilla.wpkg.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the QA contact for the bug.
-
wpkg-users mailing list archives  http://lists.wpkg.org/pipermail/wpkg-users/
___
wpkg-users mailing list
wpkg-users@lists.wpkg.org
http://lists.wpkg.org/mailman/listinfo/wpkg-users


[wpkg-users] [Bug 228] Updated example profile

2011-07-14 Thread bugzilla-daemon
http://bugzilla.wpkg.org/show_bug.cgi?id=228

--- Comment #1 from Stefan Pendl pendl2mega...@yahoo.de  ---
Created attachment 202
  -- http://bugzilla.wpkg.org/attachment.cgi?id=202
updated profile to show OS filter

Might be worth to convert the encoding of all XML files to real UTF-8 instead
of ANSI as UTF-8.

-- 
Configure bugmail: http://bugzilla.wpkg.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the QA contact for the bug.
-
wpkg-users mailing list archives  http://lists.wpkg.org/pipermail/wpkg-users/
___
wpkg-users mailing list
wpkg-users@lists.wpkg.org
http://lists.wpkg.org/mailman/listinfo/wpkg-users


[wpkg-users] [Bug 228] Updated example profile

2011-07-14 Thread bugzilla-daemon
http://bugzilla.wpkg.org/show_bug.cgi?id=228

Rainer Meier r.me...@wpkg.org changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||r.me...@wpkg.org
 Resolution||FIXED

--- Comment #2 from Rainer Meier r.me...@wpkg.org  ---
Committed. To be included in next shipment:

MOD: Modified included sample packages for firefox and added adobe flash player
 example. The new packages give some more insight on new WPKG features
 as provided in WPKG-1.1.3.
 Fixes bug 227. Thanks to Stefan Pendl.
MOD: Modified included example profile to show os attribute.
 Fixes bug 228. Thanks to Stefan Pendl.

Thank you!

-- 
Configure bugmail: http://bugzilla.wpkg.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the QA contact for the bug.
-
wpkg-users mailing list archives  http://lists.wpkg.org/pipermail/wpkg-users/
___
wpkg-users mailing list
wpkg-users@lists.wpkg.org
http://lists.wpkg.org/mailman/listinfo/wpkg-users


[wpkg-users] [Bug 227] Add some updated packages and replace outdated Firefox

2011-07-14 Thread bugzilla-daemon
http://bugzilla.wpkg.org/show_bug.cgi?id=227

Rainer Meier r.me...@wpkg.org changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||r.me...@wpkg.org
 Resolution||FIXED

--- Comment #2 from Rainer Meier r.me...@wpkg.org  ---
Committed. To be included in next shipment:

MOD: Modified included sample packages for firefox and added adobe flash player
 example. The new packages give some more insight on new WPKG features
 as provided in WPKG-1.1.3.
 Fixes bug 227. Thanks to Stefan Pendl.
MOD: Modified included example profile to show os attribute.
 Fixes bug 228. Thanks to Stefan Pendl.

Thank you!

-- 
Configure bugmail: http://bugzilla.wpkg.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the QA contact for the bug.
-
wpkg-users mailing list archives  http://lists.wpkg.org/pipermail/wpkg-users/
___
wpkg-users mailing list
wpkg-users@lists.wpkg.org
http://lists.wpkg.org/mailman/listinfo/wpkg-users