commit-gnue
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[gnue] r8599 - in trunk/gnue-appserver: . doc doc/man po samples


From: reinhard
Subject: [gnue] r8599 - in trunk/gnue-appserver: . doc doc/man po samples
Date: Tue, 22 Aug 2006 11:19:21 -0500 (CDT)

Author: reinhard
Date: 2006-08-22 11:19:19 -0500 (Tue, 22 Aug 2006)
New Revision: 8599

Modified:
   trunk/gnue-appserver/NEWS
   trunk/gnue-appserver/doc/gcd.dtd
   trunk/gnue-appserver/doc/gld.dtd
   trunk/gnue-appserver/doc/man/gnue-appserver.1
   trunk/gnue-appserver/doc/man/gnue-gsdgen.1
   trunk/gnue-appserver/doc/man/gnue-readgcd.1
   trunk/gnue-appserver/doc/man/gnue-readgld.1
   trunk/gnue-appserver/po/de.po
   trunk/gnue-appserver/po/es.po
   trunk/gnue-appserver/po/hu.po
   trunk/gnue-appserver/po/nl.po
   trunk/gnue-appserver/po/ru.po
   trunk/gnue-appserver/samples/sample.gfd
Log:
Released 0.5.0.99-pre1.

Modified: trunk/gnue-appserver/NEWS
===================================================================
--- trunk/gnue-appserver/NEWS   2006-08-22 15:21:47 UTC (rev 8598)
+++ trunk/gnue-appserver/NEWS   2006-08-22 16:19:19 UTC (rev 8599)
@@ -1,3 +1,11 @@
+New features/changes in version 0.5.1: (????-??-??)
+* Warning if old appserver runs with current client
+* Cleaned up unicode usage, all of gnue-appserver should now be unicode safe
+* Adapted to new gnue-common language adapter interface
+* Massive performance improvements
+* New hessian transport protocol
+* Improved Fink configuration for new version of Fink
+
 New features/changes in version 0.5.0: (2006-03-27)
 * New (object oriented) RPC interface
 * Use Python's datetime library instead of mx.DateTime

Modified: trunk/gnue-appserver/doc/gcd.dtd
===================================================================
--- trunk/gnue-appserver/doc/gcd.dtd    2006-08-22 15:21:47 UTC (rev 8598)
+++ trunk/gnue-appserver/doc/gcd.dtd    2006-08-22 16:19:19 UTC (rev 8599)
@@ -1,4 +1,4 @@
-<!-- GNUe Class Definitions DTD (Version 0.5.0) -->
+<!-- GNUe Class Definitions DTD (Version 0.5.0.99) -->
 
 <!--
      Copyright 2001-2005 Free Software Foundation
@@ -48,66 +48,66 @@
 <!-- Top level element -->
 <!-- ================= -->
 <!ELEMENT module (class*)>
-<!ATTLIST module name ID #REQUIRED>
-<!ATTLIST module comment %text; #IMPLIED>
+  <!ATTLIST module name ID #REQUIRED>
+  <!ATTLIST module comment %text; #IMPLIED>
 
 
 <!-- ======================== -->
 <!-- Child elements of module -->
 <!-- ======================== -->
 <!ELEMENT class (index*, procedure*, property*)>
-<!ATTLIST class name ID #REQUIRED>
-<!ATTLIST class comment %text; #IMPLIED>
-<!ATTLIST class filter %name; #IMPLIED>
-<!ATTLIST class module %name; #IMPLIED>
+  <!ATTLIST class name ID #REQUIRED>
+  <!ATTLIST class comment %text; #IMPLIED>
+  <!ATTLIST class filter %name; #IMPLIED>
+  <!ATTLIST class module %name; #IMPLIED>
 
 
 <!-- ======================= -->
 <!-- Child elements of class -->
 <!-- ======================= -->
 <!ELEMENT index (indexfield*)>
