Replace \"lolitech\" contact by \"edouard\" contact
authorgreg
Mon, 02 Nov 2009 11:57:29 +0100
changeset 434 092060fd8afb
parent 433 ca07a88ee68a
child 435 75fe73597273
Replace \"lolitech\" contact by \"edouard\" contact
Beremiz.py
beremiz_postinst.py
debian/README.Debian
debian/changelog
debian/control
doc/about.html
i18n/Beremiz_fr_FR.po
i18n/app.fil
i18n/messages.pot
images/EditCfile.png
images/HideVars.png
images/Maximize.png
images/Minimize.png
images/ShowIECcode.png
images/ShowVars.png
images/editIECrawcode.png
images/editPYTHONcode.png
images/editWXGLADE.png
images/icons.svg
images/splash.png
locale/fr_FR/LC_MESSAGES/Beremiz.mo
plugins/python/modules/svgui/pous.xml
plugins/python/pous.xml
setup.py
--- a/Beremiz.py	Wed Oct 28 11:42:47 2009 +0100
+++ b/Beremiz.py	Mon Nov 02 11:57:29 2009 +0100
@@ -1458,10 +1458,8 @@
 An unhandled exception (bug) occured. Bug report saved at :
 (%s)
 
-Please contact LOLITech at:
-+33 (0)3 29 57 60 42
-or please be kind enough to send this file to:
-bugs_beremiz@lolitech.fr
+Please be kind enough to send this file to:
+edouard.tisserant@gmail.com
 
 You should now restart Beremiz.
 
--- a/beremiz_postinst.py	Wed Oct 28 11:42:47 2009 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,91 +0,0 @@
-#!/usr/bin/env python
-# -*- coding: utf-8 -*-
-
-# La première ligne doit commencer par #! et contenir python.
-# Elle sera adaptée au système de destination automatiquement
-
-""" This is a part of Beremiz project.
-
-    Post installation script for win32 system
-    
-    This script creat a shortcut for Beremiz.py in the desktop and the
-    start menu, and remove them at the uninstallation
-    
-"""
-
-import os
-import sys
-
-# Ce script sera aussi lancé lors de la désinstallation.
-# Pour n'exécuter du code que lors de l'installation :
-if sys.argv[1] == '-install':
-    # On récupère le dossier où mes fichiers seront installés (dossier où python est aussi installé sous windows)
-    python_path = sys.prefix
-    # On récupère le chemin de pythonw.exe (l'exécutable python qui n'affiche pas de console).
-    # Si vous voulez une console, remplacez pythonw.exe par python.exe
-    pyw_path = os.path.abspath(os.path.join(python_path, 'pythonw.exe'))
-    # On récupère le dossier coincoin
-    Beremiz_dir = os.path.abspath(os.path.join(python_path, 'LOLITech', 'Beremiz'))
-    
-    # On récupère les chemins de coincoin.py, et de coincoin.ico
-    # (Ben oui, l'icone est au format ico, oubliez le svg, ici on en est encore à la préhistoire.
-    # Heureusement que the GIMP sait faire la conversion !)
-    ico_path = os.path.join(Beremiz_dir, 'Beremiz.ico')
-    script_path = os.path.join(Beremiz_dir, 'Beremiz.py')
-    
-    # Création des raccourcis
-    # Pour chaque raccourci, on essaye de le faire pour tous les utilisateurs (Windows NT/2000/XP),
-    # sinon on le fait pour l'utilisateur courant (Windows 95/98/ME)
-    
-    # Raccourcis du bureau
-    # On essaye de trouver un bureau
-    try:
-        desktop_path = get_special_folder_path("CSIDL_COMMON_DESKTOPDIRECTORY")
-    except OSError:
-        desktop_path = get_special_folder_path("CSIDL_DESKTOPDIRECTORY")
-    
-    # On créé le raccourcis
-    create_shortcut(pyw_path, # programme à lancer
-                    "Can Node Editor", # Description
-                    os.path.join(desktop_path, 'Beremiz.lnk'),  # fichier du raccourcis (gardez le .lnk)
-                    script_path, # Argument (script python)
-                    Beremiz_dir, # Dossier courant
-                    ico_path # Fichier de l'icone
-                    )
-    # On va cafter au programme de désinstallation qu'on a fait un fichier, pour qu'il soit supprimé
-    # lors de la désinstallation
-    file_created(os.path.join(desktop_path, 'Beremiz.lnk'))
-    
-    # Raccourcis dans le menu démarrer (idem qu'avant)
-    try:
-        start_path = get_special_folder_path("CSIDL_COMMON_PROGRAMS")
-    except OSError:
-        start_path = get_special_folder_path("CSIDL_PROGRAMS")
-    
-    
-
-    # Création du dossier dans le menu programme
-    programs_path = os.path.join(start_path, "Beremiz project")
-    try :
-        os.mkdir(programs_path)
-
-    except OSError:
-
-        pass
-    directory_created(programs_path)
-    
-    create_shortcut(pyw_path, # Cible
-                    "Can Node Editor", #Description
-                    os.path.join(programs_path, 'Beremiz.lnk'),  # Fichier
-                    script_path, # Argument
-                    Beremiz_dir, # Dossier de travail
-                    ico_path # Icone
-                    )
-    file_created(os.path.join(programs_path, 'Beremiz.lnk'))
-    
-    # End (youpi-message)
-    # Ce message sera affiché (très) furtivement dans l'installateur.
-    # Vous pouvez vous en servir comme moyen de communication secret, c'est très in.
-    sys.stdout.write("Shortcuts created.")
-    # Fin du bidule
-    sys.exit()
--- a/debian/README.Debian	Wed Oct 28 11:42:47 2009 +0100
+++ b/debian/README.Debian	Mon Nov 02 11:57:29 2009 +0100
@@ -3,4 +3,4 @@
 
 <possible notes regarding this package - if none, delete this file>
 
