Script de téléchargement

Résolu/Fermé
Agirl Messages postés 20 Date d'inscription mardi 30 novembre 2010 Statut Membre Dernière intervention 30 novembre 2010 - 30 nov. 2010 à 09:14
 Agirl - 3 déc. 2010 à 11:35
Bonjour,



Je suis nouvelle et j'ai besoin de votre aide.
je veux créer un script shell qui permet de chercher et télécharger les dernières versions disponibles à partir d'un site.
pour se connecter j'ai utiliser:

wget http://url

Le problème c'est comment détecter le dernier lien de téléchargement disponible et le passer à cette commande. En fait il y a à chaque fois une nouvelle release. Donc le lien change.

merci beaucoup pour votre aide.
A voir également:

21 réponses

zipe31 Messages postés 36402 Date d'inscription dimanche 7 novembre 2010 Statut Contributeur Dernière intervention 27 janvier 2021 6 407
30 nov. 2010 à 09:23
Salut,

Difficile de t'aider sans avoir tous les paramètres en main et surtout comment se présente les informations sur la page... ;-\

Mais bon, à priori, en faisant une 1ère requête (en mode html) et en ciblant les URL (avec "grep" par exemple) et en extrayant dans une variable la release qu'il faut, ensuite il suffit de passer cette variable sur la requête de téléchargement...

;-))
0
Agirl Messages postés 20 Date d'inscription mardi 30 novembre 2010 Statut Membre Dernière intervention 30 novembre 2010
30 nov. 2010 à 09:33
Merci pour votre aide.
Pouvez vous m'aider un peu plus sur ça.
Comment utiliser grep et parser le résultat.

par exemple:
l'adresse paquetage est de la forme le cas le plus simple:
$date=date_today.
A chaque jour j'en ai un seul paquetage
je veux me baser sur cet information pour chercher le paquetage.
Dond comment utiliser le grep et parser le résultat.
grep http://mon-site/

pour les autres cas je dois chercher le numéro de version le plus elevé
0
zipe31 Messages postés 36402 Date d'inscription dimanche 7 novembre 2010 Statut Contributeur Dernière intervention 27 janvier 2021 6 407
30 nov. 2010 à 09:35
Re-

Avec l'URL du site et ce que tu veux vraiment récupérer ce serait beaucoup plus simple ;-\
0
Agirl Messages postés 20 Date d'inscription mardi 30 novembre 2010 Statut Membre Dernière intervention 30 novembre 2010
30 nov. 2010 à 09:47
C'est un site interne donc inaccesible ailleur.
Vous voulez jetter un coup d'oeil sur le code html.
lea adresses que je donne à ma commande wget sont sous la forme

https://mon-site/file/download.php/1841/22611/p3258_r13449/paquetage.zip</code>


donc pour chaque paquetaget.zip je veux chercher la dernière version

C'est clair ou pas encore
0
zipe31 Messages postés 36402 Date d'inscription dimanche 7 novembre 2010 Statut Contributeur Dernière intervention 27 janvier 2021 6 407
30 nov. 2010 à 10:03
Ce qu'il faudrait savoir c'est comment se présente la page où se trouve le paquetage ;-\

Sous forme de listing genre FTP ? Autre ?
0
Agirl Messages postés 20 Date d'inscription mardi 30 novembre 2010 Statut Membre Dernière intervention 30 novembre 2010
30 nov. 2010 à 10:07
form http
0
zipe31 Messages postés 36402 Date d'inscription dimanche 7 novembre 2010 Statut Contributeur Dernière intervention 27 janvier 2021 6 407
30 nov. 2010 à 10:21
As-tu w3m, curl, lynx ou links d'installer ?
0

Vous n’avez pas trouvé la réponse que vous recherchez ?

Posez votre question
Agirl Messages postés 20 Date d'inscription mardi 30 novembre 2010 Statut Membre Dernière intervention 30 novembre 2010
30 nov. 2010 à 10:28
curl est installé.
Comment pourrais-je l'utiliser?