-<!ATTLIST index name ID #REQUIRED>
-<!ATTLIST index unique %boolean;>
+  <!ATTLIST index name ID #REQUIRED>
+  <!ATTLIST index unique %boolean;>
 
 <!ELEMENT procedure (parameter*, #PCDATA)>
-<!ATTLIST procedure name ID #REQUIRED>
-<!ATTLIST procedure comment %text; #IMPLIED>
-<!ATTLIST procedure file %name; #IMPLIED>
-<!ATTLIST procedure language %name; "python">
-<!ATTLIST procedure length %integer; #IMPLIED>
-<!ATTLIST procedure nullable %boolean;>
-<!ATTLIST procedure scale %integer; #IMPLIED>
-<!ATTLIST procedure type %text; #IMPLIED>
+  <!ATTLIST procedure name ID #REQUIRED>
+  <!ATTLIST procedure comment %text; #IMPLIED>
+  <!ATTLIST procedure file %name; #IMPLIED>
+  <!ATTLIST procedure language %name; "python">
+  <!ATTLIST procedure length %integer; #IMPLIED>
+  <!ATTLIST procedure nullable %boolean;>
+  <!ATTLIST procedure scale %integer; #IMPLIED>
+  <!ATTLIST procedure type %text; #IMPLIED>
 
 <!ELEMENT property EMPTY>
-<!ATTLIST property name ID #REQUIRED>
-<!ATTLIST property type %text; #REQUIRED>
-<!ATTLIST property comment %text; #IMPLIED>
-<!ATTLIST property file %name; #IMPLIED>
-<!ATTLIST property language %name; "python">
-<!ATTLIST property length %integer; #IMPLIED>
-<!ATTLIST property nullable %boolean;>
-<!ATTLIST property scale %integer; #IMPLIED>
+  <!ATTLIST property name ID #REQUIRED>
+  <!ATTLIST property type %text; #REQUIRED>
+  <!ATTLIST property comment %text; #IMPLIED>
+  <!ATTLIST property file %name; #IMPLIED>
+  <!ATTLIST property language %name; "python">
+  <!ATTLIST property length %integer; #IMPLIED>
+  <!ATTLIST property nullable %boolean;>
+  <!ATTLIST property scale %integer; #IMPLIED>
 
 
 <!-- ======================= -->
 <!-- Child elements of index -->
 <!-- ======================= -->
 <!ELEMENT indexfield EMPTY>
-<!ATTLIST indexfield name ID #REQUIRED>
+  <!ATTLIST indexfield name ID #REQUIRED>
 
 
 <!-- =========================== -->
 <!-- Child elements of procedure -->
 <!-- =========================== -->
 <!ELEMENT parameter EMPTY>
-<!ATTLIST parameter name ID #REQUIRED>
-<!ATTLIST parameter type %text; #REQUIRED>
-<!ATTLIST parameter comment %text; #IMPLIED>
-<!ATTLIST parameter length %integer; #IMPLIED>
-<!ATTLIST parameter scale %integer; #IMPLIED>
+  <!ATTLIST parameter name ID #REQUIRED>
+  <!ATTLIST parameter type %text; #REQUIRED>
+  <!ATTLIST parameter comment %text; #IMPLIED>
+  <!ATTLIST parameter length %integer; #IMPLIED>
+  <!ATTLIST parameter scale %integer; #IMPLIED>
 
 
 <!-- This DTD was created by gnuedtd
-     Updated: 2006-03-27 11:08:04   -->
+     Updated: 2006-08-22 18:18:53   -->
 

Modified: trunk/gnue-appserver/doc/gld.dtd
===================================================================
--- trunk/gnue-appserver/doc/gld.dtd    2006-08-22 15:21:47 UTC (rev 8598)
+++ trunk/gnue-appserver/doc/gld.dtd    2006-08-22 16:19:19 UTC (rev 8599)
@@ -1,4 +1,4 @@
-<!-- GNUe Language Definitions DTD (Version 0.5.0) -->
+<!-- GNUe Language Definitions DTD (Version 0.5.0.99) -->
 
 <!--
      Copyright 2001-2005 Free Software Foundation
@@ -44,42 +44,42 @@
 <!-- Top level element -->
 <!-- ================= -->
 <!ELEMENT module (class*, message*)>
-<!ATTLIST module name ID #REQUIRED>
-<!ATTLIST module language %text; #REQUIRED>
+  <!ATTLIST module name ID #REQUIRED>
+  <!ATTLIST module language %text; #REQUIRED>
 
 
 <!-- ======================== -->
 <!-- Child elements of module -->
 <!-- ======================== -->
 <!ELEMENT class (procedure*, property*)>
-<!ATTLIST class name ID #REQUIRED>
-<!ATTLIST class label %text; #IMPLIED>
-<!ATTLIST class page %text; #IMPLIED>
+  <!ATTLIST class name ID #REQUIRED>
+  <!ATTLIST class label %text; #IMPLIED>
+  <!ATTLIST class page %text; #IMPLIED>
 
 <!ELEMENT message EMPTY>
-<!ATTLIST message name ID #REQUIRED>
+  <!ATTLIST message name ID #REQUIRED>
 
 
 <!-- ======================= -->
 <!-- Child elements of class -->
 <!-- ======================= -->
 <!ELEMENT procedure EMPTY>
-<!ATTLIST procedure name ID #REQUIRED>
-<!ATTLIST procedure info %integer; #IMPLIED>
-<!ATTLIST procedure label %text; #IMPLIED>
-<!ATTLIST procedure page %text; #IMPLIED>
-<!ATTLIST procedure pos %integer; "0">
-<!ATTLIST procedure search %integer; #IMPLIED>
+  <!ATTLIST procedure name ID #REQUIRED>
+  <!ATTLIST procedure info %integer; #IMPLIED>
+  <!ATTLIST procedure label %text; #IMPLIED>
+  <!ATTLIST procedure page %text; #IMPLIED>
+  <!ATTLIST procedure pos %integer; "0">
+  <!ATTLIST procedure search %integer; #IMPLIED>
 
 <!ELEMENT property EMPTY>
-<!ATTLIST property name ID #REQUIRED>
-<!ATTLIST property info %integer; #IMPLIED>
-<!ATTLIST property label %text; #IMPLIED>
-<!ATTLIST property page %text; #IMPLIED>
-<!ATTLIST property pos %integer; "0">
-<!ATTLIST property search %integer; #IMPLIED>
+  <!ATTLIST property name ID #REQUIRED>
+  <!ATTLIST property info %integer; #IMPLIED>
+  <!ATTLIST property label %text; #IMPLIED>
+  <!ATTLIST property page %text; #IMPLIED>
+  <!ATTLIST property pos %integer; "0">
+  <!ATTLIST property search %integer; #IMPLIED>
 
 
 <!-- This DTD was created by gnuedtd
-     Updated: 2006-03-27 11:08:04   -->
+     Updated: 2006-08-22 18:18:53   -->
 

Modified: trunk/gnue-appserver/doc/man/gnue-appserver.1
===================================================================
--- trunk/gnue-appserver/doc/man/gnue-appserver.1       2006-08-22 15:21:47 UTC 
(rev 8598)
+++ trunk/gnue-appserver/doc/man/gnue-appserver.1       2006-08-22 16:19:19 UTC 
(rev 8599)
@@ -1,4 +1,4 @@
-.TH GNUE\-APPSERVER 1 "27 March 2006" "GNUe Application Server"
+.TH GNUE\-APPSERVER 1 "22 August 2006" "GNUe Application Server"
 .SH NAME
 gnue\-appserver \- GNUe Application Server
 .SH SYNOPSIS
@@ -27,13 +27,13 @@
 Set the Database to use for loading and storing data to <name>.
 gnue\-appserver will search for it in connections.conf.
 .TP
-.B \-\-connections <loc>
-Specifies the location of the connection definition file. <loc> may 
-specify a file name (/usr/local/gnue/etc/connections.conf),or a URL 
-location (http://localhost/connections.conf).If this option is not 
-specified, the environent variable GNUE_CONNECTIONS is checked.If 
-neither of them is set, "/home/reinhard/gnue/etc/connections.conf" 
-is used as a default.
+.B \-\-connections <location>
+Specifies the location of the connection definition file. <location> 
+may specify a file name (/usr/local/gnue/etc/connections.conf),or a 
+URL location (http://localhost/connections.conf).If this option is 
+not specified, the environent variable GNUE_CONNECTIONS is checked.
+If neither of them is set, "/home/reinhard/gnue/etc/connections.
+conf" is used as a default.
 .TP
 .B \-\-database <name>
 Depreciated: Set the Database to use for loading and storing data to 

Modified: trunk/gnue-appserver/doc/man/gnue-gsdgen.1
===================================================================
--- trunk/gnue-appserver/doc/man/gnue-gsdgen.1  2006-08-22 15:21:47 UTC (rev 
8598)
+++ trunk/gnue-appserver/doc/man/gnue-gsdgen.1  2006-08-22 16:19:19 UTC (rev 
8599)
@@ -1,4 +1,4 @@
-.TH GNUE\-GSDGEN 1 "27 March 2006" "geasGsdGen"
+.TH GNUE\-GSDGEN 1 "22 August 2006" "geasGsdGen"
 .SH NAME
 gnue\-gsdgen \- geasGsdGen
 .SH SYNOPSIS
@@ -27,13 +27,13 @@
 .B \-\-connection <connectionname>, \-c
 Use the connection <connectionname> for data retrieval.
 .TP
-.B \-\-connections <loc>
-Specifies the location of the connection definition file. <loc> may 
-specify a file name (/usr/local/gnue/etc/connections.conf),or a URL 
-location (http://localhost/connections.conf).If this option is not 
-specified, the environent variable GNUE_CONNECTIONS is checked.If 
-neither of them is set, "/home/reinhard/gnue/etc/connections.conf" 
-is used as a default.
+.B \-\-connections <location>
+Specifies the location of the connection definition file. <location> 
+may specify a file name (/usr/local/gnue/etc/connections.conf),or a 
+URL location (http://localhost/connections.conf).If this option is 
+not specified, the environent variable GNUE_CONNECTIONS is checked.
+If neither of them is set, "/home/reinhard/gnue/etc/connections.
+conf" is used as a default.
 .TP
 .B \-\-database <database>, \-d
 Depreciated: Set the Database to use for data to <name>. 

Modified: trunk/gnue-appserver/doc/man/gnue-readgcd.1
===================================================================
--- trunk/gnue-appserver/doc/man/gnue-readgcd.1 2006-08-22 15:21:47 UTC (rev 
8598)
+++ trunk/gnue-appserver/doc/man/gnue-readgcd.1 2006-08-22 16:19:19 UTC (rev 
8599)
@@ -1,4 +1,4 @@
-.TH READGCD 1 "27 March 2006" "readgcd"
+.TH READGCD 1 "22 August 2006" "readgcd"
 .SH NAME
 readgcd \- readgcd
 .SH SYNOPSIS
@@ -23,13 +23,13 @@
 .B \-\-connection <connectionname>, \-c
 Use the connection <connectionname> for creating the schema
 .TP
-.B \-\-connections <loc>
-Specifies the location of the connection definition file. <loc> may 
-specify a file name (/usr/local/gnue/etc/connections.conf),or a URL 
-location (http://localhost/connections.conf).If this option is not 
-specified, the environent variable GNUE_CONNECTIONS is checked.If 
-neither of them is set, "/home/reinhard/gnue/etc/connections.conf" 
-is used as a default.
+.B \-\-connections <location>
+Specifies the location of the connection definition file. <location> 
+may specify a file name (/usr/local/gnue/etc/connections.conf),or a 
+URL location (http://localhost/connections.conf).If this option is 
+not specified, the environent variable GNUE_CONNECTIONS is checked.
+If neither of them is set, "/home/reinhard/gnue/etc/connections.
+conf" is used as a default.
 .TP
 .B \-\-debug-file <filename>
 Sends all debugging messages to a specified file (e.g., 

Modified: trunk/gnue-appserver/doc/man/gnue-readgld.1
===================================================================
--- trunk/gnue-appserver/doc/man/gnue-readgld.1 2006-08-22 15:21:47 UTC (rev 
8598)
+++ trunk/gnue-appserver/doc/man/gnue-readgld.1 2006-08-22 16:19:19 UTC (rev 
8599)
@@ -1,4 +1,4 @@
-.TH GNUE\-READGLD 1 "27 March 2006" "gnue-readgld"
+.TH GNUE\-READGLD 1 "22 August 2006" "gnue-readgld"
 .SH NAME
 gnue\-readgld \- gnue\-readgld
 .SH SYNOPSIS
@@ -20,13 +20,13 @@
 .B \-\-connection <connectionname>, \-c
 Use the connection <connectionname> for creating the schema
 .TP
-.B \-\-connections <loc>
-Specifies the location of the connection definition file. <loc> may 
-specify a file name (/usr/local/gnue/etc/connections.conf),or a URL 
-location (http://localhost/connections.conf).If this option is not 
-specified, the environent variable GNUE_CONNECTIONS is checked.If 
-neither of them is set, "/home/reinhard/gnue/etc/connections.conf" 
-is used as a default.
+.B \-\-connections <location>
+Specifies the location of the connection definition file. <location> 
+may specify a file name (/usr/local/gnue/etc/connections.conf),or a 
+URL location (http://localhost/connections.conf).If this option is 
+not specified, the environent variable GNUE_CONNECTIONS is checked.
+If neither of them is set, "/home/reinhard/gnue/etc/connections.
+conf" is used as a default.
 .TP
 .B \-\-debug-file <filename>
 Sends all debugging messages to a specified file (e.g., 

Modified: trunk/gnue-appserver/po/de.po
===================================================================
--- trunk/gnue-appserver/po/de.po       2006-08-22 15:21:47 UTC (rev 8598)
+++ trunk/gnue-appserver/po/de.po       2006-08-22 16:19:19 UTC (rev 8599)
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: GNUe-AppServer 0.4\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-03-27 11:08+CEST\n"
+"POT-Creation-Date: 2006-08-22 18:18+CEST\n"
 "PO-Revision-Date: 2006-03-24 13:40+0100\n"
 "Last-Translator: Reinhard M�ller <address@hidden>\n"
 "Language-Team: \n"
@@ -35,12 +35,12 @@
 msgid "Duplicate instance '%(row)s' in class '%(table)s'"
 msgstr "Der Datensatz '%(row)s' der Klasse '%(table)s' existiert bereits"
 
-#: data.py:1990 geasInstance.py:481
+#: data.py:1901 geasInstance.py:470
 msgid "Order-by sequence mismatch: '%(self)s' and '%(other)s'"
 msgstr ""
 "Die Sortierreihenfolge in '%(self)s' und '%(other)s' stimmt nicht �berein"
 
-#: data.py:1999 geasInstance.py:490
+#: data.py:1910 geasInstance.py:479
 msgid ""
 "Order-by sequence element has different directions: '%(self)s', '%(other)s'"
 msgstr ""
@@ -144,11 +144,19 @@
 "Erzeugt/Aktualisiert ein Datenbankschema aus einer Klassendefinitionsdatei\n"
 "(gcd-Datei) und aktualisiert die Daten aller gnue_*-Klassen"
 
+#: gcd/readgcd.py:121 geasGsdGen.py:82 gld/readgld.py:101
+msgid "connectionname"
+msgstr ""
+
 #: gcd/readgcd.py:122 gld/readgld.py:102
 msgid "Use the connection <connectionname> for creating the schema"
 msgstr ""
 "Daten und Anweisungen werden an die Verbindung <connectionname> gesandt"
 
+#: gcd/readgcd.py:124
+msgid "filename"
+msgstr ""
+
 #: gcd/readgcd.py:125
 msgid "Also send the code for creating the schema to this file."
 msgstr ""
@@ -161,6 +169,10 @@
 "not created automatically."
 msgstr "Es wird nur der SQL-Code erzeugt. Das Schema wird nicht ver�ndert."
 
+#: gcd/readgcd.py:131 gld/readgld.py:104
+msgid "user"
+msgstr ""
+
 #: gcd/readgcd.py:132 gld/readgld.py:105
 msgid ""
 "Set the username for the database. If the database is to be created, this "
@@ -169,6 +181,10 @@
 "Bestimmt den Benutzernamen f�r die Datenbank. Falls die Datenbank erzeugt\n"
 "wird, wird dieser Benutzer zum Eigent�mer der Datenbank."
 
+#: gcd/readgcd.py:135 gld/readgld.py:108
+msgid "password"
+msgstr ""
+
 #: gcd/readgcd.py:136 gld/readgld.py:109
 msgid "Set the password for the database."
 msgstr "Passwort f�r die Datenbankverbindung."
@@ -237,11 +253,11 @@
 "Interner Fehler: Es gibt mehr als einen (%(numrec)s) Datensatz f�r den "
 "Benutzer '%(username)s'"
 
-#: geasAuthentication.py:114
+#: geasAuthentication.py:113
 msgid "Invalid password for user '%s'"
 msgstr "Ung�ltiges Passwort f�r den Benutzer '%s'"
 
-#: geasAuthentication.py:176
+#: geasAuthentication.py:175
 msgid "User '%s' logged in."
 msgstr "Benutzer '%s' angemeldet."
 
@@ -317,6 +333,10 @@
 "Mit diesem Werkzeug k�nnen Daten aus einer Datenbank in eine GNUe Schema \n"
 "Definitionsdatei (gsd) exportiert werden."
 
+#: geasGsdGen.py:77
+msgid "database"
+msgstr ""
+
 #: geasGsdGen.py:78
 msgid ""
 "Depreciated: Set the Database to use for data to <name>. gnue-appserver will "
@@ -331,6 +351,10 @@
 "Die zu exportierenden Daten werden aus der Verbindung <connectionname> "
 "gelesen."
 
+#: geasGsdGen.py:85
+msgid "file"
+msgstr ""
+
 #: geasGsdGen.py:86
 msgid "Name of the resulting gsd-file"
 msgstr "Name der erzeugten GSD-Datei"
@@ -524,23 +548,23 @@
 msgid "Special option for windows service install/update command."
 msgstr "Spezielle Option f�r Windows Dienst Installation/Aktualisierung."
 
-#: geasRpcServer.py:218 geasRpcServer.py:238
+#: geasRpcServer.py:218 geasRpcServer.py:238 geasRpcServer.py:247
 msgid "Exporting our services via %(rpctype)s (port %(port)s) ..."
 msgstr "Dienste werden via %(rpctype)s (Port %(port)s) exportiert ..."
 
-#: geasRpcServer.py:247
+#: geasRpcServer.py:257
 msgid "Exporting our services via sockets (EXPERIMENTAL!) ..."
 msgstr "Dienste werden via Sockets exportiert (EXPERIMENTELL!) ..."
 
-#: geasRpcServer.py:252
+#: geasRpcServer.py:262
 msgid "The protocol you've set is currently not supported."
 msgstr "Das gew�hlte Protokoll ist nicht verf�gbar."
 
-#: geasRpcServer.py:261
+#: geasRpcServer.py:271
 msgid "Status: %s Sessions opened"
 msgstr "Status: %s Sitzungen ge�ffnet"
 
-#: geasRpcServer.py:300
+#: geasRpcServer.py:310
 msgid ""
 "\n"
 "... GNUe Application Server up and running ...\n"
@@ -548,11 +572,11 @@
 "\n"
 "... GNUe Application Server gestartet ...\n"
 
-#: geasRpcServer.py:323
+#: geasRpcServer.py:333
 msgid "Appserver is shutting down....ok"
 msgstr "Appserver wird beendet ..."
 
-#: geasRpcServer.py:363
+#: geasRpcServer.py:373
 msgid ""
 "\n"
 "GNUe Application Server is running a simple self test\n"
@@ -568,23 +592,23 @@
 "VORAUSSETZUNG: Die Datenbank muss mit dem 'address_person'-Beispiel\n"
 "gef�llt sein.\n"
 
-#: geasRpcServer.py:372
+#: geasRpcServer.py:382
 msgid "Step 1: Starting Session Manager ..."
 msgstr "Schritt 1: Session-Manager starten ..."
 
-#: geasRpcServer.py:375
+#: geasRpcServer.py:385
 msgid "Step 2: Opening session (user 'hacker', password 'secret') ..."
 msgstr "Schritt 2: Session mit User 'hacker' und Passwort 'secret' �ffnen ..."
 
-#: geasRpcServer.py:380
+#: geasRpcServer.py:390
 msgid "Step 3: Creating object list ..."
 msgstr "Schritt 3: Objektliste erzeugen ..."
 
-#: geasRpcServer.py:384
+#: geasRpcServer.py:394
 msgid "Step 4: Retrieving first instance ..."
 msgstr "Schritt 4: Erste Instanz abrufen ..."
 
-#: geasRpcServer.py:388
+#: geasRpcServer.py:398
 msgid ""
 "\n"
 "These are the values of the first instance:\n"
@@ -598,11 +622,11 @@
 "  Stra�e : %(street)s\n"
 "  Stadt  : %(city)s\n"
 
-#: geasRpcServer.py:396
+#: geasRpcServer.py:406
 msgid "Step 5: Retrieving defined filters ..."
 msgstr "Schritt 5: definierte Filter abrufen ..."
 
-#: geasRpcServer.py:400
+#: geasRpcServer.py:410
 msgid "Selftest passed!"
 msgstr "Selbsttest beendet."
 
@@ -712,6 +736,10 @@
 msgid "  Messages: %(ins)3d inserted, %(upd)3d updated, %(kept)3d unchanged."
 msgstr "  Meldungen: %(ins)3d neu, %(upd)3d ge�ndert, %(kept)3d unver�ndert."
 
+#: language/App.py:42
+msgid "name"
+msgstr ""
+
 #: language/App.py:44
 msgid "Connect to the appserver using the connection <name>"
 msgstr "Name der Verbindung zum GNUe Application Server"
@@ -729,6 +757,12 @@
 msgid "Message '%s' not found"
 msgstr "Meldung '%s' nicht gefunden"
 
+#: language/Session.py:63
+msgid ""
+"RPC Interface Version Mismatch!Please update to Appserver Version 0.4.4 or "
+"higher!"
+msgstr ""
+
 #: repository.py:45
 msgid "Filter '%s' not found in class repository"
 msgstr "Die Filterklasse '%s' kann im Classrepository nicht gefunden werden"
@@ -783,35 +817,35 @@
 "Die Eigenschaft '%(property)s' der Klasse '%(class)s' ist keine "
 "Referenzeigenschaft"
 
-#: repository.py:1342
+#: repository.py:1336
 msgid "string does not support 'scale'"
 msgstr "Strings unterst�tzen keine Genauigkeit"
 
-#: repository.py:1347
+#: repository.py:1341
 msgid "%s does not support 'length'"
 msgstr "%s unterst�tzt keine L�nge"
 
-#: repository.py:1349
+#: repository.py:1343
 msgid "%s does not support 'scale'"
 msgstr "%s unterst�tzt keine Genauigkeit"
 
-#: repository.py:1354
+#: repository.py:1348
 msgid "number without 'length'"
 msgstr "Numerische Angabe ohne L�nge"
 
-#: repository.py:1379
+#: repository.py:1373
 msgid "Reference types must not have a 'length'"
 msgstr "Referenztypen d�rfen keine L�ngenangabe haben"
 
-#: repository.py:1382
+#: repository.py:1376
 msgid "Reference types must not have a 'scale'"
 msgstr "Referenztypen d�rfen keine Genauigkeitsangabe haben"
 
-#: repository.py:1410
+#: repository.py:1404
 msgid "%s: Procedure has no result, but a 'length' is specified."
 msgstr "Die Prozedur '%s' hat kein Ergebnis, trotzdem ist eine L�nge angegeben"
 
-#: repository.py:1413
+#: repository.py:1407
 msgid "%s: Procedure has no result, but a 'scale' is specified."
 msgstr ""
 "Die Prozedur '%s' hat kein Ergebnis, trotzdem ist eine Genauigkeit angegeben"

Modified: trunk/gnue-appserver/po/es.po
===================================================================
--- trunk/gnue-appserver/po/es.po       2006-08-22 15:21:47 UTC (rev 8598)
+++ trunk/gnue-appserver/po/es.po       2006-08-22 16:19:19 UTC (rev 8599)
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: GNUe-AppServer 0.1\n"
-"POT-Creation-Date: 2006-03-27 11:08+CEST\n"
+"POT-Creation-Date: 2006-08-22 18:18+CEST\n"
 "PO-Revision-Date: $Date$\n"
 "Last-Translator: Jose Esteban <address@hidden>\n"
 "MIME-Version: 1.0\n"
@@ -30,11 +30,11 @@
 msgid "Duplicate instance '%(row)s' in class '%(table)s'"
 msgstr ""
 
-#: data.py:1990 geasInstance.py:481
+#: data.py:1901 geasInstance.py:470
 msgid "Order-by sequence mismatch: '%(self)s' and '%(other)s'"
 msgstr ""
 
-#: data.py:1999 geasInstance.py:490
+#: data.py:1910 geasInstance.py:479
 msgid ""
 "Order-by sequence element has different directions: '%(self)s', '%(other)s'"
 msgstr ""
@@ -130,10 +130,19 @@
 "and maintain data for all gnue_* classes"
 msgstr ""
 
+#: gcd/readgcd.py:121 geasGsdGen.py:82 gld/readgld.py:101
+#, fuzzy
+msgid "connectionname"
+msgstr "Conexion"
+
 #: gcd/readgcd.py:122 gld/readgld.py:102
 msgid "Use the connection <connectionname> for creating the schema"
 msgstr ""
 
+#: gcd/readgcd.py:124
+msgid "filename"
+msgstr ""
+
 #: gcd/readgcd.py:125
 msgid "Also send the code for creating the schema to this file."
 msgstr ""
@@ -144,12 +153,20 @@
 "not created automatically."
 msgstr ""
 
+#: gcd/readgcd.py:131 gld/readgld.py:104
+msgid "user"
+msgstr ""
+
 #: gcd/readgcd.py:132 gld/readgld.py:105
 msgid ""
 "Set the username for the database. If the database is to be created, this "
 "username will be it's owner."
 msgstr ""
 
+#: gcd/readgcd.py:135 gld/readgld.py:108
+msgid "password"
+msgstr ""
+
 #: gcd/readgcd.py:136 gld/readgld.py:109
 #, fuzzy
 msgid "Set the password for the database."
@@ -222,12 +239,12 @@
 "Internal Error: More than one (%(numrec)s) record for user '%(username)s'."
 msgstr ""
 
-#: geasAuthentication.py:114
+#: geasAuthentication.py:113
 #, fuzzy
 msgid "Invalid password for user '%s'"
 msgstr "Valor invalido '%s' para el campo"
 
-#: geasAuthentication.py:176
+#: geasAuthentication.py:175
 msgid "User '%s' logged in."
 msgstr "Usuario '%s' aceptado"
 
@@ -297,6 +314,10 @@
 msgstr ""
 "Utilidad para obtener gui�n SQL desde fichero GNUe Class Definition (gcd)"
 
+#: geasGsdGen.py:77
+msgid "database"
+msgstr ""
+
 #: geasGsdGen.py:78
 #, fuzzy
 msgid ""
@@ -310,6 +331,11 @@
 msgid "Use the connection <connectionname> for data retrieval."
 msgstr ""
 
+#: geasGsdGen.py:85
+#, fuzzy
+msgid "file"
+msgstr "&Archivo"
+
 #: geasGsdGen.py:86
 msgid "Name of the resulting gsd-file"
 msgstr "Nombre del fichero-gsd resultante"
@@ -505,23 +531,23 @@
 msgid "Special option for windows service install/update command."
 msgstr ""
 
-#: geasRpcServer.py:218 geasRpcServer.py:238
+#: geasRpcServer.py:218 geasRpcServer.py:238 geasRpcServer.py:247
 msgid "Exporting our services via %(rpctype)s (port %(port)s) ..."
 msgstr "Exportando nuestros servicios v�a %(rpctype)s (port %(port)s) ..."
 
-#: geasRpcServer.py:247
+#: geasRpcServer.py:257
 msgid "Exporting our services via sockets (EXPERIMENTAL!) ..."
 msgstr "Exportando nuestros servicios v�a sockets (�experimental!) ..."
 
-#: geasRpcServer.py:252
+#: geasRpcServer.py:262
 msgid "The protocol you've set is currently not supported."
 msgstr "El protocolo establecido no est� soportado actualmente."
 
-#: geasRpcServer.py:261
+#: geasRpcServer.py:271
 msgid "Status: %s Sessions opened"
 msgstr "Estado: %s sesiones abiertas."
 
-#: geasRpcServer.py:300
+#: geasRpcServer.py:310
 msgid ""
 "\n"
 "... GNUe Application Server up and running ...\n"
@@ -529,11 +555,11 @@
 "\n"
 "... GNUe Application Server arrancado y listo ...\n"
 
-#: geasRpcServer.py:323
+#: geasRpcServer.py:333
 msgid "Appserver is shutting down....ok"
 msgstr "Appserver est� finalizando ... ok"
 
-#: geasRpcServer.py:363
+#: geasRpcServer.py:373
 msgid ""
 "\n"
 "GNUe Application Server is running a simple self test\n"
@@ -548,23 +574,23 @@
 "ANTES hay que poblar la base de datos con los datos del\n"
 "ejemplo \"address_person\".\n"
 
-#: geasRpcServer.py:372
+#: geasRpcServer.py:382
 msgid "Step 1: Starting Session Manager ..."
 msgstr "Fase 1: Arrancando el gestor de sesiones ..."
 
-#: geasRpcServer.py:375
+#: geasRpcServer.py:385
 msgid "Step 2: Opening session (user 'hacker', password 'secret') ..."
 msgstr "Fase 2: Abriendo sesi�n (usuario 'hacker', clave 'secret') ..."
 
-#: geasRpcServer.py:380
+#: geasRpcServer.py:390
 msgid "Step 3: Creating object list ..."
 msgstr "Fase 3: Construyendo la lista de objetos ..."
 
-#: geasRpcServer.py:384
+#: geasRpcServer.py:394
 msgid "Step 4: Retrieving first instance ..."
 msgstr "Fase 4: Recuperando la primera instancia ..."
 
-#: geasRpcServer.py:388
+#: geasRpcServer.py:398
 msgid ""
 "\n"
 "These are the values of the first instance:\n"
@@ -573,12 +599,12 @@
 "  City  : %(city)s\n"
 msgstr ""
 
-#: geasRpcServer.py:396
+#: geasRpcServer.py:406
 #, fuzzy
 msgid "Step 5: Retrieving defined filters ..."
 msgstr "Fase 4: Recuperando la primera instancia ..."
 
-#: geasRpcServer.py:400
+#: geasRpcServer.py:410
 msgid "Selftest passed!"
 msgstr "�Autocomprobaci�n positiva!"
 
@@ -691,6 +717,11 @@
 msgid "  Messages: %(ins)3d inserted, %(upd)3d updated, %(kept)3d unchanged."
 msgstr ""
 
+#: language/App.py:42
+#, fuzzy
+msgid "name"
+msgstr "Nombre"
+
 #: language/App.py:44
 msgid "Connect to the appserver using the connection <name>"
 msgstr ""
@@ -709,6 +740,12 @@
 msgid "Message '%s' not found"
 msgstr "No se encuentra la clase '%s'"
 
+#: language/Session.py:63
+msgid ""
+"RPC Interface Version Mismatch!Please update to Appserver Version 0.4.4 or "
+"higher!"
+msgstr ""
+
 #: repository.py:45
 #, fuzzy
 msgid "Filter '%s' not found in class repository"
@@ -765,37 +802,37 @@
 msgid "'%(property)s' of class '%(class)s' is not a reference property"
 msgstr "La clase '%s' no se encuentra en el repositorio"
 
-#: repository.py:1342
+#: repository.py:1336
 msgid "string does not support 'scale'"
 msgstr "No se soporta 'scale'"
 
-#: repository.py:1347
+#: repository.py:1341
 #, fuzzy
 msgid "%s does not support 'length'"
 msgstr "No se soporta 'scale'"
 
-#: repository.py:1349
+#: repository.py:1343
 #, fuzzy
 msgid "%s does not support 'scale'"
 msgstr "No se soporta 'scale'"
 
-#: repository.py:1354
+#: repository.py:1348
 msgid "number without 'length'"
 msgstr ""
 
-#: repository.py:1379
+#: repository.py:1373
 msgid "Reference types must not have a 'length'"
 msgstr ""
 
-#: repository.py:1382
+#: repository.py:1376
 msgid "Reference types must not have a 'scale'"
 msgstr ""
 
-#: repository.py:1410
+#: repository.py:1404
 msgid "%s: Procedure has no result, but a 'length' is specified."
 msgstr ""
 
-#: repository.py:1413
+#: repository.py:1407
 msgid "%s: Procedure has no result, but a 'scale' is specified."
 msgstr ""
 
@@ -1883,9 +1920,6 @@
 #~ msgid "Display info about GNUe Forms."
 #~ msgstr "Despliega informacion sobre GNUe Forms."
 
-#~ msgid "&File"
-#~ msgstr "&Archivo"
-
 #~ msgid "&Edit"
 #~ msgstr "&Editar"
 
@@ -1981,15 +2015,9 @@
 #~ msgid "Cancel"
 #~ msgstr "Cancelar"
 
-#~ msgid "Name"
-#~ msgstr "Nombre"
-
 #~ msgid "Source"
 #~ msgstr "Fuente"
 
-#~ msgid "Connection"
-#~ msgstr "Conexion"
-
 #~ msgid "References"
 #~ msgstr "Referencias"
 

Modified: trunk/gnue-appserver/po/hu.po
===================================================================
--- trunk/gnue-appserver/po/hu.po       2006-08-22 15:21:47 UTC (rev 8598)
+++ trunk/gnue-appserver/po/hu.po       2006-08-22 16:19:19 UTC (rev 8599)
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: GNUe-AppServer 0.3\n"
-"POT-Creation-Date: 2006-03-27 11:08+CEST\n"
+"POT-Creation-Date: 2006-08-22 18:18+CEST\n"
 "PO-Revision-Date: 2006-03-24 21:36+0100\n"
 "Last-Translator: Kmetyk� G�bor <address@hidden>\n"
 "MIME-Version: 1.0\n"
@@ -32,11 +32,11 @@
 msgid "Duplicate instance '%(row)s' in class '%(table)s'"
 msgstr "Duplik�lt '%(row)s' p�ld�ny a '%(table)s' oszt�lyban"
 
-#: data.py:1990 geasInstance.py:481
+#: data.py:1901 geasInstance.py:470
 msgid "Order-by sequence mismatch: '%(self)s' and '%(other)s'"
 msgstr "Order-by sorozat elt�r�s: '%(self)s' �s '%(other)s'"
 
-#: data.py:1999 geasInstance.py:490
+#: data.py:1910 geasInstance.py:479
 msgid ""
 "Order-by sequence element has different directions: '%(self)s', '%(other)s'"
 msgstr "Order-by sorozat elem�nek elt�r� ir�nya van: '%(self)s', '%(other)s'"
@@ -139,10 +139,18 @@
 "file-b�l\n"
 "�s kezeli a gnue_* oszt�lyok adatait"
 
+#: gcd/readgcd.py:121 geasGsdGen.py:82 gld/readgld.py:101
+msgid "connectionname"
+msgstr ""
+
 #: gcd/readgcd.py:122 gld/readgld.py:102
 msgid "Use the connection <connectionname> for creating the schema"
 msgstr "A <connectionname> kapcsolatot haszn�lja a s�ma l�trehoz�s�hoz"
 
+#: gcd/readgcd.py:124
+msgid "filename"
+msgstr ""
+
 #: gcd/readgcd.py:125
 msgid "Also send the code for creating the schema to this file."
 msgstr "A s�ma l�trehoz�s�t v�gz� k�dot ebbe a f�jlba is elk�ldi."
@@ -155,6 +163,10 @@
 "Ha ez a jelz� be van �ll�tva, csak a kimeneti f�jlba ker�l a k�d, a s�ma nem "
 "ker�l automatikusan l�trehoz�sra."
 
+#: gcd/readgcd.py:131 gld/readgld.py:104
+msgid "user"
+msgstr ""
+
 #: gcd/readgcd.py:132 gld/readgld.py:105
 msgid ""
 "Set the username for the database. If the database is to be created, this "
@@ -163,6 +175,10 @@
 "Adatb�zis felhaszn�l� nev�nek megad�sa. Ha az adatb�zist l�tre kell hozni, "
 "ez a felhaszn�l� lesz a tulajdonosa."
 
+#: gcd/readgcd.py:135 gld/readgld.py:108
+msgid "password"
+msgstr ""
+
 #: gcd/readgcd.py:136 gld/readgld.py:109
 msgid "Set the password for the database."
 msgstr "Megadja az adatb�zishoz tartoz� jelsz�t."
@@ -235,11 +251,11 @@
 msgstr ""
 "Bels� hiba: Egyn�l t�bb (%(numrec)s) rekord a '%(username)s' felhaszn�l�n�l."
 
-#: geasAuthentication.py:114
+#: geasAuthentication.py:113
 msgid "Invalid password for user '%s'"
 msgstr "�rv�nytelen jelsz� '%s' felhaszn�l�hoz"
 
-#: geasAuthentication.py:176
+#: geasAuthentication.py:175
 msgid "User '%s' logged in."
 msgstr "'%s' felhaszn�l� bejelentkezett."
 
@@ -316,6 +332,10 @@
 "Egy eszk�z adatok ki�r�s�ra egy adatb�zisb�l GNUe S�madefin�ci�s f�jlba "
 "(gsd)."
 
+#: geasGsdGen.py:77
+msgid "database"
+msgstr ""
+
 #: geasGsdGen.py:78
 msgid ""
 "Depreciated: Set the Database to use for data to <name>. gnue-appserver will "
@@ -329,6 +349,10 @@
 msgid "Use the connection <connectionname> for data retrieval."
 msgstr "A <connectionname> kapcsolatot haszn�lja az adat kinyer�s�hez."
 
+#: geasGsdGen.py:85
+msgid "file"
+msgstr ""
+
 #: geasGsdGen.py:86
 msgid "Name of the resulting gsd-file"
 msgstr "A l�trej�v� gsd-f�jl neve"
@@ -535,23 +559,23 @@
 msgstr ""
 "Speci�lis lehet�s�gek a Windows szolg�ltat�s telep�t�s�hez/friss�t�s�hez."
 
-#: geasRpcServer.py:218 geasRpcServer.py:238
+#: geasRpcServer.py:218 geasRpcServer.py:238 geasRpcServer.py:247
 msgid "Exporting our services via %(rpctype)s (port %(port)s) ..."
 msgstr "Szolg�ltat�sok exportja ezen kereszt�l: %(rpctype)s (port %(port)s)..."
 
-#: geasRpcServer.py:247
+#: geasRpcServer.py:257
 msgid "Exporting our services via sockets (EXPERIMENTAL!) ..."
 msgstr "Szolg�ltat�sok exportja socketen kereszt�l (K�S�RLETI!)..."
 
-#: geasRpcServer.py:252
+#: geasRpcServer.py:262
 msgid "The protocol you've set is currently not supported."
 msgstr "A be�ll�tott protokoll jelenleg nem t�mogatott."
 
-#: geasRpcServer.py:261
+#: geasRpcServer.py:271
 msgid "Status: %s Sessions opened"
 msgstr "�llapot: %s nyitott session"
 
-#: geasRpcServer.py:300
+#: geasRpcServer.py:310
 msgid ""
 "\n"
 "... GNUe Application Server up and running ...\n"
@@ -559,11 +583,11 @@
 "\n"
 "... GNUe Application Server elindult �s m�k�dik ...\n"
 
-#: geasRpcServer.py:323
+#: geasRpcServer.py:333
 msgid "Appserver is shutting down....ok"
 msgstr "Az Appserver le�ll...ok"
 
-#: geasRpcServer.py:363
+#: geasRpcServer.py:373
 msgid ""
 "\n"
 "GNUe Application Server is running a simple self test\n"
@@ -579,24 +603,24 @@
 "EL�FELT�TELEK: Az adatb�zist fel kell t�lteni\n"
 "'az \"address_person\" p�ld�val.\n"
 
-#: geasRpcServer.py:372
+#: geasRpcServer.py:382
 msgid "Step 1: Starting Session Manager ..."
 msgstr "1. l�p�s: Session Manager ind�t�sa..."
 
-#: geasRpcServer.py:375
+#: geasRpcServer.py:385
 msgid "Step 2: Opening session (user 'hacker', password 'secret') ..."
 msgstr ""
 "2. l�p�s: Session megnyit�sa (felhaszn�l�: 'hacker', jelsz�: 'secret')..."
 
-#: geasRpcServer.py:380
+#: geasRpcServer.py:390
 msgid "Step 3: Creating object list ..."
 msgstr "3. l�p�s: Objektum lista l�trehoz�sa..."
 
-#: geasRpcServer.py:384
+#: geasRpcServer.py:394
 msgid "Step 4: Retrieving first instance ..."
 msgstr "4. l�p�s: Els� p�ld�ny beolvas�sa..."
 
-#: geasRpcServer.py:388
+#: geasRpcServer.py:398
 msgid ""
 "\n"
 "These are the values of the first instance:\n"
@@ -610,11 +634,11 @@
 "  Utca  : %(street)s\n"
 "  V�ros : %(city)s\n"
 
-#: geasRpcServer.py:396
+#: geasRpcServer.py:406
 msgid "Step 5: Retrieving defined filters ..."
 msgstr "5. l�p�s: Defini�lt sz�r�k visszaolvas�sa..."
 
-#: geasRpcServer.py:400
+#: geasRpcServer.py:410
 msgid "Selftest passed!"
 msgstr "Az �nteszt sikeres!"
 
@@ -720,6 +744,10 @@
 msgstr ""
 "  �zenetek: %(ins)3d besz�rva, %(upd)3d friss�tve, %(kept)3d v�ltozatlan."
 
+#: language/App.py:42
+msgid "name"
+msgstr ""
+
 #: language/App.py:44
 msgid "Connect to the appserver using the connection <name>"
 msgstr "A <name> kapcsolaton kereszt�l kapcsol�djon az AppServerhez."
@@ -737,6 +765,12 @@
 msgid "Message '%s' not found"
 msgstr "'%s' �zenet nem tal�lhat�"
 
+#: language/Session.py:63
+msgid ""
+"RPC Interface Version Mismatch!Please update to Appserver Version 0.4.4 or "
+"higher!"
+msgstr ""
+
 #: repository.py:45
 msgid "Filter '%s' not found in class repository"
 msgstr "A '%s' sz�r� nem tal�lhat� az oszt�lyk�nyvt�rban"
@@ -791,34 +825,34 @@
 "A(z) '%(property)s' tulajdons�g a(z) '%(class)s' oszt�lyban nem referencia "
 "tulajdons�g"
 
-#: repository.py:1342
+#: repository.py:1336
 msgid "string does not support 'scale'"
 msgstr "a string nem t�mogatja a 'scale'-t"
 
-#: repository.py:1347
+#: repository.py:1341
 msgid "%s does not support 'length'"
 msgstr "%s nem t�mogatja a 'length'-t"
 
-#: repository.py:1349
+#: repository.py:1343
 msgid "%s does not support 'scale'"
 msgstr "%s nem t�mogatja a 'scale'-t"
 
-#: repository.py:1354
+#: repository.py:1348
 msgid "number without 'length'"
 msgstr "sz�m 'length' n�lk�l"
 
-#: repository.py:1379
+#: repository.py:1373
 msgid "Reference types must not have a 'length'"
 msgstr "A referencia t�pusnak tilos 'length'-t megadni"
 
-#: repository.py:1382
+#: repository.py:1376
 msgid "Reference types must not have a 'scale'"
 msgstr "A referencia t�pusnak tilos 'scale'-t megadni"
 
-#: repository.py:1410
+#: repository.py:1404
 msgid "%s: Procedure has no result, but a 'length' is specified."
 msgstr "%s: Az elj�r�snak nincs eredm�nye, de a 'length' meg van adva."
 
-#: repository.py:1413
+#: repository.py:1407
 msgid "%s: Procedure has no result, but a 'scale' is specified."
 msgstr "%s: Az elj�r�snak nincs eredm�nye, de a 'scale' meg van adva."

Modified: trunk/gnue-appserver/po/nl.po
===================================================================
--- trunk/gnue-appserver/po/nl.po       2006-08-22 15:21:47 UTC (rev 8598)
+++ trunk/gnue-appserver/po/nl.po       2006-08-22 16:19:19 UTC (rev 8599)
@@ -11,7 +11,7 @@
 msgstr ""
 "Project-Id-Version: nl\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-03-27 11:08+CEST\n"
+"POT-Creation-Date: 2006-08-22 18:18+CEST\n"
 "PO-Revision-Date: 2005-09-27 18:43+0200\n"
 "Last-Translator: Michael Van Wesenbeeck <address@hidden>\n"
 "Language-Team:  <address@hidden>\n"
@@ -41,11 +41,11 @@
 msgid "Duplicate instance '%(row)s' in class '%(table)s'"
 msgstr "Dubbele instantie '%(row)s' in class '%(table)s'"
 
-#: data.py:1990 geasInstance.py:481
+#: data.py:1901 geasInstance.py:470
 msgid "Order-by sequence mismatch: '%(self)s' and '%(other)s'"
 msgstr "Onjuiste Order-by volgorde: '%(self)s' en '%(other)s'"
 
-#: data.py:1999 geasInstance.py:490
+#: data.py:1910 geasInstance.py:479
 msgid ""
 "Order-by sequence element has different directions: '%(self)s', '%(other)s'"
 msgstr ""
@@ -144,10 +144,18 @@
 "Een database schema van een GNUe Class Definition (gcd) bestand\n"
 "aanmaken of wijzigen en daarbij de data behouden voor alle gnue_* classes"
 
+#: gcd/readgcd.py:121 geasGsdGen.py:82 gld/readgld.py:101
+msgid "connectionname"
+msgstr ""
+
 #: gcd/readgcd.py:122 gld/readgld.py:102
 msgid "Use the connection <connectionname> for creating the schema"
 msgstr "Gebruik de connection <connectionname> om het schema aan te maken"
 
+#: gcd/readgcd.py:124
+msgid "filename"
+msgstr ""
+
 #: gcd/readgcd.py:125
 msgid "Also send the code for creating the schema to this file."
 msgstr "Zend ook de schema aanmaakcode naar dit bestand."
@@ -160,6 +168,10 @@
 "Als deze 'flag' er is, wordt enkel de code verzonden naar het output bestand "
 "en het schema wordt niet automatisch aangemaakt."
 
+#: gcd/readgcd.py:131 gld/readgld.py:104
+msgid "user"
+msgstr ""
+
 #: gcd/readgcd.py:132 gld/readgld.py:105
 msgid ""
 "Set the username for the database. If the database is to be created, this "
@@ -168,6 +180,10 @@
 "Geef de gebruikersnaam voor de database. Als de database wordt aangemaakt, "
 "is deze gebruikersnaam de eigenaar ervan."
 
+#: gcd/readgcd.py:135 gld/readgld.py:108
+msgid "password"
+msgstr ""
+
 #: gcd/readgcd.py:136 gld/readgld.py:109
 msgid "Set the password for the database."
 msgstr "Geef het paswoord voor de database."
@@ -241,11 +257,11 @@
 msgstr ""
 "Interne Fout: Meer dan een (%(numrec)s) record voor gebruiker '%(username)s'."
 
-#: geasAuthentication.py:114
+#: geasAuthentication.py:113
 msgid "Invalid password for user '%s'"
 msgstr "Ongeldig paswoord voor gebruiker '%s'"
 
-#: geasAuthentication.py:176
+#: geasAuthentication.py:175
 msgid "User '%s' logged in."
 msgstr "Gebruiker '%s' aangemeld."
 
@@ -317,6 +333,10 @@
 "Een hulpmiddel om data te dumpen van een database in een GNUe Schema "
 "Definition (gsd) file."
 
+#: geasGsdGen.py:77
+msgid "database"
+msgstr ""
+
 #: geasGsdGen.py:78
 msgid ""
 "Depreciated: Set the Database to use for data to <name>. gnue-appserver will "
@@ -329,6 +349,10 @@
 msgid "Use the connection <connectionname> for data retrieval."
 msgstr "Gebruik de verbinding <connectionname> voor data opzoeking."
 
+#: geasGsdGen.py:85
+msgid "file"
+msgstr ""
+
 #: geasGsdGen.py:86
 msgid "Name of the resulting gsd-file"
 msgstr "Naam van het resulterende gsd-bestand"
@@ -526,23 +550,23 @@
 msgid "Special option for windows service install/update command."
 msgstr ""
 
-#: geasRpcServer.py:218 geasRpcServer.py:238
+#: geasRpcServer.py:218 geasRpcServer.py:238 geasRpcServer.py:247
 msgid "Exporting our services via %(rpctype)s (port %(port)s) ..."
 msgstr "Exporteren van onze diensten via %(rpctype)s (port %(port)s) ..."
 
-#: geasRpcServer.py:247
+#: geasRpcServer.py:257
 msgid "Exporting our services via sockets (EXPERIMENTAL!) ..."
 msgstr "Exporteren van onze diensten via sockets (EXPERIMENTEEL!) ..."
 
-#: geasRpcServer.py:252
+#: geasRpcServer.py:262
 msgid "The protocol you've set is currently not supported."
 msgstr "Het ingestelde protocol is momenteel niet ondersteund."
 
-#: geasRpcServer.py:261
+#: geasRpcServer.py:271
 msgid "Status: %s Sessions opened"
 msgstr "Status: %s Sessies geopend"
 
-#: geasRpcServer.py:300
+#: geasRpcServer.py:310
 msgid ""
 "\n"
 "... GNUe Application Server up and running ...\n"
@@ -550,11 +574,11 @@
 "\n"
 "... GNUe Application Server draait ...\n"
 
-#: geasRpcServer.py:323
+#: geasRpcServer.py:333
 msgid "Appserver is shutting down....ok"
 msgstr "Appserver aan het afsluiten....ok"
 
-#: geasRpcServer.py:363
+#: geasRpcServer.py:373
 msgid ""
 "\n"
 "GNUe Application Server is running a simple self test\n"
@@ -570,23 +594,23 @@
 "VEREISTE: U moet de backend database \n"
 "vullen met het \"address_person\" voorbeeld.\n"
 
-#: geasRpcServer.py:372
+#: geasRpcServer.py:382
 msgid "Step 1: Starting Session Manager ..."
 msgstr "Stap 1: Starten van Session Manager ..."
 
-#: geasRpcServer.py:375
+#: geasRpcServer.py:385
 msgid "Step 2: Opening session (user 'hacker', password 'secret') ..."
 msgstr "Stap 2: Openen van sessie (user 'hacker', password 'secret') ..."
 
-#: geasRpcServer.py:380
+#: geasRpcServer.py:390
 msgid "Step 3: Creating object list ..."
 msgstr "Stap 3: Creëren van object lijst ..."
 
-#: geasRpcServer.py:384
+#: geasRpcServer.py:394
 msgid "Step 4: Retrieving first instance ..."
 msgstr "Stap 4: Ophalen van eerste instantie ..."
 
-#: geasRpcServer.py:388
+#: geasRpcServer.py:398
 msgid ""
 "\n"
 "These are the values of the first instance:\n"
@@ -600,11 +624,11 @@
 "  Straat  : %(street)s\n"
 "  Stad  : %(city)s\n"
 
-#: geasRpcServer.py:396
+#: geasRpcServer.py:406
 msgid "Step 5: Retrieving defined filters ..."
 msgstr "Stap 5: Ophalen van ingestelde filters ..."
 
-#: geasRpcServer.py:400
+#: geasRpcServer.py:410
 msgid "Selftest passed!"
 msgstr "Zelftest geslaagd!"
 
@@ -710,6 +734,10 @@
 msgstr ""
 "  Messages: %(ins)3d ingevoegd, %(upd)3d gewijzigd, %(kept)3d ongewijzigd."
 
+#: language/App.py:42
+msgid "name"
+msgstr ""
+
 #: language/App.py:44
 msgid "Connect to the appserver using the connection <name>"
 msgstr "Verbind met de appserver via de connectie: <name>"
@@ -726,6 +754,12 @@
 msgid "Message '%s' not found"
 msgstr "Message '%s' niet gevonden"
 
+#: language/Session.py:63
+msgid ""
+"RPC Interface Version Mismatch!Please update to Appserver Version 0.4.4 or "
+"higher!"
+msgstr ""
+
 #: repository.py:45
 msgid "Filter '%s' not found in class repository"
 msgstr "Filter '%s' niet gevonden in 'class repository'"
@@ -780,34 +814,34 @@
 "Kon propertyname '%(name)s' niet oplossen omdat '%(part)s' geen referentie "
 "property is."
 
-#: repository.py:1342
+#: repository.py:1336
 msgid "string does not support 'scale'"
 msgstr "string ondersteund 'scale' niet"
 
-#: repository.py:1347
+#: repository.py:1341
 msgid "%s does not support 'length'"
 msgstr "%s ondersteund 'length' niet"
 
-#: repository.py:1349
+#: repository.py:1343
 msgid "%s does not support 'scale'"
 msgstr "%s ondersteund 'scale' niet"
 
-#: repository.py:1354
+#: repository.py:1348
 msgid "number without 'length'"
 msgstr "nummer zonder 'length'"
 
-#: repository.py:1379
+#: repository.py:1373
 msgid "Reference types must not have a 'length'"
 msgstr "Referentie types mogen geen 'length' hebben"
 
-#: repository.py:1382
+#: repository.py:1376
 msgid "Reference types must not have a 'scale'"
 msgstr "Referentie types mogen geen 'scale' hebben"
 
-#: repository.py:1410
+#: repository.py:1404
 msgid "%s: Procedure has no result, but a 'length' is specified."
 msgstr "%s: Procedure heeft geen resultaat, maar 'length' is wel opgegeven."
 
-#: repository.py:1413
+#: repository.py:1407
 msgid "%s: Procedure has no result, but a 'scale' is specified."
 msgstr "%s: Procedure heeft geen resultaat, maar 'scale' is wel opgegeven."

Modified: trunk/gnue-appserver/po/ru.po
===================================================================
--- trunk/gnue-appserver/po/ru.po       2006-08-22 15:21:47 UTC (rev 8598)
+++ trunk/gnue-appserver/po/ru.po       2006-08-22 16:19:19 UTC (rev 8599)
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: GNUe-AppServer 0.1\n"
-"POT-Creation-Date: 2006-03-27 11:08+CEST\n"
+"POT-Creation-Date: 2006-08-22 18:18+CEST\n"
 "PO-Revision-Date: $Date$\n"
 "Last-Translator: Dmitry Sorokin <address@hidden>\n"
 "MIME-Version: 1.0\n"
@@ -31,11 +31,11 @@
 msgid "Duplicate instance '%(row)s' in class '%(table)s'"
 msgstr ""
 
-#: data.py:1990 geasInstance.py:481
+#: data.py:1901 geasInstance.py:470
 msgid "Order-by sequence mismatch: '%(self)s' and '%(other)s'"
 msgstr ""
 
-#: data.py:1999 geasInstance.py:490
+#: data.py:1910 geasInstance.py:479
 msgid ""
 "Order-by sequence element has different directions: '%(self)s', '%(other)s'"
 msgstr ""
@@ -128,10 +128,18 @@
 "Definition (gcd) �����\n"
 "� ����������� ��� ������ ��� ������� ���� gnue_*"
 
+#: gcd/readgcd.py:121 geasGsdGen.py:82 gld/readgld.py:101
+msgid "connectionname"
+msgstr ""
+
 #: gcd/readgcd.py:122 gld/readgld.py:102
 msgid "Use the connection <connectionname> for creating the schema"
 msgstr ""
 
+#: gcd/readgcd.py:124
+msgid "filename"
+msgstr ""
+
 #: gcd/readgcd.py:125
 msgid "Also send the code for creating the schema to this file."
 msgstr ""
@@ -142,6 +150,10 @@
 "not created automatically."
 msgstr ""
 
+#: gcd/readgcd.py:131 gld/readgld.py:104
+msgid "user"
+msgstr ""
+
 #: gcd/readgcd.py:132 gld/readgld.py:105
 msgid ""
 "Set the username for the database. If the database is to be created, this "
@@ -150,6 +162,10 @@
 "���������� ��� ������������ ��� ���� ������. ���� ���� ������ ����� "
 "���������, ������ ������������ ����� �������� �� ����������."
 
+#: gcd/readgcd.py:135 gld/readgld.py:108
+msgid "password"
+msgstr ""
+
 #: gcd/readgcd.py:136 gld/readgld.py:109
 msgid "Set the password for the database."
 msgstr "���������� ������ ��� ���� ������"
@@ -221,11 +237,11 @@
 "Internal Error: More than one (%(numrec)s) record for user '%(username)s'."
 msgstr ""
 
-#: geasAuthentication.py:114
+#: geasAuthentication.py:113
 msgid "Invalid password for user '%s'"
 msgstr "�������� ������ ������������ '%s'"
 
-#: geasAuthentication.py:176
+#: geasAuthentication.py:175
 msgid "User '%s' logged in."
 msgstr ""
 
@@ -296,6 +312,10 @@
 "���������� ��� �������� ������ �� ���� ������ � ���� gsd (GNUe Schema "
 "Definition)"
 
+#: geasGsdGen.py:77
+msgid "database"
+msgstr ""
+
 #: geasGsdGen.py:78
 msgid ""
 "Depreciated: Set the Database to use for data to <name>. gnue-appserver will "
@@ -306,6 +326,10 @@
 msgid "Use the connection <connectionname> for data retrieval."
 msgstr ""
 
+#: geasGsdGen.py:85
+msgid "file"
+msgstr ""
+
 #: geasGsdGen.py:86
 msgid "Name of the resulting gsd-file"
 msgstr "��� ��������������� gsd-�����"
@@ -470,23 +494,23 @@
 msgid "Special option for windows service install/update command."
 msgstr ""
 
-#: geasRpcServer.py:218 geasRpcServer.py:238
+#: geasRpcServer.py:218 geasRpcServer.py:238 geasRpcServer.py:247
 msgid "Exporting our services via %(rpctype)s (port %(port)s) ..."
 msgstr "������� �������� ����� %(rpctype)s (���� %(port)s) ..."
 
-#: geasRpcServer.py:247
+#: geasRpcServer.py:257
 msgid "Exporting our services via sockets (EXPERIMENTAL!) ..."
 msgstr "������� �������� ����� ��������� ������� (EXPERIMENTAL!) ..."
 
-#: geasRpcServer.py:252
+#: geasRpcServer.py:262
 msgid "The protocol you've set is currently not supported."
 msgstr "��������� �������� �� ��������������."
 
-#: geasRpcServer.py:261
+#: geasRpcServer.py:271
 msgid "Status: %s Sessions opened"
 msgstr "������: ������ %s �������"
 
-#: geasRpcServer.py:300
+#: geasRpcServer.py:310
 msgid ""
 "\n"
 "... GNUe Application Server up and running ...\n"
@@ -494,11 +518,11 @@
 "\n"
 "... GNUe Application Server ������� � �������� ...\n"
 
-#: geasRpcServer.py:323
+#: geasRpcServer.py:333
 msgid "Appserver is shutting down....ok"
 msgstr "Appserver ����������� ....ok"
 
-#: geasRpcServer.py:363
+#: geasRpcServer.py:373
 msgid ""
 "\n"
 "GNUe Application Server is running a simple self test\n"
@@ -508,23 +532,23 @@
 "'the \"address_person\" example.\n"
 msgstr ""
 
-#: geasRpcServer.py:372
+#: geasRpcServer.py:382
 msgid "Step 1: Starting Session Manager ..."
 msgstr "��� 1: ������ ��������� ������ ..."
 
-#: geasRpcServer.py:375
+#: geasRpcServer.py:385
 msgid "Step 2: Opening session (user 'hacker', password 'secret') ..."
 msgstr "��� 2: �������� ������ (user 'hacker', password 'secret) ..."
 
-#: geasRpcServer.py:380
+#: geasRpcServer.py:390
 msgid "Step 3: Creating object list ..."
 msgstr "��� 3: �������� ������ �������� ..."
 
-#: geasRpcServer.py:384
+#: geasRpcServer.py:394
 msgid "Step 4: Retrieving first instance ..."
 msgstr "��� 4: ��������� ������ ������ ..."
 
-#: geasRpcServer.py:388
+#: geasRpcServer.py:398
 msgid ""
 "\n"
 "These are the values of the first instance:\n"
@@ -533,11 +557,11 @@
 "  City  : %(city)s\n"
 msgstr ""
 
-#: geasRpcServer.py:396
+#: geasRpcServer.py:406
 msgid "Step 5: Retrieving defined filters ..."
 msgstr "��� 5: ��������� ������������ �������� ..."
 
-#: geasRpcServer.py:400
+#: geasRpcServer.py:410
 msgid "Selftest passed!"
 msgstr "���������������� ���������!"
 
@@ -642,6 +666,10 @@
 msgstr ""
 "  ���������: %(ins)3d ���������, %(upd)3d ���������, %(kept)3d ��� ���������."
 
+#: language/App.py:42
+msgid "name"
+msgstr ""
+
 #: language/App.py:44
 msgid "Connect to the appserver using the connection <name>"
 msgstr ""
@@ -660,6 +688,12 @@
 msgid "Message '%s' not found"
 msgstr "��������� '%s' �� �������"
 
+#: language/Session.py:63
+msgid ""
+"RPC Interface Version Mismatch!Please update to Appserver Version 0.4.4 or "
+"higher!"
+msgstr ""
+
 #: repository.py:45
 #, fuzzy
 msgid "Filter '%s' not found in class repository"
@@ -714,35 +748,35 @@
 msgid "'%(property)s' of class '%(class)s' is not a reference property"
 msgstr "������ '%(filter)s' ������ '%(class)s' �� ������ � ����������� �������"
 
-#: repository.py:1342
+#: repository.py:1336
 msgid "string does not support 'scale'"
 msgstr ""
 
-#: repository.py:1347
+#: repository.py:1341
 msgid "%s does not support 'length'"
 msgstr "%s �� ������������ 'length'"
 
-#: repository.py:1349
+#: repository.py:1343
 msgid "%s does not support 'scale'"
 msgstr "%s �� ������������ 'scale'"
 
-#: repository.py:1354
+#: repository.py:1348
 msgid "number without 'length'"
 msgstr ""
 
-#: repository.py:1379
+#: repository.py:1373
 msgid "Reference types must not have a 'length'"
 msgstr ""
 
-#: repository.py:1382
+#: repository.py:1376
 msgid "Reference types must not have a 'scale'"
 msgstr ""
 
-#: repository.py:1410
+#: repository.py:1404
 msgid "%s: Procedure has no result, but a 'length' is specified."
 msgstr ""
 
-#: repository.py:1413
+#: repository.py:1407
 msgid "%s: Procedure has no result, but a 'scale' is specified."
 msgstr ""
 

Modified: trunk/gnue-appserver/samples/sample.gfd
===================================================================
--- trunk/gnue-appserver/samples/sample.gfd     2006-08-22 15:21:47 UTC (rev 
8598)
+++ trunk/gnue-appserver/samples/sample.gfd     2006-08-22 16:19:19 UTC (rev 
8599)
@@ -7,6 +7,29 @@
     <description>Sample for using Application Server</description>
   </options>
 
+  <action name="actFoo" label="Do Foo!" description="Does the foo in the bar"
+    icon="/home/reinhard/gnue/share/gnue/images/forms/default/gnue-16x16.png"
+    enabled="True">
+    print "Action is executed!"
+  </action>
+
+  <action name="actOn" label="Toggle Item" description="Toggles this item" >
+    print "Toggle set to on!"
+  </action>
+
+  <action name="actOff" >
+    print "Toggle set to off!"
+  </action>
+
+  <menu name="__main__" label="Main">
+    <menu name="mnuExtras" label="Extras">
+      <menuitem name="mnuFoo" action="actFoo" label="hahaha"/>
+      <menuitem name="mnuSep" />
+      <menuitem name="mnuBar" action="actFoo" />
+      <menuitem name="mnuToggle" action="actOn" action_off="actOff" />
+    </menu>
+  </menu>
+
   <parameter name="von" default="2270-06-20 09:00"/>
   <parameter name="bis" default="2270-06-25 20:00"/>
   <datasource name="dtsPerson" connection="appserver" table="address_person">
@@ -57,7 +80,10 @@
     cache="250" prequery="Y"/>
   <datasource name="dtsMCountry" connection="appserver"
     table="address_country"/>
+  <import-trigger name="startupSearch" library="foo.gfl" />
   <trigger name="showRecord" type="NAMED"><![CDATA[
+    actFoo.run()
+    actFoo.enabled = True
     retval = blkPerson.call ("address_show", {})
     if retval is not None:
       print "retval =", retval
@@ -65,7 +91,7 @@
 
   <logic>
     <block name="blkPerson" datasource="dtsPerson">
-      <field name="inpName" field="address_name" max_length="35"/>
+      <field name="inpName" field="address_name" minLength="4" 
max_length="35"/>
       <field name="inpStreet" field="address_street" max_length="35"/>
       <field name="inpZip" field="address_zip" max_length="17"/>
       <field name="inpCity" field="address_city" max_length="35"/>
@@ -91,6 +117,8 @@
       <field name="inpCCode" field="address_code" max_length="2"/>
       <field name="inpCName" field="address_name" max_length="35"/>
     </block>
+
+    <import-block name="blkTest" library="foo.gfl" />
   </logic>
 
   <layout xmlns:c="GNUe:Layout:Char" c:height="16" c:width="50" tabbed="top">
@@ -147,7 +175,7 @@
         field="fldModifyUser" style="label"/>
 
       <button c:height="1" c:width="25" c:x="14" c:y="15" label="Show record">
-        <trigger src="showRecord" name="Trigger1" type="ON-ACTION"/>
+        <trigger src="startupSearch" name="Trigger1" type="ON-ACTION"/>
       </button>
     </page>
 





reply via email to

[Prev in Thread] Current Thread [Next in Thread]