- -- lolitech <gregory.trelat@lolitech.fr>  Thu, 29 Nov 2007 14:55:13 +0100
+ -- edouard <edouard.tisserant@gmail.com>  Thu, 29 Nov 2007 14:55:13 +0100
--- a/debian/changelog	Wed Oct 28 11:42:47 2009 +0100
+++ b/debian/changelog	Mon Nov 02 11:57:29 2009 +0100
@@ -2,5 +2,5 @@
 
   * Initial release (Closes: #nnnn)  <nnnn is the bug number of your ITP>
 
- -- lolitech <gregory.trelat@lolitech.fr>  Thu, 29 Nov 2007 14:55:13 +0100
+ -- edouard <edouard.tisserant@gmail.com>  Thu, 29 Nov 2007 14:55:13 +0100
 
--- a/debian/control	Wed Oct 28 11:42:47 2009 +0100
+++ b/debian/control	Mon Nov 02 11:57:29 2009 +0100
@@ -1,7 +1,7 @@
 Source: beremiz
 Section: devel
 Priority: standard
-Maintainer: lolitech <gregory.trelat@lolitech.fr>
+Maintainer: edouard <edouard.tisserant@gmail.com>
 Build-Depends: debhelper (>= 5)
 Standards-Version: 3.7.2
 
--- a/doc/about.html	Wed Oct 28 11:42:47 2009 +0100
+++ b/doc/about.html	Mon Nov 02 11:57:29 2009 +0100
@@ -17,15 +17,6 @@
       <a href="http://www.fe.up.pt/si/web_page.inicial">http://www.fe.up.pt/si/web_page.inicial</a>
     </TD>
   </TR>
-  <TR>
-    <TD align="right" valign="top">
-      Supported by :
-    </TD>
-    <TD align="left" valign="top">
-      LOLITech<BR>
-      <a href="http://www.lolitech.fr">http://www.lolitech.fr</a>
-    </TD>
-  </TR>
 </TABLE>
 </CENTER>
 </BODY>
--- a/i18n/Beremiz_fr_FR.po	Wed Oct 28 11:42:47 2009 +0100
+++ b/i18n/Beremiz_fr_FR.po	Mon Nov 02 11:57:29 2009 +0100
@@ -7,8 +7,8 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-10-26 10:51+0100\n"
-"PO-Revision-Date: 2009-10-26 10:51+0100\n"
+"POT-Creation-Date: 2009-11-02 10:40+0100\n"
+"PO-Revision-Date: 2009-11-02 10:52+0100\n"
 "Last-Translator: \n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
 "MIME-Version: 1.0\n"
@@ -22,10 +22,8 @@
 "An unhandled exception (bug) occured. Bug report saved at :\n"
 "(%s)\n"
 "\n"
-"Please contact LOLITech at:\n"
-"+33 (0)3 29 57 60 42\n"
-"or please be kind enough to send this file to:\n"
-"bugs_beremiz@lolitech.fr\n"
+"Please be kind enough to send this file to:\n"
+"edouard.tisserant@gmail.com\n"
 "\n"
 "You should now restart Beremiz.\n"
 "\n"
@@ -35,10 +33,8 @@
 "Une erreur inconnue (bug) est apparu. Le rapport d'erreur a été sauvé dans :\n"
 "(%s)\n"
 "\n"
-"Veuillez contacter LOLITech au :\n"
-"+33 (0)3 29 57 60 42\n"
-"ou envoyez ce fichier à l'adresse :\n"
-"bugs_beremiz@lolitech.fr\n"
+"Envoyez ce fichier à l'adresse :\n"
+"edouard.tisserant@gmail.com\n"
 "\n"
 "Vous devriez redémarrer Beremiz.\n"
 "\n"
@@ -393,8 +389,8 @@
 msgid "Enter the IP of the interface to bind"
 msgstr "Saisissez l'adresse IP de l'interface à lier"
 
-#: ../Beremiz.py:1471
-#: ../Beremiz.py:1481
+#: ../Beremiz.py:1469
+#: ../Beremiz.py:1479
 #: ../plugger.py:873
 #: ../Beremiz_service.py:268
 #: ../Beremiz_service.py:392
--- a/i18n/app.fil	Wed Oct 28 11:42:47 2009 +0100
+++ b/i18n/app.fil	Mon Nov 02 11:57:29 2009 +0100
@@ -1,6 +1,5 @@
 ../Beremiz.py
 ../plugger.py
-../beremiz_postinst.py
 ../Beremiz_service.py
 ../discovery.py
 ../wxPopen.py
--- a/i18n/messages.pot	Wed Oct 28 11:42:47 2009 +0100
+++ b/i18n/messages.pot	Mon Nov 02 11:57:29 2009 +0100
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-10-26 10:51+0100\n"
+"POT-Creation-Date: 2009-11-02 10:40+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23,10 +23,8 @@
 "An unhandled exception (bug) occured. Bug report saved at :\n"
 "(%s)\n"
 "\n"
-"Please contact LOLITech at:\n"
-"+33 (0)3 29 57 60 42\n"
-"or please be kind enough to send this file to:\n"
-"bugs_beremiz@lolitech.fr\n"
+"Please be kind enough to send this file to:\n"
+"edouard.tisserant@gmail.com\n"
 "\n"
 "You should now restart Beremiz.\n"
 "\n"
@@ -372,7 +370,7 @@
 msgid "Enter the IP of the interface to bind"
 msgstr ""
 
-#: ../Beremiz.py:1471 ../Beremiz.py:1481 ../plugger.py:873
+#: ../Beremiz.py:1469 ../Beremiz.py:1479 ../plugger.py:873
 #: ../Beremiz_service.py:268 ../Beremiz_service.py:392
 msgid "Error"
 msgstr ""
Binary file images/EditCfile.png has changed
Binary file images/HideVars.png has changed
Binary file images/Maximize.png has changed
Binary file images/Minimize.png has changed
Binary file images/ShowIECcode.png has changed
Binary file images/ShowVars.png has changed
Binary file images/editIECrawcode.png has changed
Binary file images/editPYTHONcode.png has changed
Binary file images/editWXGLADE.png has changed
--- a/images/icons.svg	Wed Oct 28 11:42:47 2009 +0100
+++ b/images/icons.svg	Mon Nov 02 11:57:29 2009 +0100
@@ -41,12 +41,12 @@
      pagecolor="#ffffff"
      id="base"
      showgrid="false"
-     inkscape:zoom="1.9999999"
-     inkscape:cx="408.78078"
-     inkscape:cy="837.40927"
-     inkscape:window-x="15"
-     inkscape:window-y="25"
-     inkscape:current-layer="g16611"
+     inkscape:zoom="0.99999995"
+     inkscape:cx="225.84672"
+     inkscape:cy="158.90122"
+     inkscape:window-x="84"
+     inkscape:window-y="59"
+     inkscape:current-layer="g18993"
      showguides="true"
      inkscape:guide-bbox="true">
     <inkscape:grid
@@ -85228,24 +85228,8 @@
          y="1063.0302"
          id="tspan16413">2009.0 Beta</tspan></text>
     <g
-       id="g17729"
-       transform="matrix(1.1079964,0,0,1.1079964,-1240.4932,723.37188)">
-      <path
-         d="M 210.40571,340.85362 L 202.96571,340.85362 C 200.83237,340.88029 199.11237,340.14696 197.80571,338.65362 C 196.49904,337.16029 195.8457,335.34696 195.84571,333.21362 L 195.84571,315.41362 L 203.60571,315.41362 L 203.60571,329.97362 C 203.6057,331.30697 203.73903,332.22697 204.00571,332.73362 C 204.27236,333.2403 204.89903,333.49363 205.88571,333.49362 L 210.40571,333.45362 L 210.40571,340.85362 L 210.40571,340.85362 M 212.92957,331.69362 C 212.92957,329.1603 213.80957,326.9603 215.56957,325.09362 C 217.32956,323.22698 219.50289,322.29364 222.08957,322.29362 C 225.07622,322.29364 227.43622,323.24031 229.16957,325.13362 C 230.92955,327.0003 231.82288,329.06697 231.84957,331.33362 C 231.84955,331.3603 231.84955,331.38697 231.84957,331.41362 C 231.84955,331.41363 231.84955,331.42697 231.84957,331.45362 C 231.84955,334.57363 230.84955,337.00029 228.84957,338.73362 C 226.87622,340.46696 224.70289,341.36029 222.32957,341.41362 C 222.27623,341.41362 222.22289,341.41362 222.16957,341.41362 C 222.14289,341.41362 222.11623,341.41362 222.08957,341.41362 C 221.66289,341.41362 221.20956,341.37362 220.72957,341.29362 C 220.24956,341.21362 219.76956,341.09362 219.28957,340.93362 C 217.68956,340.37362 216.2229,339.33363 214.88957,337.81362 C 213.5829,336.29363 212.92957,334.26696 212.92957,331.73362 L 212.92957,331.69362 M 220.04957,331.69362 C 220.04956,332.4403 220.27623,333.02697 220.72957,333.45362 C 221.20956,333.85363 221.72956,334.06696 222.28957,334.09362 C 222.31623,334.09363 222.32956,334.09363 222.32957,334.09362 C 222.35623,334.09363 222.38289,334.09363 222.40957,334.09362 C 222.96956,334.09363 223.47622,333.89363 223.92957,333.49362 C 224.40956,333.06697 224.64956,332.4803 224.64957,331.73362 C 224.64956,331.09363 224.44956,330.6003 224.04957,330.25362 C 223.67622,329.8803 223.24956,329.65364 222.76957,329.57362 C 222.71623,329.54697 222.64956,329.53364 222.56957,329.53362 C 222.51623,329.53364 222.46289,329.53364 222.40957,329.53362 C 222.38289,329.53364 222.35623,329.53364 222.32957,329.53362 C 222.32956,329.53364 222.31623,329.53364 222.28957,329.53362 C 221.72956,329.5603 221.20956,329.77364 220.72957,330.17362 C 220.27623,330.54697 220.04956,331.06697 220.04957,331.73362 L 220.04957,331.69362"
-         style="font-size:40px;font-style:normal;font-variant:normal;font-weight:200;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bauhaus-Heavy-Bold;-inkscape-font-specification:Bauhaus-Heavy-Bold Ultra-Light"
-         id="path17724" />
-      <path
-         d="M 249.67894,340.85362 L 242.23894,340.85362 C 240.1056,340.88029 238.38561,340.14696 237.07894,338.65362 C 235.77228,337.16029 235.11894,335.34696 235.11894,333.21362 L 235.11894,315.41362 L 242.87894,315.41362 L 242.87894,329.97362 C 242.87894,331.30697 243.01227,332.22697 243.27894,332.73362 C 243.5456,333.2403 244.17227,333.49363 245.15894,333.49362 L 249.67894,333.45362 L 249.67894,340.85362 L 249.67894,340.85362 M 251.81535,340.85362 L 251.81535,322.89362 L 259.49535,322.89362 L 259.49535,340.85362 L 251.81535,340.85362 L 251.81535,340.85362 M 251.53535,316.85362 C 251.53535,315.60032 251.96202,314.62698 252.81535,313.93362 C 253.66868,313.21365 254.66868,312.85365 255.81535,312.85362 C 255.94868,312.85365 256.06868,312.86699 256.17535,312.89362 C 256.30868,312.89365 256.42868,312.90699 256.53535,312.93362 C 257.44201,313.06699 258.26868,313.48032 259.01535,314.17362 C 259.76201,314.86698 260.13534,315.77365 260.13535,316.89362 L 260.13535,317.13362 C 260.13534,318.44031 259.70867,319.45365 258.85535,320.17362 C 258.00201,320.86698 257.06868,321.24031 256.05535,321.29362 C 256.00201,321.29364 255.94868,321.29364 255.89535,321.29362 C 255.86868,321.29364 255.84201,321.29364 255.81535,321.29362 C 254.74868,321.29364 253.76201,320.93364 252.85535,320.21362 C 251.97535,319.46698 251.53535,318.36031 251.53535,316.89362 L 251.53535,316.85362"
-         style="font-size:40px;font-style:normal;font-variant:normal;font-weight:200;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;opacity:1;fill:#5759ce;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.34643704px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Bauhaus-Heavy-Bold;-inkscape-font-specification:Bauhaus-Heavy-Bold Ultra-Light"
-         id="path17718" />
-      <path
-         d="M 266.90448,340.85362 L 266.90448,322.53362 L 262.62448,322.53362 L 262.62448,315.41362 L 279.18448,315.41362 L 279.18448,322.53362 L 274.94448,322.53362 L 274.94448,340.85362 L 266.90448,340.85362 L 266.90448,340.85362 M 297.09281,329.13362 L 287.93281,334.33362 L 285.85281,330.57362 L 289.33281,328.57362 C 289.1728,328.4403 288.98613,328.30697 288.77281,328.17362 C 288.58613,328.0403 288.38613,327.94697 288.17281,327.89362 C 288.0928,327.86697 288.0128,327.85364 287.93281,327.85362 C 287.8528,327.82697 287.7728,327.81364 287.69281,327.81362 C 287.63946,327.81364 287.5728,327.82697 287.49281,327.85362 C 287.43947,327.85364 287.3728,327.85364 287.29281,327.85362 C 286.6528,327.98697 286.06613,328.4003 285.53281,329.09362 C 284.99947,329.7603 284.7328,330.54697 284.73281,331.45362 C 284.7328,332.6803 285.06613,333.65363 285.73281,334.37362 C 286.42613,335.06696 287.26613,335.41363 288.25281,335.41362 C 288.62613,335.41363 289.02613,335.3603 289.45281,335.25362 C 289.87946,335.1203 290.30613,334.94696 290.73281,334.73362 C 291.13279,334.5203 291.51946,334.26696 291.89281,333.97362 C 292.29279,333.6803 292.66613,333.33363 293.01281,332.93362 L 297.09281,336.89362 C 296.18612,338.22696 294.97279,339.28029 293.45281,340.05362 C 291.93279,340.82696 290.34613,341.29362 288.69281,341.45362 C 288.50613,341.45362 288.31946,341.45362 288.13281,341.45362 C 287.9728,341.48029 287.79946,341.49362 287.61281,341.49362 C 285.31947,341.49362 283.19947,340.77362 281.25281,339.33362 C 279.33281,337.89363 278.30614,335.57363 278.17281,332.37362 C 278.17281,332.34697 278.15947,332.3203 278.13281,332.29362 C 278.13281,332.2403 278.13281,332.18697 278.13281,332.13362 C 278.13281,332.0803 278.11947,332.0403 278.09281,332.01362 C 278.09281,331.9603 278.09281,331.9203 278.09281,331.89362 C 278.09281,329.14697 278.85281,327.0003 280.37281,325.45362 C 281.8928,323.90697 283.55947,322.93364 285.37281,322.53362 C 285.6928,322.45364 286.0128,322.40031 286.33281,322.37362 C 286.67947,322.32031 287.0128,322.29364 287.33281,322.29362 C 290.18613,322.29364 292.34613,322.98698 293.81281,324.37362 C 295.27946,325.73364 296.37279,327.33364 297.09281,329.17362 L 297.09281,329.13362 M 311.8195,340.85362 L 308.4195,340.85362 C 305.11282,340.88029 302.61949,339.94696 300.9395,338.05362 C 299.28616,336.1603 298.4595,334.0803 298.4595,331.81362 C 298.4595,331.73363 298.4595,331.66697 298.4595,331.61362 C 298.4595,331.53363 298.4595,331.45363 298.4595,331.37362 C 298.56616,329.10697 299.47283,327.02697 301.1795,325.13362 C 302.91282,323.24031 305.41949,322.29364 308.6995,322.29362 L 311.8195,322.25362 L 311.8195,328.85362 L 308.4195,328.85362 C 307.69949,328.8803 307.11282,329.1603 306.6595,329.69362 C 306.20615,330.22697 305.93949,330.8003 305.8595,331.41362 C 305.85949,331.46697 305.85949,331.5203 305.8595,331.57362 C 305.85949,331.62697 305.85949,331.6803 305.8595,331.73362 C 305.85949,331.7603 305.85949,331.8003 305.8595,331.85362 C 305.85949,331.8803 305.85949,331.90697 305.8595,331.93362 C 305.91282,332.54697 306.15282,333.10697 306.5795,333.61362 C 307.03282,334.1203 307.64615,334.37363 308.4195,334.37362 L 311.8195,334.33362 L 311.8195,340.85362 L 311.8195,340.85362 M 314.36637,340.85362 L 314.36637,315.41362 L 321.76637,315.41362 L 321.76637,323.73362 C 322.2997,323.36031 322.87303,323.06698 323.48637,322.85362 C 324.09969,322.61364 324.71303,322.46698 325.32637,322.41362 C 325.43303,322.38698 325.52636,322.37364 325.60637,322.37362 C 325.71303,322.37364 325.80636,322.37364 325.88637,322.37362 C 327.45969,322.37364 328.88636,322.97364 330.16637,324.17362 C 331.47302,325.34697 332.12635,327.10697 332.12637,329.45362 L 332.12637,340.85362 L 324.64637,340.85362 L 324.64637,330.29362 C 324.64636,329.86697 324.52636,329.5203 324.28637,329.25362 C 324.04636,328.98697 323.79303,328.82697 323.52637,328.77362 C 323.47303,328.74697 323.41969,328.73364 323.36637,328.73362 C 323.33969,328.73364 323.29969,328.73364 323.24637,328.73362 C 323.21969,328.73364 323.19303,328.73364 323.16637,328.73362 C 323.16636,328.73364 323.15303,328.73364 323.12637,328.73362 C 322.7797,328.7603 322.4597,328.9203 322.16637,329.21362 C 321.8997,329.4803 321.76636,329.85364 321.76637,330.33362 L 321.76637,340.85362 L 314.36637,340.85362 L 314.36637,340.85362"
-         style="font-size:40px;font-style:normal;font-variant:normal;font-weight:200;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;opacity:1;fill:#939393;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.34643704px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Bauhaus-Heavy-Bold;-inkscape-font-specification:Bauhaus-Heavy-Bold Ultra-Light"
-         id="path17712" />
-    </g>
-    <g
        id="g2414"
-       transform="matrix(0.5511608,0,0,0.5511608,-864.43103,996.99467)">
+       transform="matrix(0.5511608,0,0,0.5511608,-977.19352,996.99467)">
       <path
          d="M 120.87354,163.01839 L 128.91354,163.01839 L 128.91354,179.93839 C 128.91353,180.60507 129.0602,181.0984 129.35354,181.41839 C 129.67353,181.7384 130.00687,181.8984 130.35354,181.89839 C 130.3802,181.8984 130.39353,181.8984 130.39354,181.89839 C 130.4202,181.8984 130.44687,181.8984 130.47354,181.89839 C 130.79353,181.87173 131.08687,181.6984 131.35354,181.37839 C 131.6202,181.0584 131.75353,180.59173 131.75354,179.97839 L 131.75354,163.01839 L 139.79354,163.01839 L 139.79354,179.65839 C 139.79352,180.3784 139.95352,180.9384 140.27354,181.33839 C 140.59352,181.71173 140.95352,181.8984 141.35354,181.89839 C 141.40685,181.8984 141.44685,181.8984 141.47354,181.89839 C 141.52685,181.8984 141.58019,181.88506 141.63354,181.85839 C 141.95352,181.7784 142.24685,181.5784 142.51354,181.25839 C 142.78019,180.9384 142.91352,180.51173 142.91354,179.97839 L 142.91354,163.01839 L 150.95354,163.01839 L 150.95354,180.77839 C 150.95351,183.12506 150.14018,185.00506 148.51354,186.41839 C 146.88685,187.80506 145.10018,188.63172 143.15354,188.89839 C 142.91352,188.95172 142.67352,188.97839 142.43354,188.97839 C 142.19352,189.00506 141.95352,189.01839 141.71354,189.01839 C 140.56686,189.01839 139.48686,188.81839 138.47354,188.41839 C 137.48686,187.99172 136.67353,187.35173 136.03354,186.49839 C 135.31353,187.32506 134.4202,187.93839 133.35354,188.33839 C 132.28686,188.71172 131.1802,188.89839 130.03354,188.89839 C 129.87353,188.89839 129.71353,188.88506 129.55354,188.85839 C 129.4202,188.85839 129.27353,188.85839 129.11354,188.85839 C 127.0602,188.67172 125.16687,187.87173 123.43354,186.45839 C 121.72687,185.01839 120.87354,183.04506 120.87354,180.53839 L 120.87354,163.01839 L 120.87354,163.01839 M 172.95104,176.73839 L 163.79104,181.93839 L 161.71104,178.17839 L 165.19104,176.17839 C 165.03103,176.04507 164.84436,175.91174 164.63104,175.77839 C 164.44437,175.64507 164.24437,175.55174 164.03104,175.49839 C 163.95103,175.47174 163.87103,175.4584 163.79104,175.45839 C 163.71103,175.43174 163.63103,175.4184 163.55104,175.41839 C 163.4977,175.4184 163.43103,175.43174 163.35104,175.45839 C 163.2977,175.4584 163.23103,175.4584 163.15104,175.45839 C 162.51103,175.59174 161.92437,176.00507 161.39104,176.69839 C 160.8577,177.36507 160.59104,178.15173 160.59104,179.05839 C 160.59104,180.28507 160.92437,181.2584 161.59104,181.97839 C 162.28437,182.67173 163.12437,183.0184 164.11104,183.01839 C 164.48437,183.0184 164.88436,182.96506 165.31104,182.85839 C 165.7377,182.72506 166.16436,182.55173 166.59104,182.33839 C 166.99103,182.12506 167.3777,181.87173 167.75104,181.57839 C 168.15103,181.28507 168.52436,180.9384 168.87104,180.53839 L 172.95104,184.49839 C 172.04436,185.83173 170.83103,186.88506 169.31104,187.65839 C 167.79103,188.43172 166.20436,188.89839 164.55104,189.05839 C 164.36437,189.05839 164.1777,189.05839 163.99104,189.05839 C 163.83103,189.08506 163.6577,189.09839 163.47104,189.09839 C 161.1777,189.09839 159.0577,188.37839 157.11104,186.93839 C 155.19104,185.49839 154.16438,183.1784 154.03104,179.97839 C 154.03104,179.95173 154.01771,179.92507 153.99104,179.89839 C 153.99104,179.84507 153.99104,179.79173 153.99104,179.73839 C 153.99104,179.68507 153.97771,179.64507 153.95104,179.61839 C 153.95104,179.56507 153.95104,179.52507 153.95104,179.49839 C 153.95104,176.75174 154.71104,174.60507 156.23104,173.05839 C 157.75104,171.51174 159.4177,170.53841 161.23104,170.13839 C 161.55103,170.05841 161.87103,170.00508 162.19104,169.97839 C 162.5377,169.92508 162.87103,169.89841 163.19104,169.89839 C 166.04436,169.89841 168.20436,170.59174 169.67104,171.97839 C 171.13769,173.33841 172.23102,174.9384 172.95104,176.77839 L 172.95104,176.73839"
          style="font-size:40px;font-style:normal;font-variant:normal;font-weight:200;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bauhaus-Heavy-Bold;-inkscape-font-specification:Bauhaus-Heavy-Bold Ultra-Light"
Binary file images/splash.png has changed
Binary file locale/fr_FR/LC_MESSAGES/Beremiz.mo has changed
--- a/plugins/python/modules/svgui/pous.xml	Wed Oct 28 11:42:47 2009 +0100
+++ b/plugins/python/modules/svgui/pous.xml	Mon Nov 02 11:57:29 2009 +0100
@@ -3,7 +3,7 @@
          xmlns="http://www.plcopen.org/xml/tc6.xsd"
          xmlns:xhtml="http://www.w3.org/1999/xhtml"
          xsi:schemaLocation="http://www.plcopen.org/xml/tc6.xsd">
-  <fileHeader companyName="LOLITECH"
+  <fileHeader companyName="Beremiz"
               productName="Beremiz"
               productVersion="0.0"
               creationDateTime="2008-12-14T16:53:26"/>
--- a/plugins/python/pous.xml	Wed Oct 28 11:42:47 2009 +0100
+++ b/plugins/python/pous.xml	Mon Nov 02 11:57:29 2009 +0100
@@ -3,7 +3,7 @@
          xmlns="http://www.plcopen.org/xml/tc6.xsd"
          xmlns:xhtml="http://www.w3.org/1999/xhtml"
          xsi:schemaLocation="http://www.plcopen.org/xml/tc6.xsd">
-  <fileHeader companyName="LOLITECH"
+  <fileHeader companyName="Beremiz"
               productName="Beremiz"
               productVersion="0.0"
               creationDateTime="2008-12-14T16:53:26"/>
--- a/setup.py	Wed Oct 28 11:42:47 2009 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,39 +0,0 @@
-import os,sys,glob
-from distutils.core import setup
-
-
-install_dir=os.path.join("LOLITech","beremiz")
-
-data_files=[]
-os.getcwd()
-os.chdir(os.getcwd())
-
-def generate(base_dir):
-    listfile=[]
-    if base_dir == "":
-        directory = "."
-    else:
-        directory = base_dir
-    data_files.append((os.path.join(install_dir, base_dir), listfile))
-
-    for element in os.listdir(directory):
-        element_path=os.path.join(base_dir, element)
-        if os.path.isdir(element_path):
-            generate(element_path)
-        elif os.path.isfile(element_path):
-            listfile.append(element_path)
-
-generate("")
-
-
-setup(name='Beremiz',
-      version='0.1',
-      description='Open Source framework for automation',
-      author='Edouard Tisserant, Laurent Bessard',
-      author_email='edouard.tisserant@lolitech.fr,laurent.bessard@lolitech.fr,gregory.trelat@lolitech.fr',
-      url='http://www.beremiz.org',
-      license='GPL',
-      windows=["Beremiz.py"],
-      scripts=['beremiz_postinst.py'],
-      data_files=data_files, # Add files to install
-)
\ No newline at end of file