Services de traduction

2008-01-23 Thread Proflingua.com - Solutions de traduction
Madame, Monsieur

Après consultation de la Chambre de Commerce et suite à leurs conseils, nous 
souhaitons vous présenter notre société via ce courriel et vous prions de 
transmettre ces informations à la personne ou service responsable.
Le groupe JMC Traductions est spécialisé dans la prestation de services de 
traduction technique, commerciale et scientifique dans toutes les langues 
européennes et dans les principales langues internationales.

Voici un aperçu de nos tarifs standard : 
Prix TTC langue cible, indiqués en Euros par mot source

Groupe de langues A
espagnol, italien, portugais
0,10 EUR / mot source

Groupe de langues B
anglais (UK et US), russe, ukrainien
0,115 EUR / mot source

Groupe de langues C
allemand, français, néerlandais, bulgare, estonien, hongrois, letton, 
lituanien, polonais, roumain, russe, serbo-croate, slovaque, slovène, tchèque
0,125 EUR / mot source

Groupe de langues D
danois, finnois, norvégien, suédois
0,16 EUR / mot source

Groupe de langues E :
arabe, chinois, coréen, grec, hébreu, japonais, thaï, turc, vietnamien
0,18 EUR / mot source


Nous traduisons pour vous tous les documents et textes de votre entreprise, des 
documents techniques de produits ou de sites Internet, à l'ensemble de la 
correspondance de votre société, en passant par vos documents juridiques et 
textes marketing ou financiers.

Toutes les traductions sont effectuées par des traducteurs diplômés travaillant 
uniquement dans leur domaine de spécialisation et vers leur langue maternelle. 
Elles sont ensuite vérifiées par un réviseur, lui aussi traducteur de 
profession.

Visitez notre site Internet à l'adresse proflingua.com/fr

Bien cordialement,

Anne Sophie Gourdon
JMC Traductions

Körnergasse 5/21
A-1020 Vienna
Tel: +43 664 9367 - 581
Fax: +43 664 4952 - 006


RE: Error with wget on AIX5.3

2008-01-23 Thread Hopkins, Scott
Micah,
Worked perfect.  Thanks for the help.  

Is there a section of the wiki for troubleshooting compiles that
I just can't find?  Should this information be recorded someplace
besides the mailing list archive?  I'd be happy to add it.

Scott