merci beaucoup
0
zipe31 Messages postés 36402 Date d'inscription dimanche 7 novembre 2010 Statut Contributeur Dernière intervention 27 janvier 2021 6 407
30 nov. 2010 à 10:37
Oups désolé, je ne me rappelais plus que curl ne peut pas afficher le contenu en html* ;-((

Peux-tu installer w3m ?

* L'idée c'est d'afficher sur la sortie standard la page telle qu'elle apparait dans un navigateur et de parser les fichier "*.zip"
0
zipe31 Messages postés 36402 Date d'inscription dimanche 7 novembre 2010 Statut Contributeur Dernière intervention 27 janvier 2021 6 407
30 nov. 2010 à 11:05
Dis-moi ce que te retourne une commande comme :

wget -O - https://mon-site/file/download.php/1841/22611/p3258_r13449/ | grep - o '"*.zip"'
0
Agirl Messages postés 20 Date d'inscription mardi 30 novembre 2010 Statut Membre Dernière intervention 30 novembre 2010
30 nov. 2010 à 11:17
voici le résultat de cette commande:

--10:25:32-- https://mon-site/file/download.php/1841/22611/p3258_r13449/
=> '-'
Resolving mon-site... 193.106.104.181
Connecting to mon-site|193.106.104.181|:443... connected.
WARNING: Certificate verification error for mon-site: unable to get local issuer certificate
HTTP request sent, awaiting response... 200 OK
Length: 2,865,691 (2.7M) [application/octet-stream]

100%[============================================================================>] 2,865,691 1.32M/s

10:25:34 (1.32 MB/s) - '-' saved [2865691/2865691]

c'est quoi le problème
0
zipe31 Messages postés 36402 Date d'inscription dimanche 7 novembre 2010 Statut Contributeur Dernière intervention 27 janvier 2021 6 407
30 nov. 2010 à 11:25
WARNING: Certificate verification error for mon-site: unable to get local issuer certificate
Un problème de droit et de certificat apparemment, du moins au niveau du répertoire ;-((

D'habitude tu récupères ton fichier avec la même commande ?
0
Agirl Messages postés 20 Date d'inscription mardi 30 novembre 2010 Statut Membre Dernière intervention 30 novembre 2010
30 nov. 2010 à 11:27
oui.

Je viens de tapper la commande comme suit en enlevent (-) aprés -O

wget -O https://mon-site/file/download.php/1841/22611/p3258_r13449/ | grep - o '"*.zip"'

=> le rsultat null (-bash-3.00$ )
0
zipe31 Messages postés 36402 Date d'inscription dimanche 7 novembre 2010 Statut Contributeur Dernière intervention 27 janvier 2021 6 407
30 nov. 2010 à 11:30
Le "-" sert justement à envoyer le résultat sur la sortie standard afin de pouvoir parser celle-ci ;-((

Essaie alors d'envoyer la sortie dans un fichier :

wget -o fich https://mon-site/file/download.php/1841/22611/p3258_r13449/
0
zipe31 Messages postés 36402 Date d'inscription dimanche 7 novembre 2010 Statut Contributeur Dernière intervention 27 janvier 2021 6 407
30 nov. 2010 à 11:36
Oups "-O" et non pas "-o" ;-((

wget -O fich https://mon-site/file/download.php/1841/22611/p3258_r13449/
0
Agirl Messages postés 20 Date d'inscription mardi 30 novembre 2010 Statut Membre Dernière intervention 30 novembre 2010
30 nov. 2010 à 11:43
oui ça commence à se résoudre.
je recupère un fichier qui contient le code source de la page de téléchargement.
Dans ce page existe les liens cherchés.

je veux récupérer le premier qui se trouve parce que ça repésente le plus récent.
par exemple j'ai ça:
<TR id="p_3258r_13498f_22700" class="boxitem"><TD><B><A HREF="/file/download.php/1841/22700/p3258_r13498/paquetage.zip" title="22700 - paquetage.zip">paquetage.zip</A></B></TD><TD>2,798</TD><TD>14</TD><TD>Other</TD><TD>Other</TD><TD>2010-11-26</TD></TR>

Comment parcourir ce fichier et récupéré /file/download.php/1841/22700/p3258_r13498/paquetage.zip et comme ça je peux construire mon path de téléchargement voulu.

je dois chercher la première phrase qui est composée sous cette forme /file/download.php/num/num/pnum_rnum/paquetage.zip

merci énormément pour votre aide.
0
zipe31 Messages postés 36402 Date d'inscription dimanche 7 novembre 2010 Statut Contributeur Dernière intervention 27 janvier 2021 6 407
30 nov. 2010 à 11:48
Essaye avec ça :

 egrep -o -m 1 '/file[^"]*' fichier


Si ça ne marche pas, il me faudra un exemple plus long de ton fichier ;-\
0
Agirl Messages postés 20 Date d'inscription mardi 30 novembre 2010 Statut Membre Dernière intervention 30 novembre 2010
30 nov. 2010 à 11:51
le résultat est ça:
/file/showfiles.php?group_id=1841

=> ça ne marche pas

je ne sais pas comment vous joindre le fichier avcec ce message.
0
zipe31 Messages postés 36402 Date d'inscription dimanche 7 novembre 2010 Statut Contributeur Dernière intervention 27 janvier 2021 6 407
30 nov. 2010 à 11:53
Modifies comme suit :

egrep -o -m 1 '/file[^"]*zip' fichier
0
Agirl Messages postés 20 Date d'inscription mardi 30 novembre 2010 Statut Membre Dernière intervention 30 novembre 2010
30 nov. 2010 à 11:58
parfait ça marche pour le premier paquetage.
J'ai plusieurs paquetages que je dois chercher leurs dernières versions.
par exemple toto.zip
titi.zip

chaque ensemble est organisé par projet.
- projet1_name
-Toto.zip
-toto.zip
-projet2_name
-Titi.zip
Titi.zip
je dois trouver le dernier release pour toto et de même pour titi
je dois prendre le premier toto et le premier titi

merci
0
zipe31 Messages postés 36402 Date d'inscription dimanche 7 novembre 2010 Statut Contributeur Dernière intervention 27 janvier 2021 6 407
30 nov. 2010 à 12:02
Que retourne exactement la commande (fais un copier/coller de la liste qui en résultera) :

egrep -o  '/file[^"]*zip' fichier
0
Agirl Messages postés 20 Date d'inscription mardi 30 novembre 2010 Statut Membre Dernière intervention 30 novembre 2010
30 nov. 2010 à 12:58
voici le résultat:

/file/download.php/1841/22700/p3258_r13498/com.st.st40.microtoolset.updatesite.zip
/file/download.php/1841/22611/p3258_r13449/com.st.st40.microtoolset.updatesite.zip
/file/download.php/1841/22317/p3258_r13303/com.st.st40.microtoolset.updatesite.zip
/file/download.php/1841/20666/p3258_r12453/com.st.st40.microtoolset.updatesite.zip
/file/download.php/1841/20391/p3258_r12326/com.st.st40.microtoolset.updatesite.zip
/file/download.php/1841/20325/p3258_r12288/com.st.st40.microtoolset.updatesite.zip
/file/download.php/1841/20308/p3258_r12282/com.st.st40.microtoolset.updatesite.zip
/file/download.php/1841/20293/p3258_r12271/com.st.st40.microtoolset.updatesite.zip
/file/download.php/1841/20238/p3258_r12243/com.st.st40.microtoolset.updatesite.zip
/file/download.php/1841/20223/p3258_r12236/com.st.st40.microtoolset.updatesite.zip
/file/download.php/1841/20093/p3258_r12164/com.st.st40.microtoolset.updatesite.zip
/file/download.php/1841/22701/p3259_r13499/com.st.st200.microtoolset.updatesite.zip
/file/download.php/1841/22295/p3259_r13291/com.st.st200.microtoolset.updatesite.zip
/file/download.php/1841/20942/p3259_r12594/com.st.st200.microtoolset.updatesite.zip
/file/download.php/1841/20731/p3259_r12485/com.st.st200.microtoolset.updatesite.zip
/file/download.php/1841/20583/p3259_r12423/com.st.st200.microtoolset.updatesite.zip
/file/download.php/1841/20550/p3259_r12406/com.st.st200.microtoolset.updatesite.zip
/file/download.php/1841/20388/p3259_r12325/com.st.st200.microtoolset.updatesite.zip
/file/download.php/1841/20290/p3259_r12269/com.st.st200.microtoolset.updatesite.zip
/file/download.php/1841/20239/p3259_r12244/com.st.st200.microtoolset.updatesite.zip
/file/download.php/1841/20091/p3259_r12162/com.st.st200.microtoolset.updatesite.zip
/file/download.php/1841/20086/p3259_r12155/com.st.st200.microtoolset.updatesite.zip
/file/download.php/1841/19681/p3259_r11994/com.st.st200.microtoolset.updatesite.zip
/file/download.php/1841/19674/p3259_r11989/com.st.st200.microtoolset.updatesite.zip
/file/download.php/1841/22665/p3266_r13474/com.st.st40.systemanalysis.updatesite.5.2.0.20101125.zip
/file/download.php/1841/22666/p3266_r13474/com.st.st200.systemanalysis.updatesite.5.2.0.20101125.zip
/file/download.php/1841/22667/p3266_r13474/com.st.stlinux.systemanalysis.updatesite.5.2.0.20101125.zip
/file/download.php/1841/22668/p3266_r13474/com.st.stlinux.systemanalysis.windows.updatesite.5.2.0.20101125.zip
/file/download.php/1841/22615/p3266_r13453/com.st.st40.systemanalysis.updatesite.5.2.0.20101122.zip
/file/download.php/1841/22616/p3266_r13453/com.st.stlinux.systemanalysis.updatesite.5.2.0.20101122.zip
/file/download.php/1841/22617/p3266_r13453/com.st.st200.systemanalysis.updatesite.5.2.0.20101122.zip
/file/download.php/1841/22618/p3266_r13453/com.st.stlinux.systemanalysis.windows.updatesite.5.2.0.20101122.zip
/file/download.php/1841/22619/p3266_r13453/exampleScripts.zip
/file/download.php/1841/22069/p3266_r13199/com.st.st200.systemanalysis.updatesite.5.2.0.20101028.zip
/file/download.php/1841/22070/p3266_r13199/com.st.st40.systemanalysis.updatesite.5.2.0.20101028.zip
/file/download.php/1841/22071/p3266_r13199/com.st.stlinux.systemanalysis.updatesite.5.2.0.20101028.zip
/file/download.php/1841/22072/p3266_r13199/com.st.stlinux.systemanalysis.windows.updatesite.5.2.0.20101028.zip
/file/download.php/1841/21637/p3266_r13008/com.st.st200.systemanalysis.updatesite.5.2.0.20101008.zip
/file/download.php/1841/21638/p3266_r13008/com.st.st40.systemanalysis.updatesite.5.2.0.20101008.zip
/file/download.php/1841/21639/p3266_r13008/com.st.stlinux.systemanalysis.updatesite.5.2.0.20101008.zip
/file/download.php/1841/21640/p3266_r13008/com.st.stlinux.systemanalysis.windows.updatesite.5.2.0.20101008.zip
/file/download.php/1841/21563/p3266_r12944/com.st.st200.systemanalysis.updatesite.5.2.0.201010051603.zip
/file/download.php/1841/21564/p3266_r12944/com.st.st40.systemanalysis.updatesite.5.2.0.201010051602.zip
/file/download.php/1841/21565/p3266_r12944/com.st.stlinux.systemanalysis.updatesite.5.2.0.201010051603.zip
/file/download.php/1841/21566/p3266_r12944/com.st.stlinux.systemanalysis.windows.updatesite.5.2.0.201010051603.zip
/file/download.php/1841/21384/p3266_r12839/com.st.st200.systemanalysis.updatesite.5.2.0.201009232309.zip
/file/download.php/1841/21385/p3266_r12839/com.st.st40.systemanalysis.updatesite.5.2.0.201009232309.zip
/file/download.php/1841/21386/p3266_r12839/com.st.stlinux.systemanalysis.updatesite.5.2.0.201009232310.zip
/file/download.php/1841/21387/p3266_r12839/com.st.stlinux.systemanalysis.windows.updatesite.5.2.0.201009232310.zip
/file/download.php/1841/21340/p3266_r12822/com.st.st200.systemanalysis.updatesite.5.1.0.201009202309.zip
/file/download.php/1841/21341/p3266_r12822/com.st.st40.systemanalysis.updatesite.5.1.0.201009202309.zip
/file/download.php/1841/21342/p3266_r12822/com.st.stlinux.systemanalysis.updatesite.5.1.0.201009202309.zip
/file/download.php/1841/21343/p3266_r12822/com.st.stlinux.systemanalysis.windows.updatesite.5.1.0.201009202309.zip
/file/download.php/1841/20752/p3266_r12498/com.st.st40.systemanalysis.updatesite.5.1.0.201007280952.zip
/file/download.php/1841/20753/p3266_r12498/com.st.st200.systemanalysis.updatesite.5.1.0.201007280952.zip
/file/download.php/1841/20754/p3266_r12498/com.st.stlinux.systemanalysis.updatesite.5.1.0.201007280953.zip
/file/download.php/1841/20755/p3266_r12498/com.st.stlinux.systemanalysis.windows.updatesite.5.1.0.201007280953.zip
/file/download.php/1841/20709/p3266_r12474/com.st.st40.systemanalysis.updatesite.5.1.0.201007231315.zip
/file/download.php/1841/20710/p3266_r12474/com.st.st200.systemanalysis.updatesite.5.1.0.201007231315.zip
/file/download.php/1841/20711/p3266_r12474/com.st.stlinux.systemanalysis.updatesite.5.1.0.201007231316.zip
/file/download.php/1841/20712/p3266_r12474/com.st.stlinux.systemanalysis.windows.updatesite.5.1.0.201007231316.zip
/file/download.php/1841/20631/p3266_r12438/com.st.st40.systemanalysis.updatesite.5.1.0.201007192310.zip
/file/download.php/1841/20632/p3266_r12438/com.st.st200.systemanalysis.updatesite.5.1.0.201007192310.zip
/file/download.php/1841/20633/p3266_r12438/com.st.stlinux.systemanalysis.updatesite.5.1.0.201007192311.zip
/file/download.php/1841/20634/p3266_r12438/com.st.stlinux.systemanalysis.windows.updatesite.5.1.0.201007192311.zip
/file/download.php/1841/20503/p3266_r12381/com.st.st40.systemanalysis.updatesite.5.1.0.201007131522.zip
/file/download.php/1841/20504/p3266_r12381/com.st.st200.systemanalysis.updatesite.5.1.0.201007131522.zip
/file/download.php/1841/20505/p3266_r12381/com.st.stlinux.systemanalysis.updatesite.5.1.0.201007131523.zip
/file/download.php/1841/20506/p3266_r12381/com.st.stlinux.systemanalysis.windows.updatesite.5.1.0.201007131523.zip
/file/download.php/1841/20363/p3266_r12311/com.st.st40.systemanalysis.updatesite.5.1.0.201007061436.zip
/file/download.php/1841/20364/p3266_r12311/com.st.st200.systemanalysis.updatesite.5.1.0.201007061436.zip
/file/download.php/1841/20365/p3266_r12311/com.st.stlinux.systemanalysis.windows.updatesite.5.1.0.201007061437.zip
/file/download.php/1841/20366/p3266_r12311/com.st.stlinux.systemanalysis.updatesite.5.1.0.201007061437.zip
/file/download.php/1841/20286/p3266_r12268/com.st.st200.systemanalysis.updatesite.5.1.0.201006291108.zip
/file/download.php/1841/20287/p3266_r12268/com.st.st40.systemanalysis.updatesite.5.1.0.201006291108.zip
/file/download.php/1841/20288/p3266_r12268/com.st.stlinux.systemanalysis.updatesite.5.1.0.201006291109.zip
/file/download.php/1841/20289/p3266_r12268/com.st.stlinux.systemanalysis.windows.updatesite.5.1.0.201006291109.zip
/file/download.php/1841/20269/p3266_r12260/com.st.st200.systemanalysis.updatesite.5.1.0.201006282310.zip
/file/download.php/1841/20270/p3266_r12260/com.st.st40.systemanalysis.updatesite.5.1.0.201006282309.zip
/file/download.php/1841/20271/p3266_r12260/com.st.stlinux.systemanalysis.updatesite.5.1.0.201006282310.zip
/file/download.php/1841/20272/p3266_r12260/com.st.stlinux.systemanalysis.windows.updatesite.5.1.0.201006282310.zip
/file/download.php/1841/20216/p3266_r12233/com.st.st200.systemanalysis.updatesite.5.1.0.201006232310.zip
/file/download.php/1841/20217/p3266_r12233/com.st.st40.systemanalysis.updatesite.5.1.0.201006232310.zip
/file/download.php/1841/20218/p3266_r12233/com.st.stlinux.systemanalysis.updatesite.5.1.0.201006232312.zip
/file/download.php/1841/20219/p3266_r12233/com.st.stlinux.systemanalysis.windows.updatesite.5.1.0.201006232312.zip
/file/download.php/1841/20094/p3266_r12165/com.st.st40.systemanalysis.updatesite.5.1.0.201006171028.zip
/file/download.php/1841/20095/p3266_r12165/com.st.st200.systemanalysis.updatesite.5.1.0.201006171028.zip
/file/download.php/1841/20096/p3266_r12165/com.st.stlinux.systemanalysis.updatesite.5.1.0.201006171029.zip
/file/download.php/1841/20097/p3266_r12165/com.st.stlinux.systemanalysis.windows.updatesite.5.1.0.201006171029.zip
/file/download.php/1841/20050/p3266_r12135/com.st.st40.systemanalysis.updatesite.5.0.0.201006151011.zip
/file/download.php/1841/20051/p3266_r12135/com.st.st200.systemanalysis.updatesite.5.0.0.201006151011.zip
/file/download.php/1841/20052/p3266_r12135/com.st.stlinux.systemanalysis.updatesite.5.0.0.201006151012.zip
/file/download.php/1841/20053/p3266_r12135/com.st.stlinux.systemanalysis.windows.updatesite.5.0.0.201006151012.zip
/file/download.php/1841/22441/p3262_r13361/com.st.stlinux.updatesite.base.zip

=> toutes les paquetages et non les plus récents.

merci
0
zipe31 Messages postés 36402 Date d'inscription dimanche 7 novembre 2010 Statut Contributeur Dernière intervention 27 janvier 2021 6 407
Modifié par zipe31 le 30/11/2010 à 13:07
Ok, mais on est sensé récupérer quoi exactement là-dedans ??? ;-\

Peux-tu mettre en gras les lignes sensées être récupérées s'il te plait, merci ;-)
0
Agirl Messages postés 20 Date d'inscription mardi 30 novembre 2010 Statut Membre Dernière intervention 30 novembre 2010
30 nov. 2010 à 13:11
C'est à moi de vous remercier.
désolée, voici les paquetages qui doivent être récupéré.
/file/download.php/1841/22700/p3258_r13498/com.st.st40.microtoolset.updatesite.zip
/file/download.php/1841/22611/p3258_r13449/com.st.st40.microtoolset.updatesite.zip
/file/download.php/1841/22317/p3258_r13303/com.st.st40.microtoolset.updatesite.zip
/file/download.php/1841/20666/p3258_r12453/com.st.st40.microtoolset.updatesite.zip
/file/download.php/1841/20391/p3258_r12326/com.st.st40.microtoolset.updatesite.zip
/file/download.php/1841/20325/p3258_r12288/com.st.st40.microtoolset.updatesite.zip
/file/download.php/1841/20308/p3258_r12282/com.st.st40.microtoolset.updatesite.zip
/file/download.php/1841/20293/p3258_r12271/com.st.st40.microtoolset.updatesite.zip
/file/download.php/1841/20238/p3258_r12243/com.st.st40.microtoolset.updatesite.zip
/file/download.php/1841/20223/p3258_r12236/com.st.st40.microtoolset.updatesite.zip
/file/download.php/1841/20093/p3258_r12164/com.st.st40.microtoolset.updatesite.zip
/file/download.php/1841/22701/p3259_r13499/com.st.st200.microtoolset.updatesite.zip
/file/download.php/1841/22295/p3259_r13291/com.st.st200.microtoolset.updatesite.zip
/file/download.php/1841/20942/p3259_r12594/com.st.st200.microtoolset.updatesite.zip
/file/download.php/1841/20731/p3259_r12485/com.st.st200.microtoolset.updatesite.zip
/file/download.php/1841/20583/p3259_r12423/com.st.st200.microtoolset.updatesite.zip
/file/download.php/1841/20550/p3259_r12406/com.st.st200.microtoolset.updatesite.zip
/file/download.php/1841/20388/p3259_r12325/com.st.st200.microtoolset.updatesite.zip
/file/download.php/1841/20290/p3259_r12269/com.st.st200.microtoolset.updatesite.zip
/file/download.php/1841/20239/p3259_r12244/com.st.st200.microtoolset.updatesite.zip
/file/download.php/1841/20091/p3259_r12162/com.st.st200.microtoolset.updatesite.zip
/file/download.php/1841/20086/p3259_r12155/com.st.st200.microtoolset.updatesite.zip
/file/download.php/1841/19681/p3259_r11994/com.st.st200.microtoolset.updatesite.zip
/file/download.php/1841/19674/p3259_r11989/com.st.st200.microtoolset.updatesite.zip
/file/download.php/1841/22665/p3266_r13474/com.st.st40.systemanalysis.updatesite.5.2.0.20101125.zip
/file/download.php/1841/22666/p3266_r13474/com.st.st200.systemanalysis.updatesite.5.2.0.20101125.zip
/file/download.php/1841/22667/p3266_r13474/com.st.stlinux.systemanalysis.updatesite.5.2.0.20101125.zip
/file/download.php/1841/22668/p3266_r13474/com.st.stlinux.systemanalysis.windows.updatesite.5.2.0.20101125.zip
/file/download.php/1841/22615/p3266_r13453
/com.st.st40.systemanalysis.updatesite.5.2.0.20101122.zip
/file/download.php/1841/22616/p3266_r13453/com.st.stlinux.systemanalysis.updatesite.5.2.0.20101122.zip
/file/download.php/1841/22617/p3266_r13453/com.st.st200.systemanalysis.updatesite.5.2.0.20101122.zip
/file/download.php/1841/22618/p3266_r13453/com.st.stlinux.systemanalysis.windows.updatesite.5.2.0.20101122.zip
/file/download.php/1841/22619/p3266_r13453/exampleScripts.zip
/file/download.php/1841/22069/p3266_r13199/com.st.st200.systemanalysis.updatesite.5.2.0.20101028.zip
/file/download.php/1841/22070/p3266_r13199/com.st.st40.systemanalysis.updatesite.5.2.0.20101028.zip
/file/download.php/1841/22071/p3266_r13199/com.st.stlinux.systemanalysis.updatesite.5.2.0.20101028.zip
/file/download.php/1841/22072/p3266_r13199/com.st.stlinux.systemanalysis.windows.updatesite.5.2.0.20101028.zip
/file/download.php/1841/21637/p3266_r13008/com.st.st200.systemanalysis.updatesite.5.2.0.20101008.zip
/file/download.php/1841/21638/p3266_r13008/com.st.st40.systemanalysis.updatesite.5.2.0.20101008.zip
/file/download.php/1841/21639/p3266_r13008/com.st.stlinux.systemanalysis.updatesite.5.2.0.20101008.zip
/file/download.php/1841/21640/p3266_r13008/com.st.stlinux.systemanalysis.windows.updatesite.5.2.0.20101008.zip
/file/download.php/1841/21563/p3266_r12944/com.st.st200.systemanalysis.updatesite.5.2.0.201010051603.zip
/file/download.php/1841/21564/p3266_r12944/com.st.st40.systemanalysis.updatesite.5.2.0.201010051602.zip
/file/download.php/1841/21565/p3266_r12944/com.st.stlinux.systemanalysis.updatesite.5.2.0.201010051603.zip
/file/download.php/1841/21566/p3266_r12944/com.st.stlinux.systemanalysis.windows.updatesite.5.2.0.201010051603.zip
/file/download.php/1841/21384/p3266_r12839/com.st.st200.systemanalysis.updatesite.5.2.0.201009232309.zip
/file/download.php/1841/21385/p3266_r12839/com.st.st40.systemanalysis.updatesite.5.2.0.201009232309.zip
/file/download.php/1841/21386/p3266_r12839/com.st.stlinux.systemanalysis.updatesite.5.2.0.201009232310.zip
/file/download.php/1841/21387/p3266_r12839/com.st.stlinux.systemanalysis.windows.updatesite.5.2.0.201009232310.zip
/file/download.php/1841/21340/p3266_r12822/com.st.st200.systemanalysis.updatesite.5.1.0.201009202309.zip
/file/download.php/1841/21341/p3266_r12822/com.st.st40.systemanalysis.updatesite.5.1.0.201009202309.zip
/file/download.php/1841/21342/p3266_r12822/com.st.stlinux.systemanalysis.updatesite.5.1.0.201009202309.zip
/file/download.php/1841/21343/p3266_r12822/com.st.stlinux.systemanalysis.windows.updatesite.5.1.0.201009202309.zip
/file/download.php/1841/20752/p3266_r12498/com.st.st40.systemanalysis.updatesite.5.1.0.201007280952.zip
/file/download.php/1841/20753/p3266_r12498/com.st.st200.systemanalysis.updatesite.5.1.0.201007280952.zip
/file/download.php/1841/20754/p3266_r12498/com.st.stlinux.systemanalysis.updatesite.5.1.0.201007280953.zip
/file/download.php/1841/20755/p3266_r12498/com.st.stlinux.systemanalysis.windows.updatesite.5.1.0.201007280953.zip
/file/download.php/1841/20709/p3266_r12474/com.st.st40.systemanalysis.updatesite.5.1.0.201007231315.zip
/file/download.php/1841/20710/p3266_r12474/com.st.st200.systemanalysis.updatesite.5.1.0.201007231315.zip
/file/download.php/1841/20711/p3266_r12474/com.st.stlinux.systemanalysis.updatesite.5.1.0.201007231316.zip
/file/download.php/1841/20712/p3266_r12474/com.st.stlinux.systemanalysis.windows.updatesite.5.1.0.201007231316.zip
/file/download.php/1841/20631/p3266_r12438/com.st.st40.systemanalysis.updatesite.5.1.0.201007192310.zip
/file/download.php/1841/20632/p3266_r12438/com.st.st200.systemanalysis.updatesite.5.1.0.201007192310.zip
/file/download.php/1841/20633/p3266_r12438/com.st.stlinux.systemanalysis.updatesite.5.1.0.201007192311.zip
/file/download.php/1841/20634/p3266_r12438/com.st.stlinux.systemanalysis.windows.updatesite.5.1.0.201007192311.zip
/file/download.php/1841/20503/p3266_r12381/com.st.st40.systemanalysis.updatesite.5.1.0.201007131522.zip
/file/download.php/1841/20504/p3266_r12381/com.st.st200.systemanalysis.updatesite.5.1.0.201007131522.zip
/file/download.php/1841/20505/p3266_r12381/com.st.stlinux.systemanalysis.updatesite.5.1.0.201007131523.zip
/file/download.php/1841/20506/p3266_r12381/com.st.stlinux.systemanalysis.windows.updatesite.5.1.0.201007131523.zip
/file/download.php/1841/20363/p3266_r12311/com.st.st40.systemanalysis.updatesite.5.1.0.201007061436.zip
/file/download.php/1841/20364/p3266_r12311/com.st.st200.systemanalysis.updatesite.5.1.0.201007061436.zip
/file/download.php/1841/20365/p3266_r12311/com.st.stlinux.systemanalysis.windows.updatesite.5.1.0.201007061437.zip
/file/download.php/1841/20366/p3266_r12311/com.st.stlinux.systemanalysis.updatesite.5.1.0.201007061437.zip
/file/download.php/1841/20286/p3266_r12268/com.st.st200.systemanalysis.updatesite.5.1.0.201006291108.zip
/file/download.php/1841/20287/p3266_r12268/com.st.st40.systemanalysis.updatesite.5.1.0.201006291108.zip
/file/download.php/1841/20288/p3266_r12268/com.st.stlinux.systemanalysis.updatesite.5.1.0.201006291109.zip
/file/download.php/1841/20289/p3266_r12268/com.st.stlinux.systemanalysis.windows.updatesite.5.1.0.201006291109.zip
/file/download.php/1841/20269/p3266_r12260/com.st.st200.systemanalysis.updatesite.5.1.0.201006282310.zip
/file/download.php/1841/20270/p3266_r12260/com.st.st40.systemanalysis.updatesite.5.1.0.201006282309.zip
/file/download.php/1841/20271/p3266_r12260/com.st.stlinux.systemanalysis.updatesite.5.1.0.201006282310.zip
/file/download.php/1841/20272/p3266_r12260/com.st.stlinux.systemanalysis.windows.updatesite.5.1.0.201006282310.zip
/file/download.php/1841/20216/p3266_r12233/com.st.st200.systemanalysis.updatesite.5.1.0.201006232310.zip
/file/download.php/1841/20217/p3266_r12233/com.st.st40.systemanalysis.updatesite.5.1.0.201006232310.zip
/file/download.php/1841/20218/p3266_r12233/com.st.stlinux.systemanalysis.updatesite.5.1.0.201006232312.zip
/file/download.php/1841/20219/p3266_r12233/com.st.stlinux.systemanalysis.windows.updatesite.5.1.0.201006232312.zip
/file/download.php/1841/20094/p3266_r12165/com.st.st40.systemanalysis.updatesite.5.1.0.201006171028.zip
/file/download.php/1841/20095/p3266_r12165/com.st.st200.systemanalysis.updatesite.5.1.0.201006171028.zip
/file/download.php/1841/20096/p3266_r12165/com.st.stlinux.systemanalysis.updatesite.5.1.0.201006171029.zip
/file/download.php/1841/20097/p3266_r12165/com.st.stlinux.systemanalysis.windows.updatesite.5.1.0.201006171029.zip
/file/download.php/1841/20050/p3266_r12135/com.st.st40.systemanalysis.updatesite.5.0.0.201006151011.zip
/file/download.php/1841/20051/p3266_r12135/com.st.st200.systemanalysis.updatesite.5.0.0.201006151011.zip
/file/download.php/1841/20052/p3266_r12135/com.st.stlinux.systemanalysis.updatesite.5.0.0.201006151012.zip
/file/download.php/1841/20053/p3266_r12135/com.st.stlinux.systemanalysis.windows.updatesite.5.0.0.201006151012.zip
/file/download.php/1841/22441/p3262_r13361/com.st.stlinux.updatesite.base.zip

=> le premier paquetage de chaque famille, puisque ça sera le plus récent. Il ne faut pas se baser sur les nuùéro parce que ça change.
0
zipe31 Messages postés 36402 Date d'inscription dimanche 7 novembre 2010 Statut Contributeur Dernière intervention 27 janvier 2021 6 407
30 nov. 2010 à 13:44
Désolé mais j'ai du mal à comprendre comment on détermine chaque famille ;-((

Il n'y a que 4 fichiers à récupérer dans cet exemple ?
0
Agirl Messages postés 20 Date d'inscription mardi 30 novembre 2010 Statut Membre Dernière intervention 30 novembre 2010
30 nov. 2010 à 13:52
oui.
pour st40 par exemple, nous avons plusieurs release.
le plus récent et le premier à apparaîtrtre.

je crois j'ai trouvé comment faire.

egrep -o -m 1 '/file[^"]*com.st.st200.microtoolset.updatesite.zip' log.txt
=> ça me donne un seul et normalement le premier rencontré qui est le plus récent et je fais de même pour les autres.

Que pensez vous c'est correct ou non.
0
zipe31 Messages postés 36402 Date d'inscription dimanche 7 novembre 2010 Statut Contributeur Dernière intervention 27 janvier 2021 6 407
30 nov. 2010 à 14:08
Oui c'est pas mal d'autant plus que le "-m 1" de "grep" sert à ça, juste récupérer le 1er motif correspondant à la regex ;-))
0
Agirl Messages postés 20 Date d'inscription mardi 30 novembre 2010 Statut Membre Dernière intervention 30 novembre 2010
30 nov. 2010 à 14:17
Je vous remercie infiniment pour votre aide.
ça marche maintenant.

Merci une autre fois.
0
zipe31 Messages postés 36402 Date d'inscription dimanche 7 novembre 2010 Statut Contributeur Dernière intervention 27 janvier 2021 6 407
30 nov. 2010 à 14:18
De rien :-))
0
Agirl Messages postés 20 Date d'inscription mardi 30 novembre 2010 Statut Membre Dernière intervention 30 novembre 2010
30 nov. 2010 à 14:33
juste une dernière question.
j'ai rassemblé mes commandes dans un script shell mais ça ne fonctionne plus.
J'ai eu ce message d'erreur:
Connecting to mon-site|193.106.104.181|:443... connected.
WARNING: Certificate verification error for mon-site: unable to get local issuer certificate
HTTP request sent, awaiting response... 200 OK
Length: unspecified [text/html]

pourtant si je l'exécute dans ma console commande par commande ça fonctionne.

ça du à quoi.
merci une autre fois.
0
zipe31 Messages postés 36402 Date d'inscription dimanche 7 novembre 2010 Statut Contributeur Dernière intervention 27 janvier 2021 6 407
30 nov. 2010 à 14:36
Sans voir le script difficile de de faire une idée ;-((

C'est la même erreur qu'en début, avais-tu changé quoi que ce soit par la suite ?
0
Agirl Messages postés 20 Date d'inscription mardi 30 novembre 2010 Statut Membre Dernière intervention 30 novembre 2010
30 nov. 2010 à 14:43
Apparemnt ça n'a pas aimé le fait de tous rassmblé dans u suel script.
parce que lorsue je laisse un seul paquetage à chercher et je commente le reste ça marche.
peut être le problème de lire d'un seul fichier.
càd avec egrep
je défini toutes mes variables comme suit
ST200=$(egrep -o -m 1 '/file[^"]*com.st.st200.microtoolset.updatesite.zip' site.txt)

puis je lance mes commandes.
que pensez-vous.
0
zipe31 Messages postés 36402 Date d'inscription dimanche 7 novembre 2010 Statut Contributeur Dernière intervention 27 janvier 2021 6 407
30 nov. 2010 à 14:45
Je me répète, sans voir le script (avec d'éventuelles erreurs de syntaxe) c'est très difficile de se prononcer ;-((
0
Agirl Messages postés 20 Date d'inscription mardi 30 novembre 2010 Statut Membre Dernière intervention 30 novembre 2010
30 nov. 2010 à 14:55
je crois que j'ai trouvé le problème.
C'est avce la variable:

STLINUX=$(egrep -o -m 1 '/file[^"]*com.st.stlinux.updatesite.zip' site.txt)

qui est vide et je ne sais pas pourquoi c'est vide pourtant ça existe ce paquetage.
0
zipe31 Messages postés 36402 Date d'inscription dimanche 7 novembre 2010 Statut Contributeur Dernière intervention 27 janvier 2021 6 407
30 nov. 2010 à 15:01
Dans l'exemple que tu as fourni, non elle n'existe pas ;-((

C'est "/com.st.stlinux.updatesite.base.zip" qui existe ;-)
0
Agirl Messages postés 20 Date d'inscription mardi 30 novembre 2010 Statut Membre Dernière intervention 30 novembre 2010
30 nov. 2010 à 15:22
oui vous avez raison.

la balise dans lequelle se trouve se paquetages est de la forme.
colgroup> <TR id="p_3269r_13500f_22702" class="boxitem"><TD><B><A HREF="javascript:showConfirmDownload(1841,22702,'p3269_r13500/com.st.stlinux.updatesite.zip')" title="22702 - com.st.stlinux.updatesite.zip">com.st.stlinux.updatesite.zip


C'est paquetage qui demande de confirmation pour faire le downlod donc différent des autres.
je dois récupérer le file_id=22702 et la partie p3269_r13500/com.st.stlinux.updatesite.zip

pour récupérer ça j'ai tappé
egrep -o -m 1 '/.*com.st.stlinux.updatesite.zip' site.txt
0
zipe31 Messages postés 36402 Date d'inscription dimanche 7 novembre 2010 Statut Contributeur Dernière intervention 27 janvier 2021 6 407
Modifié par zipe31 le 2/12/2010 à 07:42
Tu ne veux pas mettre une copie de ton ficher "site.txt" sur Cijoint.fr histoire qu'on voit une fois pour toute à quoi ressemble cette page ? ;-\

Bien sur dans la mesure du possible (aucune donnée confidentielle dans le fichier)
0
Agirl Messages postés 20 Date d'inscription mardi 30 novembre 2010 Statut Membre Dernière intervention 30 novembre 2010
30 nov. 2010 à 15:55
voici mon fichier:


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Codex:File packages for project 'STWorkbench ACI'</title>
<link rel="SHORTCUT ICON" href="/themes/savannah/images/favicon.ico"><script type="text/javascript" src="/scripts/combined/codendi-1291091423.js"></script><script type="text/javascript">
codendi.locales['cross_ref_fact_include'] = {
legend: 'List of items referenced by or referencing this item.',
legend_referenced_by: 'List of items referencing this item.',
show_references_to: 'Show items referenced by this item',
hide_references_to: 'Hide items referenced by this item'
};


</script><script type="text/javascript">

</script><link rel="stylesheet" type="text/css" href="/themes/common/css/style.css" /><link rel="stylesheet" type="text/css" href="/themes/savannah/css/savannah_normal.css" />
<style type="text/css">

</style><link rel="alternate" title="Codex - Latest News RSS" href="/export/rss_sfnews.php" type="application/rss+xml" /><link rel="alternate" title="Codex - Newest Releases RSS" href="/export/rss_sfnewreleases.php" type="application/rss+xml" /><link rel="alternate" title="Codex - Newest Projects RSS" href="/export/rss_sfprojects.php?type=rss&option=newest" type="application/rss+xml" /><link rel="alternate" title="STWorkbench ACI - Latest News RSS" href="/export/rss_sfnews.php?group_id=1841" type="application/rss+xml" /></head><body leftmargin="0" rightmargin="0" topmargin="0" bottommargin="0" marginwidth="0" marginheight="0">
<!-- OSDN navbar -->
<div class="osdnnavbar">
</div>
<!-- End OSDN NavBar -->
<IMG src="/themes/savannah/images/blank.png" height="5" width="100" alt=" " border=0><br>
<!-- start page body -->
<div align="center">
<table cellpadding="0" cellspacing="0" border="0" width="97%">

<!-- First line with borders and corners -->
<tr>
<td background="/themes/savannah/images/upper_left_corner.png" width="1%" height="26"><img src="/themes/savannah/images/upper_left_corner.png" width="16" height="26" alt=" "></td>
<td background="/themes/savannah/images/top_border.png" align="left" colspan="3" width="99%"><a href="/"><img src="/themes/savannah/images/codex_banner_lc.png" height="26" border="0" alt="Codex Banner"></a></td>
<td><img src="/themes/savannah/images/upper_right_corner.png" width="16" height="26" alt=" "></td>
</tr>


<!-- Second line with menus and content -->
<tr>

<td background="/themes/savannah/images/left_border.png" align="left" valign="bottom" alt=""><img src="/themes/savannah/images/bottom_left_corner.png" width="16" height="16" alt=""></td>

<td colspan="3" >
<!-- start main body cell -->


<div align="left">
<table style=menus cellpadding="0" cellspacing="0" border="0" width="100%">

<tr>
<td class="menuframe">

<!-- VA Linux Stats Counter -->
<IMG src="/themes/savannah/images/blank.png" height="1" width="140" alt=" " border=0><br>

<!-- Company Logo here -->
<P>
<center><IMG src="/themes/savannah/images/organization_logo.png" alt="ST Logo"></center><BR>
<!-- menus -->
<table class="menutable">
<tr>
<td class="menutitle">Logged In: tamallah<br></td>
</tr>
<tr>
<td class="menuitem">
<A class="menus" href="/account/logout.php">Logout</A>  <img src="/themes/savannah/images/point1.png" alt=" " width="7" height="7"><br> <A class="menus" href="/project/register.php">Register New Project</A>  <img src="/themes/savannah/images/point1.png" alt=" " width="7" height="7"><br><P> <A class="menus" href="/my/">My Personal Page</A>  <img src="/themes/savannah/images/point1.png" alt=" " width="7" height="7"><br><P> <A class="menus" href="/my/bookmark_add.php?bookmark_url=%2Ffile%2Fshowfiles.php%3Fgroup_id%3D1841&bookmark_title=File+packages+for+project+%27STWorkbench+ACI%27">Bookmark This Page</A>  <img src="/themes/savannah/images/point1.png" alt=" " width="7" height="7"><br><P>
<BR>
</td>
</tr>
</table>
<table class="menutable">
<tr>
<td class="menutitle">Project<br></td>
</tr>
<tr>
<td class="menuitem">
<A class="menus" href="/softwaremap/">Project Repository</A>  <img src="/themes/savannah/images/point1.png" alt=" " width="7" height="7"><br> <A class="menus" href="/new/">New Releases</A>  <img src="/themes/savannah/images/point1.png" alt=" " width="7" height="7"><br> <A class="menus" href="/snippet/">Code Snippet Library</A>  <img src="/themes/savannah/images/point1.png" alt=" " width="7" height="7"><br>
<BR>
</td>
</tr>
</table>
<table class="menutable">
<tr>
<td class="menutitle">Help<br></td>
</tr>
<tr>
<td class="menuitem">
<A class="menus" href="/documentation/user_guide/html/en_US/"><b>Help Index</b></A>  <img src="/themes/savannah/images/point1.png" alt=" " width="7" height="7"><br> <A class="menus" href="/plugins/docman/?group_id=1">Codex Documentation</A>  <img src="/themes/savannah/images/point1.png" alt=" " width="7" height="7"><br> <A class="menus" href="/mail/?group_id=1">Codex Lists</A>  <img src="/themes/savannah/images/point1.png" alt=" " width="7" height="7"><br> <A class="menus" href="/forum/?group_id=1">Codex Forums</A>  <img src="/themes/savannah/images/point1.png" alt=" " width="7" height="7"><br><P><P> <A class="menus" href="/contact.php">Contact Us</A>  <img src="/themes/savannah/images/point1.png" alt=" " width="7" height="7"><br>
<BR>
</td>
</tr>
</table>
<table class="menutable">
<tr>
<td class="menutitle">Search<br></td>
</tr>
<tr>
<td class="menuitem">
<CENTER>
<FORM action="/search/" method="post">
<SELECT name="type_of_search">
<OPTION value="all_trackers">All trackers</OPTION>
<OPTION value="soft">Projects</OPTION>
<OPTION value="snippets">Code Snippets</OPTION>
<OPTION value="people">People</OPTION>
<OPTION value="people_ldap">Enterprise Directory</OPTION>
</SELECT>
<BR>
<INPUT TYPE="CHECKBOX" NAME="exact" VALUE="1" CHECKED> Require All Words
<BR>
<INPUT TYPE="HIDDEN" VALUE="1841" NAME="group_id">
<INPUT TYPE="text" SIZE="16" NAME="words" VALUE=""> <BR>
<INPUT TYPE="submit" NAME="Search" VALUE="Search">
</FORM>
</CENTER>

<BR>
</td>
</tr>
</table>
<div align="center">

<!-- OSDN navdropdown -->
<script type="text/javascript">
function handle_navbar(index,form) {
if ( index > 1 ) {
window.location=form.options[index].value;
}
}
</script><a href="https://codex.cro.st.com" class="osdn_codendi_logo"><img src="/themes/savannah/images/codendi_logo.png" alt="codex.cro.st.com" border="0" border="0" /><br /></a><!-- end OSDN navdropdown --> </div>
<P>
</TD>

<td width="15" background="/themes/savannah/images/fade.png" nowrap> </td>

<td class="contenttable">
<BR>
<H2>STWorkbench ACI - Files</H2>
<P>
<HR SIZE="1" NoShade>
<A class=tabs title="Project Summary" href="/projects/stworkbench-aci/"><span class="project_privacy_public">[Public]</span> STWorkbench ACI »</A> | 
<A class=tabs target=_blank title="Project Home Page" href="http://stworkbench-aci.codex.cro.st.com">Home Page</A> | 
<A class=tabs title="Project Forums" href="/forum/?group_id=1841">Forums</A> | 
<A class=tabs title="Mailing Lists" href="/mail/?group_id=1841">Lists</A> | 
<A class=tabs title="Document Manager" href="/plugins/docman/?group_id=1841">Documents</A> | 
<A class=tabs title="Wiki" href="/wiki/?group_id=1841">Wiki</A> | 
<A class=tabs title="Project News" href="/news/?group_id=1841">News</A> | 
<A class=tabselect title="File Releases" href="/file/showfiles.php?group_id=1841">Files</A> | 
<A class=tabs title="Project Trackers" href="/tracker/index.php?group_id=1841">Trackers</A> | 
<A class=tabs target=_blank title="ST40 & ST200 Micro Toolset Plugin Suite" href="http://bluepages.st.com/ddts.asp?Project=ST200_O64_gui,STEclipse.Bri&Status=N,A,O&OrderBy=Severity&Fields=Status,Headline,Severity,Project&Action=ListBugs">DDTS</A> | 
<A class=tabs title="Continuous Integration with Hudson" href="/plugins/hudson/?group_id=1841">Continuous Integration</A> | <HR SIZE="1" NoShade><P><div id="feedback"><ul class="feedback_info"><li>Previous successful log-on: 2010-11-30 14:55</li></ul></div><TABLE width='100%'><TR><TD><h3>Package Releases <A href="javascript:help_window('/help/show_help.php?section=FileReleaseJargon.html')"><B>[?]</B></A></h3></TD><TD align='left'> ( <A HREF='showfiles.php?group_id=1841&pv=1'><img src='/themes/savannah/images/msg.png' border='0'> Printer version</A> ) </TD></TR></TABLE><p>Select the text icon (next to release name) to see Release Notes and Change Log. Select File to request file download.</p><SCRIPT language="JavaScript">
<!--
function showConfirmDownload(group_id,file_id,filename) {
url = "/file/confirm_download.php?popup=1&group_id=" + group_id + "&file_id=" + file_id + "&filename=" + filename;
wConfirm = window.open(url,"confirm","width=520,height=450,resizable=1,scrollbars=1");
wConfirm.focus();
}

function download(group_id,file_id,filename) {
url = "/file/download.php/" + group_id + "/" + file_id +"/"+filename;
wConfirm.close();
self.location = url;

}

function toggle_package(package_id) {
Element.toggle(package_id);
toggle_image(package_id);
}

function toggle_release(package_id, release_id) {
$A(packages[package_id][release_id]).each(function(file_id) {
// toggle the content of the release (the files)
Element.toggle(package_id + release_id + file_id);
});
toggle_image(package_id + release_id);
}

function toggle_image(image_id) {
var img_element = $('img_' + image_id);
if (img_element.src.indexOf('/themes/savannah/images/ic/toggle_plus.png') != -1) {
img_element.src = '/themes/savannah/images/ic/toggle_minus.png';
} else {
img_element.src = '/themes/savannah/images/ic/toggle_plus.png';
}
}

-->
</SCRIPT>
<fieldset class="package"><legend><a href="#" onclick="javascript:toggle_package('p_3261'); return false;" /><img src="/themes/savannah/images/ic/toggle_minus.png" id="img_p_3261" /></a>  <strong>Process</strong>   <a href="filemodule_monitor.php?filemodule_id=3261"><img src="/themes/savannah/images/ic/notification_start.png" alt="Monitor this package" title="Monitor this package" /></a></legend><div id="p_3261"><B>No Releases</B>
</div></fieldset><fieldset class="package"><legend><a href="#" onclick="javascript:toggle_package('p_3416'); return false;" /><img src="/themes/savannah/images/ic/toggle_minus.png" id="img_p_3416" /></a>  <strong>Eclipse Plugin for Hudson</strong>   <a href="filemodule_monitor.php?filemodule_id=3416"><img src="/themes/savannah/images/ic/notification_start.png" alt="Monitor this package" title="Monitor this package" /></a></legend><div id="p_3416"><table width="100%" class="release"> <TR id="p_3416r_12110"> <TD><a href="#" onclick="javascript:toggle_release('p_3416', 'r_12110'); return false;" /><img src="/themes/savannah/images/ic/toggle_minus.png" id="img_p_3416r_12110" /></a> <strong>Hudson-Plugin_for_Eclipse_1.0.10</strong>   <a href="shownotes.php?release_id=12110"><img src="/themes/savannah/images/ic/text.png" alt="Read release notes and changelog" title="Read release notes and changelog" /></a> </td> <td style="text-align:center"></td> <TD class="release_date">2010-06-09</TD></TR>
</table><span class="files" id="p_3416r_12110f_0">
<TABLE WIDTH="100%" class="files_table" BORDER="0" CELLSPACING="1" CELLPADDING="2">
<TR class="boxtable">
<TD class="boxtitle">Filename</TD>
<TD class="boxtitle">Size (Kb)</TD>
<TD class="boxtitle">D/L</TD>
<TD class="boxtitle">Arch.</TD>
<TD class="boxtitle">Type</TD>
<TD class="boxtitle">Date</TD></TR>
<colgroup> <col class="frs_filename_col"> <col class="frs_size_col"> <col class="frs_downloads_col"> <col class="frs_architecture_col"> <col class="frs_filetype_col"> <col class="frs_date_col"></colgroup> <TR id="p_3416r_12110f_19999" class="boxitem"><TD><B><A HREF="javascript:showConfirmDownload(1841,19999,'p3416_r12110/Hudson-Plugin_for_Eclipse_1.0.10.zip')" title="19999 - Hudson-Plugin_for_Eclipse_1.0.10.zip">Hudson-Plugin_for_Eclipse_1.0.10.zip</A></B></TD><TD>5,668</TD><TD>2</TD><TD>i386</TD><TD>Binary .zip</TD><TD>2010-06-10</TD></TR>
</table></span></div></fieldset><fieldset class="package"><legend><a href="#" onclick="javascript:toggle_package('p_3438'); return false;" /><img src="/themes/savannah/images/ic/toggle_minus.png" id="img_p_3438" /></a>  <strong>3rd Party Plugins</strong>   <a href="filemodule_monitor.php?filemodule_id=3438"><img src="/themes/savannah/images/ic/notification_start.png" alt="Monitor this package" title="Monitor this package" /></a></legend><div id="p_3438"><table width="100%" class="release"> <TR id="p_3438r_13340"> <TD><a href="#" onclick="javascript:toggle_release('p_3438', 'r_13340'); return false;" /><img src="/themes/savannah/images/ic/toggle_minus.png" id="img_p_3438r_13340" /></a> <strong>3rd_Party_Plug-ins_R5.2.0</strong>   <a href="shownotes.php?release_id=13340"><img src="/themes/savannah/images/ic/text.png" alt="Read release notes and changelog" title="Read release notes and changelog" /></a> </td> <td style="text-align:center"></td> <TD class="release_date">2010-11-10</TD></TR>
</table><span class="files" id="p_3438r_13340f_0">
<TABLE WIDTH="100%" class="files_table" BORDER="0" CELLSPACING="1" CELLPADDING="2">
<TR class="boxtable">
<TD class="boxtitle">Filename</TD>
<TD class="boxtitle">Size (Kb)</TD>
<TD class="boxtitle">D/L</TD>
<TD class="boxtitle">Arch.</TD>
<TD class="boxtitle">Type</TD>
<TD class="boxtitle">Date</TD></TR>
<colgroup> <col class="frs_filename_col"> <col class="frs_size_col"> <col class="frs_downloads_col"> <col class="frs_architecture_col"> <col class="frs_filetype_col"> <col class="frs_date_col"></colgroup> <TR id="p_3438r_13340f_22402" class="boxitem"><TD><B><A HREF="javascript:showConfirmDownload(1841,22402,'p3438_r13340/stworkbench_third_party_plugins.zip')" title="22402 - stworkbench_third_party_plugins.zip">stworkbench_third_party_plugins.zip</A></B></TD><TD>16,758</TD><TD>76</TD><TD>i386</TD><TD>Binary .zip</TD><TD>2010-11-11</TD></TR>
</table></span><table width="100%" class="release"> <TR id="p_3438r_12466"> <TD><a href="#" onclick="javascript:toggle_release('p_3438', 'r_12466'); return false;" /><img src="/themes/savannah/images/ic/toggle_minus.png" id="img_p_3438r_12466" /></a> <strong>3rd_Party_Plug-ins_R5.1.0</strong>   <a href="shownotes.php?release_id=12466"><img src="/themes/savannah/images/ic/text.png" alt="Read release notes and changelog" title="Read release notes and changelog" /></a> </td> <td style="text-align:center"></td> <TD class="release_date">2010-07-22</TD></TR>
</table><span class="files" id="p_3438r_12466f_0">
<TABLE WIDTH="100%" class="files_table" BORDER="0" CELLSPACING="1" CELLPADDING="2">
<TR class="boxtable">
<TD class="boxtitle">Filename</TD>
<TD class="boxtitle">Size (Kb)</TD>
<TD class="boxtitle">D/L</TD>
<TD class="boxtitle">Arch.</TD>
<TD class="boxtitle">Type</TD>
<TD class="boxtitle">Date</TD></TR>
<colgroup> <col class="frs_filename_col"> <col class="frs_size_col"> <col class="frs_downloads_col"> <col class="frs_architecture_col"> <col class="frs_filetype_col"> <col class="frs_date_col"></colgroup> <TR id="p_3438r_12466f_20683" class="boxitem"><TD><B><A HREF="javascript:showConfirmDownload(1841,20683,'p3438_r12466/stworkbench_third_party_plugins.zip')" title="20683 - stworkbench_third_party_plugins.zip">stworkbench_third_party_plugins.zip</A></B></TD><TD>1,002</TD><TD>223</TD><TD>Any</TD><TD>Binary .zip</TD><TD>2010-07-22</TD></TR>
</table></span></div></fieldset><fieldset class="package"><legend><a href="#" onclick="javascript:toggle_package('p_3845'); return false;" /><img src="/themes/savannah/images/ic/toggle_minus.png" id="img_p_3845" /></a>  <strong>JDT Plugins</strong>   <a href="filemodule_monitor.php?filemodule_id=3845"><img src="/themes/savannah/images/ic/notification_start.png" alt="Monitor this package" title="Monitor this package" /></a></legend><div id="p_3845"><table width="100%" class="release"> <TR id="p_3845r_13417"> <TD><a href="#" onclick="javascript:toggle_release('p_3845', 'r_13417'); return false;" /><img src="/themes/savannah/images/ic/toggle_minus.png" id="img_p_3845r_13417" /></a> <strong>eclipse-JDT 3.5.2-201002111343</strong>   <a href="shownotes.php?release_id=13417"><img src="/themes/savannah/images/ic/text.png" alt="Read release notes and changelog" title="Read release notes and changelog" /></a> </td> <td style="text-align:center"></td> <TD class="release_date">2010-11-17</TD></TR>
</table><span class="files" id="p_3845r_13417f_0">
<TABLE WIDTH="100%" class="files_table" BORDER="0" CELLSPACING="1" CELLPADDING="2">
<TR class="boxtable">
<TD class="boxtitle">Filename</TD>
<TD class="boxtitle">Size (Kb)</TD>
<TD class="boxtitle">D/L</TD>
<TD class="boxtitle">Arch.</TD>
<TD class="boxtitle">Type</TD>
<TD class="boxtitle">Date</TD></TR>
<colgroup> <col class="frs_filename_col"> <col class="frs_size_col"> <col class="frs_downloads_col"> <col class="frs_architecture_col"> <col class="frs_filetype_col"> <col class="frs_date_col"></colgroup> <TR id="p_3845r_13417f_22533" class="boxitem"><TD><B><A HREF="javascript:showConfirmDownload(1841,22533,'p3845_r13417/eclipse-JDT-3.5.2.zip')" title="22533 - eclipse-JDT-3.5.2.zip">eclipse-JDT-3.5.2.zip</A></B></TD><TD>24,526</TD><TD>3</TD><TD>i386</TD><TD>Binary .zip</TD><TD>2010-11-18</TD></TR>
</table></span></div></fieldset><fieldset class="package"><legend><a href="#" onclick="javascript:toggle_package('p_3669'); return false;" /><img src="/themes/savannah/images/ic/toggle_minus.png" id="img_p_3669" /></a>  <strong>ST40 and ST200 Micro Toolsets Common Unit Build</strong>   <a href="filemodule_monitor.php?filemodule_id=3669"><img src="/themes/savannah/images/ic/notification_start.png" alt="Monitor this package" title="Monitor this package" /></a></legend><div id="p_3669"><table width="100%" class="release"> <TR id="p_3669r_13448"> <TD><a href="#" onclick="javascript:toggle_release('p_3669', 'r_13448'); return false;" /><img src="/themes/savannah/images/ic/toggle_minus.png" id="img_p_3669r_13448" /></a> <strong>20101122_17-26-19</strong>   <a href="shownotes.php?release_id=13448"><img src="/themes/savannah/images/ic/text.png" alt="Read release notes and changelog" title="Read release notes and changelog" /></a> </td> <td style="text-align:center"></td> <TD class="release_date">2010-11-21</TD></TR>
</table><span class="files" id="p_3669r_13448f_0">
<TABLE WIDTH="100%" class="files_table" BORDER="0" CELLSPACING="1" CELLPADDING="2">
<TR class="boxtable">
<TD class="boxtitle">Filename</TD>
<TD class="boxtitle">Size (Kb)</TD>
<TD class="boxtitle">D/L</TD>
<TD class="boxtitle">Arch.</TD>
<TD class="boxtitle">Type</TD>
<TD class="boxtitle">Date</TD></TR>
<colgroup> <col class="frs_filename_col"> <col class="frs_size_col"> <col class="frs_downloads_col"> <col class="frs_architecture_col"> <col class="frs_filetype_col"> <col class="frs_date_col"></colgroup> <TR id="p_3669r_13448f_22610" class="boxitem"><TD><B><A HREF="javascript:showConfirmDownload(1841,22610,'p3669_r13448/com.st.st40and200.microtoolset.feature.common.zip')" title="22610 - com.st.st40and200.microtoolset.feature.common.zip">com.st.st40and200.microtoolset.feature.common.zip</A></B></TD><TD>605</TD><TD>7</TD><TD>i386</TD><TD>Binary .zip</TD><TD>2010-11-22</TD></TR>
</table></span><table width="100%" class="release"> <TR id="p_3669r_13371"> <TD><a href="#" onclick="javascript:toggle_release('p_3669', 'r_13371'); return false;" /><img src="/themes/savannah/images/ic/toggle_minus.png" id="img_p_3669r_13371" /></a> <strong>20101115_17-30-00</strong>   <a href="shownotes.php?release_id=13371"><img src="/themes/savannah/images/ic/text.png" alt="Read release notes and changelog" title="Read release notes and changelog" /></a> </td> <td style="text-align:center"></td> <TD class="release_date">2010-11-14</TD></TR>
</table><span class="files" id="p_3669r_13371f_0">
<TABLE WIDTH="100%" class="files_table" BORDER="0" CELLSPACING="1" CELLPADDING="2">
<TR class="boxtable">
<TD class="boxtitle">Filename</TD>
<TD class="boxtitle">Size (Kb)</TD>
<TD class="boxtitle">D/L</TD>
<TD class="boxtitle">Arch.</TD>
<TD class="boxtitle">Type</TD>
<TD class="boxtitle">Date</TD></TR>
<colgroup> <col class="frs_filename_col"> <col class="frs_size_col"> <col class="frs_downloads_col"> <col class="frs_architecture_col"> <col class="frs_filetype_col"> <col class="frs_date_col"></colgroup> <TR id="p_3669r_13371f_22461" class="boxitem"><TD><B><A HREF="javascript:showConfirmDownload(1841,22461,'p3669_r13371/com.st.st40and200.microtoolset.feature.common.zip')" title="22461 - com.st.st40and200.microtoolset.feature.common.zip">com.st.st40and200.microtoolset.feature.common.zip</A></B></TD><TD>603</TD><TD>19</TD><TD>i386</TD><TD>Binary .zip</TD><TD>2010-11-15</TD></TR>
</table></span><table width="100%" class="release"> <TR id="p_3669r_13153"> <TD><a href="#" onclick="javascript:toggle_release('p_3669', 'r_13153'); return false;" /><img src="/themes/savannah/images/ic/toggle_minus.png" id="img_p_3669r_13153" /></a> <strong>2010-10-22_11-03-33</strong>   <a href="shownotes.php?release_id=13153"><img src="/themes/savannah/images/ic/text.png" alt="Read release notes and changelog" title="Read release notes and changelog" /></a> </td> <td style="text-align:center"></td> <TD class="release_date">2010-10-22</TD></TR>
</table><span class="files" id="p_3669r_13153f_0">
<TABLE WIDTH="100%" class="files_table" BORDER="0" CELLSPACING="1" CELLPADDING="2">
<TR class="boxtable">
<TD class="boxtitle">Filename</TD>
<TD class="boxtitle">Size (Kb)</TD>
<TD class="boxtitle">D/L</TD>
<TD class="boxtitle">Arch.</TD>
<TD class="boxtitle">Type</TD>
<TD class="boxtitle">Date</TD></TR>
<colgroup> <col class="frs_filename_col"> <col class="frs_size_col"> <col class="frs_downloads_col"> <col class="frs_architecture_col"> <col class="frs_filetype_col"> <col class="frs_date_col"></colgroup> <TR id="p_3669r_13153f_21919" class="boxitem"><TD><B><A HREF="javascript:showConfirmDownload(1841,21919,'p3669_r13153/com.st.st40and200.microtoolset.common.feature.zip')" title="21919 - com.st.st40and200.microtoolset.common.feature.zip">com.st.st40and200.microtoolset.common.feature.zip</A></B></TD><TD>603</TD><TD>7</TD><TD>Other</TD><TD>Other</TD><TD>2010-10-22</TD></TR>
</table></span><table width="100%" class="release"> <TR id="p_3669r_12961"> <TD><a href="#" onclick="javascript:toggle_release('p_3669', 'r_12961'); return false;" /><img src="/themes/savannah/images/ic/toggle_minus.png" id="img_p_3669r_12961" /></a> <strong>2010-10-06_15-21-06</strong>   <a href="shownotes.php?release_id=12961"><img src="/themes/savannah/images/ic/text.png" alt="Read release notes and changelog" title="Read release notes and changelog" /></a> </td> <td style="text-align:center"></td> <TD class="release_date">2010-10-06</TD></TR>
</table><span class="files" id="p_3669r_12961f_0">
<TABLE WIDTH="100%" class="files_table" BORDER="0" CELLSPACING="1" CELLPADDING="2">
<TR class="boxtable">
<TD class="boxtitle">Filename</TD>
<TD class="boxtitle">Size (Kb)</TD>
<TD class="boxtitle">D/L</TD>
<TD class="boxtitle">Arch.</TD>
<TD class="boxtitle">Type</TD>
<TD class="boxtitle">Date</TD></TR>
<colgroup> <col class="frs_filename_col"> <col class="frs_size_col"> <col class="frs_downloads_col"> <col class="frs_architecture_col"> <col class="frs_filetype_col"> <col class="frs_date_col"></colgroup> <TR id="p_3669r_12961f_21585" class="boxitem"><TD><B><A HREF="javascript:showConfirmDownload(1841,21585,'p3669_r12961/com.st.st40and200.microtoolset.common.feature.zip')" title="21585 - com.st.st40and200.microtoolset.common.feature.zip">com.st.st40and200.microtoolset.common.feature.zip</A></B></TD><TD>603</TD><TD>5</TD><TD>Other</TD><TD>Other</TD><TD>2010-10-06</TD></TR>
</table></span></div></fieldset><fieldset class="package"><legend><a href="#" onclick="javascript:toggle_package('p_3258'); return false;" /><img src="/themes/savannah/images/ic/toggle_minus.png" id="img_p_3258" /></a>  <strong>ST40 Micro Toolset Unit Build</strong>   <a href="filemodule_monitor.php?filemodule_id=3258"><img src="/themes/savannah/images/ic/notification_start.png" alt="Monitor this package" title="Monitor this package" /></a></legend><div id="p_3258"><table width="100%" class="release"> <TR id="p_3258r_13498"> <TD><a href="#" onclick="javascript:toggle_release('p_3258', 'r_13498'); return false;" /><img src="/themes/savannah/images/ic/toggle_minus.png" id="img_p_3258r_13498" /></a> <strong>R5.2.0 2010-11-26_11-21-50</strong>   <a href="shownotes.php?release_id=13498"><img src="/themes/savannah/images/ic/text.png" alt="Read release notes and changelog" title="Read release notes and changelog" /></a> </td> <td style="text-align:center"></td> <TD class="release_date">2010-11-26</TD></TR>
</table><span class="files" id="p_3258r_13498f_0">
<TABLE WIDTH="100%" class="files_table" BORDER="0" CELLSPACING="1" CELLPADDING="2">
<TR class="boxtable">
<TD class="boxtitle">Filename</TD>
<TD class="boxtitle">Size (Kb)</TD>
<TD class="boxtitle">D/L</TD>
<TD class="boxtitle">Arch.</TD>
<TD class="boxtitle">Type</TD>
<TD class="boxtitle">Date</TD></TR>
<colgroup> <col class="frs_filename_col"> <col class="frs_size_col"> <col class="frs_downloads_col"> <col class="frs_architecture_col"> <col class="frs_filetype_col"> <col class="frs_date_col"></colgroup> <TR id="p_3258r_13498f_22700" class="boxitem"><TD><B><A HREF="/file/download.php/1841/22700/p3258_r13498/com.st.st40.microtoolset.updatesite.zip" title="22700 - com.st.st40.microtoolset.updatesite.zip">com.st.st40.microtoolset.updatesite.zip</A></B></TD><TD>2,798</TD><TD>14</TD><TD>Other</TD><TD>Other</TD><TD>2010-11-26</TD></TR>
</table></span><table width="100%" class="release"> <TR id="p_3258r_13449"> <TD><a href="#" onclick="javascript:toggle_release('p_3258', 'r_13449'); return false;" /><img src="/themes/savannah/images/ic/toggle_minus.png" id="img_p_3258r_13449" /></a> <strong>R5.2.0 2010-11-22_17-33-06</strong>   <a href="shownotes.php?release_id=13449"><img src="/themes/savannah/images/ic/text.png" alt="Read release notes and changelog" title="Read release notes and changelog" /></a> </td> <td style="text-align:center"></td> <TD class="release_date">2010-11-22</TD></TR>
</table><span class="files" id="p_3258r_13449f_0">
<TABLE WIDTH="100%" class="files_table" BORDER="0" CELLSPACING="1" CELLPADDING="2">
<TR class="boxtable">
<TD class="boxtitle">Filename</TD>
<TD class="boxtitle">Size (Kb)</TD>
<TD class="boxtitle">D/L</TD>
<TD class="boxtitle">Arch.</TD>
<TD class="boxtitle">Type</TD>
<TD class="boxtitle">Date</TD></TR>
<colgroup> <col class="frs_filename_col"> <col class="frs_size_col"> <col class="frs_downloads_col"> <col class="frs_architecture_col"> <col class="frs_filetype_col"> <col class="frs_date_col"></colgroup> <TR id="p_3258r_13449f_22611" class="boxitem"><TD><B><A HREF="/file/download.php/1841/22611/p3258_r13449/com.st.st40.microtoolset.updatesite.zip" title="22611 - com.st.st40.microtoolset.updatesite.zip">com.st.st40.microtoolset.updatesite.zip</A></B></TD><TD>2,799</TD><TD>24</TD><TD>Other</TD><TD>Other</TD><TD>2010-11-22</TD></TR>
</table></span><table width="100%" class="release"> <TR id="p_3258r_13303"> <TD><a href="#" onclick="javascript:toggle_release('p_3258', 'r_13303'); return false;" /><img src="/themes/savannah/images/ic/toggle_minus.png" id="img_p_3258r_13303" /></a> <strong>2010-11-09_10-03-08</strong>   <a href="shownotes.php?release_id=13303"><img src="/themes/savannah/images/ic/text.png" alt="Read release notes and changelog" title="Read release notes and changelog" /></a> </td> <td style="text-align:center"></td> <TD class="release_date">2010-11-09</TD></TR>
</table><span class="files" id="p_3258r_13303f_0">
<TABLE WIDTH="100%" class="files_table" BORDER="0" CELLSPACING="1" CELLPADDING="2">
<TR class="boxtable">
<TD class="boxtitle">Filename</TD>
<TD class="boxtitle">Size (Kb)</TD>
<TD class="boxtitle">D/L</TD>
<TD class="boxtitle">Arch.</TD>
<TD class="boxtitle">Type</TD>
<TD class="boxtitle">Date</TD></TR>
<colgroup> <col class="frs_filename_col"> <col class="frs_size_col"> <col class="frs_downloads_col"> <col class="frs_architecture_col"> <col class="frs_filetype_col"> <col class="frs_date_col"></colgroup> <TR id="p_3258r_13303f_22317" class="boxitem"><TD><B><A HREF="/file/download.php/1841/22317/p3258_r13303/com.st.st40.microtoolset.updatesite.zip" title="22317 - com.st.st40.microtoolset.updatesite.zip">com.st.st40.microtoolset.updatesite.zip</A></B></TD><TD>2,801</TD><TD>61</TD><TD>Other</TD><TD>Other</TD><TD>2010-11-09</TD></TR>
</table></span><table width="100%" class="release"> <TR id="p_3258r_12453"> <TD><a href="#" onclick="javascript:toggle_release('p_3258', 'r_12453'); return false;" /><img src="/themes/savannah/images/ic/toggle_minus.png" id="img_p_3258r_12453" /></a> <strong>2010-07-21_16-12-42</strong>   <a href="shownotes.php?release_id=12453"><img src="/themes/savannah/images/ic/text.png" alt="Read release notes and changelog" title="Read release notes and changelog" /></a> </td> <td style="text-align:center"></td> <TD class="release_date">2010-07-21</TD></TR>
</table><span class="files" id="p_3258r_12453f_0">
<TABLE WIDTH="100%" class="files_table" BORDER="0" CELLSPACING="1" CELLPADDING="2">
<TR class="boxtable">
<TD class="boxtitle">Filename</TD>
<TD class="boxtitle">Size (Kb)</TD>
<TD class="boxtitle">D/L</TD>
<TD class="boxtitle">Arch.</TD>
<TD class="boxtitle">Type</TD>
<TD class="boxtitle">Date</TD></TR>
<colgroup> <col class="frs_filename_col"> <col class="frs_size_col"> <col class="frs_downloads_col"> <col class="frs_architecture_col"> <col class="frs_filetype_col"> <col class="frs_date_col"></colgroup> <TR id="p_3258r_12453f_20666" class="boxitem"><TD><B><A HREF="/file/download.php/1841/20666/p3258_r12453/com.st.st40.microtoolset.updatesite.zip" title="20666 - com.st.st40.microtoolset.updatesite.zip">com.st.st40.microtoolset.updatesite.zip</A></B></TD><TD>2,748</TD><TD>236</TD><TD>Other</TD><TD>Other</TD><TD>2010-07-21</TD></TR>
</table></span><table width="100%" class="release"> <TR id="p_3258r_12326"> <TD><a href="#" onclick="javascript:toggle_release('p_3258', 'r_12326'); return false;" /><img src="/themes/savannah/images/ic/toggle_minus.png" id="img_p_3258r_12326" /></a> <strong>2010-07-07_16-28-04</strong>   <a href="shownotes.php?release_id=12326"><img src="/themes/savannah/images/ic/text.png" alt="Read release notes and changelog" title="Read release notes and changelog" /></a> </td> <td style="text-align:center"></td> <TD class="release_date">2010-07-07</TD></TR>
</table><span class="files" id="p_3258r_12326f_0">
<TABLE WIDTH="100%" class="files_table" BORDER="0" CELLSPACING="1" CELLPADDING="2">
<TR class="boxtable">
<TD class="boxtitle">Filename</TD>
<TD class="boxtitle">Size (Kb)</TD>
<TD class="boxtitle">D/L</TD>
<TD class="boxtitle">Arch.</TD>
<TD class="boxtitle">Type</TD>
<TD class="boxtitle">Date</TD></TR>
<colgroup> <col class="frs_filename_col"> <col class="frs_size_col"> <col class="frs_downloads_col"> <col class="frs_architecture_col"> <col class="frs_filetype_col"> <col class="frs_date_col"></colgroup> <TR id="p_3258r_12326f_20391" class="boxitem"><TD><B><A HREF="/file/download.php/1841/20391/p3258_r12326/com.st.st40.microtoolset.updatesite.zip" title="20391 - com.st.st40.microtoolset.updatesite.zip">com.st.st40.microtoolset.updatesite.zip</A></B></TD><TD>2,813</TD><TD>79</TD><TD>Other</TD><TD>Other</TD><TD>2010-07-07</TD></TR>
</table></span><table width="100%" class="release"> <TR id="p_3258r_12288"> <TD><a href="#" onclick="javascript:toggle_release('p_3258', 'r_12288'); return false;" /><img src="/themes/savannah/images/ic/toggle_minus.png" id="img_p_3258r_12288" /></a> <strong>2010-07-02_11-30-12</strong>   <a href="shownotes.php?release_id=12288"><img src="/themes/savannah/images/ic/text.png" alt="Read release notes and changelog" title="Read release notes and changelog" /></a> </td> <td style="text-align:center"></td> <TD class="release_date">2010-07-02</TD></TR>
</table><span class="files" id="p_3258r_12288f_0">
<TABLE WIDTH="100%" class="files_table" BORDER="0" CELLSPACING="1" CELLPADDING="2">
<TR class="boxtable">
<TD class="boxtitle">Filename</TD>
<TD class="boxtitle">Size (Kb)</TD>
<TD class="boxtitle">D/L</TD>
<TD class="boxtitle">Arch.</TD>
<TD class="boxtitle">Type</TD>
<TD class="boxtitle">Date</TD></TR>
<colgroup> <col class="frs_filename_col"> <col class="frs_size_col"> <col class="frs_downloads_col"> <col class="frs_architecture_col"> <col class="frs_filetype_col"> <col class="frs_date_col"></colgroup> <TR id="p_3258r_12288f_20325" class="boxitem"><TD><B><A HREF="/file/download.php/1841/20325/p3258_r12288/com.st.st40.microtoolset.updatesite.zip" title="20325 - com.st.st40.microtoolset.updatesite.zip">com.st.st40.microtoolset.updatesite.zip</A></B></TD><TD>2,811</TD><TD>45</TD><TD>Other</TD><TD>Other</TD><TD>2010-07-02</TD></TR>
</table></span><table width="100%" class="release"> <TR id="p_3258r_12282"> <TD><a href="#" onclick="javascript:toggle_release('p_3258', 'r_12282'); return false;" /><img src="/themes/savannah/images/ic/toggle_minus.png" id="img_p_3258r_12282" /></a> <strong>201007011800</strong>   <a href="shownotes.php?release_id=12282"><img src="/themes/savannah/images/ic/text.png" alt="Read release notes and changelog" title="Read release notes and changelog" /></a> </td> <td style="text-align:center"></td> <TD class="release_date">2010-07-01</TD></TR>
</table><span class="files" id="p_3258r_12282f_0">
<TABLE WIDTH="100%" class="files_table" BORDER="0" CELLSPACING="1" CELLPADDING="2">
<TR class="boxtable">
<TD class="boxtitle">Filename</TD>
<TD class="boxtitle">Size (Kb)</TD>
<TD class="boxtitle">D/L</TD>
<TD class="boxtitle">Arch.</TD>
<TD class="boxtitle">Type</TD>
<TD class="boxtitle">Date</TD></TR>
<colgroup> <col class="frs_filename_col"> <col class="frs_size_col"> <col class="frs_downloads_col"> <col class="frs_architecture_col"> <col class="frs_filetype_col"> <col class="frs_date_col"></colgroup> <TR id="p_3258r_12282f_20308" class="boxitem"><TD><B><A HREF="/file/download.php/1841/20308/p3258_r12282/com.st.st40.microtoolset.updatesite.zip" title="20308 - com.st.st40.microtoolset.updatesite.zip">com.st.st40.microtoolset.updatesite.zip</A></B></TD><TD>2,811</TD><TD>5</TD><TD>i386</TD><TD>Binary .zip</TD><TD>2010-07-01</TD></TR>
</table></span><table width="100%" class="release"> <TR id="p_3258r_12271"> <TD><a href="#" onclick="javascript:toggle_release('p_3258', 'r_12271'); return false;" /><img src="/themes/savannah/images/ic/toggle_minus.png" id="img_p_3258r_12271" /></a> <strong>2010-06-29_16-28-10</strong>   <a href="shownotes.php?release_id=12271"><img src="/themes/savannah/images/ic/text.png" alt="Read release notes and changelog" title="Read release notes and changelog" /></a> </td> <td style="text-align:center"></td> <TD class="release_date">2010-06-29</TD></TR>
</table><span class="files" id="p_3258r_12271f_0">
<TABLE WIDTH="100%" class="files_table" BORDER="0" CELLSPACING="1" CELLPADDING="2">
<TR class="boxtable">
<TD class="boxtitle">Filename</TD>
<TD class="boxtitle">Size (Kb)</TD>
<TD class="boxtitle">D/L</TD>
<TD class="boxtitle">Arch.</TD>
<TD class="boxtitle">Type</TD>
<TD class="boxtitle">Date</TD></TR>
<colgroup> <col class="frs_filename_col"> <col class="frs_size_col"> <col class="frs_downloads_col"> <col class="frs_architecture_col"> <col class="frs_filetype_col"> <col class="frs_date_col"></colgroup> <TR id="p_3258r_12271f_20293" class="boxitem"><TD><B><A HREF="/file/download.php/1841/20293/p3258_r12271/com.st.st40.microtoolset.updatesite.zip" title="20293 - com.st.st40.microtoolset.updatesite.zip">com.st.st40.microtoolset.updatesite.zip</A></B></TD><TD>2,455</TD><TD>60</TD><TD>Other</TD><TD>Other</TD><TD>2010-06-29</TD></TR>
</table></span><table width="100%" class="release"> <TR id="p_3258r_12243"> <TD><a href="#" onclick="javascript:toggle_release('p_3258', 'r_12243'); return false;" /><img src="/themes/savannah/images/ic/toggle_minus.png" id="img_p_3258r_12243" /></a> <strong>2010-06-24_14-59-47</strong>   <a href="shownotes.php?release_id=12243"><img src="/themes/savannah/images/ic/text.png" alt="Read release notes and changelog" title="Read release notes and changelog" /></a> </td> <td style="text-align:center"></td> <TD class="release_date">2010-06-24</TD></TR>
</table><span class="files" id="p_3258r_12243f_0">
<TABLE WIDTH="100%" class="files_table" BORDER="0" CELLSPACING="1" CELLPADDING="2">
<TR class="boxtable">
<TD class="boxtitle">Filename</TD>
<TD class="boxtitle">Size (Kb)</TD>
<TD class="boxtitle">D/L</TD>
<TD class="boxtitle">Arch.</TD>
<TD class="boxtitle">Type</TD>
<TD class="boxtitle">Date</TD></TR>
<colgroup> <col class="frs_filename_col"> <col class="frs_size_col"> <col class="frs_downloads_col"> <col class="frs_architecture_col"> <col class="frs_filetype_col"> <col class="frs_date_col"></colgroup> <TR id="p_3258r_12243f_20238" class="boxitem"><TD><B><A HREF="/file/download.php/1841/20238/p3258_r12243/com.st.st40.microtoolset.updatesite.zip" title="20238 - com.st.st40.microtoolset.updatesite.zip">com.st.st40.microtoolset.updatesite.zip</A></B></TD><TD>2,455</TD><TD>48</TD><TD>Other</TD><TD>Other</TD><TD>2010-06-24</TD></TR>
</table></span><table width="100%" class="release"> <TR id="p_3258r_12236"> <TD><a href="#" onclick="javascript:toggle_release('p_3258', 'r_12236'); return false;" /><img src="/themes/savannah/images/ic/toggle_minus.png" id="img_p_3258r_12236" /></a> <strong>2010-06-24_11-59-04</strong>   <a href="shownotes.php?release_id=12236"><img src="/themes/savannah/images/ic/text.png" alt="Read release notes and changelog" title="Read release notes and changelog" /></a> </td> <td style="text-align:center"></td> <TD class="release_date">2010-06-24</TD></TR>
</table><span class="files" id="p_3258r_12236f_0">
<TABLE WIDTH="100%" class="files_table" BORDER="0" CELLSPACING="1" CELLPADDING="2">
<TR class="boxtable">
<TD class="boxtitle">Filename</TD>
<TD class="boxtitle">Size (Kb)</TD>
<TD class="boxtitle">D/L</TD>
<TD class="boxtitle">Arch.</TD>
<TD class="boxtitle">Type</TD>
<TD class="boxtitle">Date</TD></TR>
<colgroup> <col class="frs_filename_col"> <col class="frs_size_col"> <col class="frs_downloads_col"> <col class="frs_architecture_col"> <col class="frs_filetype_col"> <col class="frs_date_col"></colgroup> <TR id="p_3258r_12236f_20223" class="boxitem"><TD><B><A HREF="/file/download.php/1841/20223/p3258_r12236/com.st.st40.microtoolset.updatesite.zip" title="20223 - com.st.st40.microtoolset.updatesite.zip">com.st.st40.microtoolset.updatesite.zip</A></B></TD><TD>2,455</TD><TD>4</TD><TD>Other</TD><TD>Other</TD><TD>2010-06-24</TD></TR>
</table></span><table width="100%" class="release"> <TR id="p_3258r_12164"> <TD><a href="#" onclick="javascript:toggle_release('p_3258', 'r_12164'); return false;" /><img src="/themes/savannah/images/ic/toggle_minus.png" id="img_p_3258r_12164" /></a> <strong>2010-06-17_11-57-51</strong>   <a href="shownotes.php?release_id=12164"><img src="/themes/savannah/images/ic/text.png" alt="Read release notes and changelog" title="Read release notes and changelog" /></a> </td> <td style="text-align:center"></td> <TD class="release_date">2010-06-17</TD></TR>
</table><span class="files" id="p_3258r_12164f_0">
<TABLE WIDTH="100%" class="files_table" BORDER="0" CELLSPACING="1" CELLPADDING="2">
<TR class="boxtable">
<TD class="boxtitle">Filename</TD>
<TD class="boxtitle">Size (Kb)</TD>
<TD class="boxtitle">D/L</TD>
<TD class="boxtitle">Arch.</TD>
<TD class="boxtitle">Type</TD>
<TD class="boxtitle">Date</TD></TR>
<colgroup> <col class="frs_filename_col"> <col class="frs_size_col"> <col class="frs_downloads_col"> <col class="frs_architecture_col"> <col class="frs_filetype_col"> <col class="frs_date_col"></colgroup> <TR id="p_3258r_12164f_20093" class="boxitem"><TD><B><A HREF="/file/download.php/1841/20093/p3258_r12164/com.st.st40.microtoolset.updatesite.zip" title="20093 - com.st.st40.microtoolset.updatesite.zip">com.st.st40.microtoolset.updatesite.zip</A></B></TD><TD>2,455</TD><TD>16</TD><TD>Other</TD><TD>Other</TD><TD>2010-06-17</TD></TR>
</table></span></div></fieldset><fieldset class="package"><legend><a href="#" onclick="javascript:toggle_package('p_3341'); return false;" /><img src="/themes/savannah/images/ic/toggle_minus.png" id="img_p_3341" /></a>  <strong>ST40 Micro Toolset Test Suite</strong>   <a href="filemodule_monitor.php?filemodule_id=3341"><img src="/themes/savannah/images/ic/notification_start.png"
0
Agirl Messages postés 20 Date d'inscription mardi 30 novembre 2010 Statut Membre Dernière intervention 30 novembre 2010
30 nov. 2010 à 16:30
j'ai ajputé le mauvais fichier
0
zipe31 Messages postés 36402 Date d'inscription dimanche 7 novembre 2010 Statut Contributeur Dernière intervention 27 janvier 2021 6 407
30 nov. 2010 à 17:32
Et en plus il est tronqué (le forum n'accepte qu'un certain nombre de caractères).
Mieux vaut le mettre sur Cijoint.fr (voir lien plus haut) :-))
0
je suis désolée pour le retard de réponse. J'étais absente.
je n'ai pas compris comment mettre mon fichier dans ce lien Cijoint.fr .
si je clique sur ce lien il m'ouvre toujours cette page.

merci
0
zipe31 Messages postés 36402 Date d'inscription dimanche 7 novembre 2010 Statut Contributeur Dernière intervention 27 janvier 2021 6 407
2 déc. 2010 à 07:42
Oups ;-((

Je mettais tromper de lien, toutes mes excuse ;-[

Voila le bon : Cijoint.fr
0
merci c'est fait maintenant :)
0
zipe31 Messages postés 36402 Date d'inscription dimanche 7 novembre 2010 Statut Contributeur Dernière intervention 27 janvier 2021 6 407
2 déc. 2010 à 07:47
Et le lien il est où ?
0
zipe31 Messages postés 36402 Date d'inscription dimanche 7 novembre 2010 Statut Contributeur Dernière intervention 27 janvier 2021 6 407
2 déc. 2010 à 07:48
0
Désolée:
le voici
http://www.cijoint.fr/cjlink.php?file=cj201012/cijiFH6jDK.txt

merci beaucoup
0