-Original Message-
From: Micah Cowan [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, January 16, 2008 3:53 PM
To: Hopkins, Scott
Cc: wget@sunsite.dk
Subject: Re: Error with wget on AIX5.3

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hopkins, Scott wrote:
 All,
 
 I recently compiled wget 1.10.2 on one of our AIX 5.3
 machines, and it appeared to compile fine, after disabling nls.  The
 binary appears to be intact, and actually appears to make connections
 out to remote sites to collect data.  However, when it attempts to
write
 to the response to disk, it generates the following error:
 
  
 
 Length: wget: strdup: Failed to allocate 1 bytes;
memory
 exhausted.
 
  
 
 Any thoughts? 

Hi Scott. Your mailer formats the plaintext portion of your mails rather
attrociously, you might look to that.

That message indicates that Wget passed strdup() an empty string (a
1-element char array consisting of just a zero-value byte). AIX is wrong
to fail in such a case: it's still useful to be able to duplicate such
strings.

You should be able to work around this by ensuring that config.h (which
is generated by the configure script) does not define HAVE_STRDUP; this
will cause Wget to use it's built-in strdup-alike behavior, thus
avoiding AIX's bug.

Please let us know if that fixes your problem.

- --
Micah J. Cowan
Programmer, musician, typesetting enthusiast, gamer...
http://micah.cowan.name/
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.7 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFHjnzY7M8hyUobTrERAqyGAJ0QLerJQtqyDHACvw8eRVTdk7mgCgCeNDtf
HuFOPFy91egSk5KVVQ8IhQ4=
=eRCO
-END PGP SIGNATURE-


Re: Error with wget on AIX5.3

2008-01-23 Thread Hrvoje Niksic
Hopkins, Scott [EMAIL PROTECTED] writes:

   Worked perfect.  Thanks for the help.

Actually, I find it surprising that AIX's strdup would have such a
bug, and that it would go undetected.  It is possible that the problem
lies elsewhere and that the change is just masking the real bug.
strdup can be easily tested with a program such as:

#include stdio.h
#include string.h

int main()
{
  const char *empty = ;
  printf(%p\n, strdup(empty));
  return 0;
}

Please compile the program with the compiler and compilation flags
that Wget uses.  If it prints zero, it's an AIX strdup problem;
otherwise, the problem is probably somewhere else.


RE: Error with wget on AIX5.3

2008-01-23 Thread Hopkins, Scott
Interesting.  Compiled that code and I get the following when running
the resulting binary. 

/var/opt/prj/wget$ strdup_test
20001448

I appear to have a functioning wget binary with the strdup change to
config.h, but I'm curious what you think the other causes of this
problem could be.


Re: Error with wget on AIX5.3

2008-01-23 Thread Hrvoje Niksic
Hopkins, Scott [EMAIL PROTECTED] writes:

 Interesting.  Compiled that code and I get the following when running
 the resulting binary. 

   /var/opt/prj/wget$ strdup_test
   20001448

As I suspected.  Such an obvious strdup bug would likely have been
detected sooner.

 I appear to have a functioning wget binary with the strdup change to
 config.h, but I'm curious what you think the other causes of this
 problem could be.

Hard to tell.  Some crashes, especially those resulting from memory
corruption bugs, can disappear when you change *anything* about the
build.  Of course, they tend to reappear later as well.  If you're
curious about debugging this, you can compile Wget with DEBUG_MALLOC
defined, which will at least catch some obvious errors, such as double
free.  Even better would be to run Wget under a real memory debugger
such as valgrind or purify, but I don't know if you have access to one
under AIX.


Skip certain includes

2008-01-23 Thread Wayne Connolly
Hi,
I am using wget on php pages to mirror dynamic mysql/php pages from a staging 
server to a non-dynamic production server.

Ie: 
Staging Server A = Dynamic php/mysql
Production Server B = Flat rendered HTML in the form of *.php

There are some includes that i wish to remain dynamic -  can you skip certain 
includes - so these still get processed  by the server on the mirrored site 
whilst flattening the rest of the original dynamic content?

Ie. 
Server A
SomePage.php

//begin
 page
?php
include(1.php);
include(2.php);- i dont want this flattened i want it processed 
on prod Server B
include(3.php);
php?
//end page


Server B

SomePage.php



//begin page
htmlbody   - this came from include(1.php);

?php
include(2.php);
php?
/body/html  - this came from include(3.php);
//end page

Cheers,
Wayne 










  

Looking for last minute shopping deals?  
Find them fast with Yahoo! Search.  
http://tools.search.yahoo.com/newsearch/category.php?category=shopping

Re: Skip certain includes

2008-01-23 Thread Micah Cowan
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Wayne Connolly wrote:
 Hi,
 
 I am using wget on php pages to mirror dynamic mysql/php pages from a
 staging server to a non-dynamic production server.
 
 Ie:
 Staging Server A = Dynamic php/mysql
 Production Server B = Flat rendered HTML in the form of *.php
 
 There are some includes that i wish to remain dynamic -  can you skip
 certain includes - so these still get processed  by the server on the
 mirrored site whilst flattening the rest of the original dynamic content?

Hi Wayne,

As I've already mentioned on IRC, this question really has nothing to do
with Wget.

Wget doesn't process PHP code or includes at all: it's done entirely by
the server. Whatever you do will have to be done on the server end. And,
as twb and I also mentioned, using Wget to try to fetch unprocessed or
partially processed pages through the HTTP server (running PHP) seems
like the wrong way to do it.

- --
Micah J. Cowan
Programmer, musician, typesetting enthusiast, gamer...
http://micah.cowan.name/
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFHmCBr7M8hyUobTrERAkDAAJ9nXeIaiT55B8a54a4wM0Zk7CVy7QCfS6/6
EV9c8O/IUUw+J375thlsYzU=
=Hmq9
-END PGP SIGNATURE-


Re: Skip certain includes

2008-01-23 Thread Wayne Connolly
Micah,

Thanks mate- i know we chatted on IRC but just thought someone else may be able 
to provide some insight.

Cheers and thanks,
Wayne

- Original Message 
From: Micah Cowan [EMAIL PROTECTED]
To: Wayne Connolly [EMAIL PROTECTED]
Cc: wget@sunsite.dk
Sent: Thursday, January 24, 2008 4:21:48 PM
Subject: Re: Skip certain includes


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Wayne Connolly wrote:
 Hi,
 
 I am using wget on php pages to mirror dynamic mysql/php pages from a
 staging server to a non-dynamic production server.
 
 Ie:
 Staging Server A = Dynamic php/mysql
 Production Server B = Flat rendered HTML in the form of *.php
 
 There are some includes that i wish to remain dynamic -  can you skip
 certain includes - so these still get processed  by the server on the
 mirrored site whilst flattening the rest of the original dynamic
 content?

Hi Wayne,

As I've already mentioned on IRC, this question really has nothing to
 do
with Wget.

Wget doesn't process PHP code or includes at all: it's done entirely by
the server. Whatever you do will have to be done on the server end.
 And,
as twb and I also mentioned, using Wget to try to fetch unprocessed or
partially processed pages through the HTTP server (running PHP) seems
like the wrong way to do it.

- --
Micah J. Cowan
Programmer, musician, typesetting enthusiast, gamer...
http://micah.cowan.name/
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFHmCBr7M8hyUobTrERAkDAAJ9nXeIaiT55B8a54a4wM0Zk7CVy7QCfS6/6
EV9c8O/IUUw+J375thlsYzU=
=Hmq9
-END PGP SIGNATURE-






  

Looking for last minute shopping deals?  
Find them fast with Yahoo! Search.  
http://tools.search.yahoo.com/newsearch/category.php?category=shopping