commit-gnue
[Top][All Lists]
Advanced

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

[gnue] r9789 - in trunk/gnue-reports: . doc doc/man po src


From: reinhard
Subject: [gnue] r9789 - in trunk/gnue-reports: . doc doc/man po src
Date: Fri, 28 Sep 2007 04:20:56 -0500 (CDT)

Author: reinhard
Date: 2007-09-28 04:20:56 -0500 (Fri, 28 Sep 2007)
New Revision: 9789

Modified:
   trunk/gnue-reports/NEWS
   trunk/gnue-reports/doc/gnue-reports.dtd
   trunk/gnue-reports/doc/man/gnue-reports.1
   trunk/gnue-reports/po/de.po
   trunk/gnue-reports/po/fr.po
   trunk/gnue-reports/po/hu.po
   trunk/gnue-reports/po/nl.po
   trunk/gnue-reports/src/__init__.py
Log:
Built 0.2-beta1.

Modified: trunk/gnue-reports/NEWS
===================================================================
--- trunk/gnue-reports/NEWS     2007-09-27 13:54:32 UTC (rev 9788)
+++ trunk/gnue-reports/NEWS     2007-09-28 09:20:56 UTC (rev 9789)
@@ -1,3 +1,7 @@
+New features/changes in version 0.2.0: (????-??-??)
+* Changed to new packaging system
+* Adapted to gnue-forms 0.6
+
 New features/changes in version 0.1.9: (2006-08-24)
 * Updated Dutch translation
 * Turn off debug messages when compiled with -O

Modified: trunk/gnue-reports/doc/gnue-reports.dtd
===================================================================
--- trunk/gnue-reports/doc/gnue-reports.dtd     2007-09-27 13:54:32 UTC (rev 
9788)
+++ trunk/gnue-reports/doc/gnue-reports.dtd     2007-09-28 09:20:56 UTC (rev 
9789)
@@ -210,6 +210,9 @@
        support and a non-null primary key value at the time of update (whether 
        via a trigger or by the use of {primarykeyseq}. -->
   <!ATTLIST datasource requery %boolean;>
+  <!-- rowid: Name of the field to use as Row-ID if the connection does not 
+       support row ids. -->
+  <!ATTLIST datasource rowid %text; #IMPLIED>
   <!-- table: The table in the database this datasource will point to. -->
   <!ATTLIST datasource table %name; "">
   <!ATTLIST datasource type %name; "object">
@@ -262,6 +265,9 @@
        support and a non-null primary key value at the time of update (whether 
        via a trigger or by the use of {primarykeyseq}. -->
   <!ATTLIST import-datasource requery %boolean;>
+  <!-- rowid: Name of the field to use as Row-ID if the connection does not 
+       support row ids. -->
+  <!ATTLIST import-datasource rowid %text; #IMPLIED>
   <!-- table: The table in the database this datasource will point to. -->
   <!ATTLIST import-datasource table %name; "">
   <!ATTLIST import-datasource type %name; "object">
@@ -297,9 +303,8 @@
 <!-- ============================ -->
 <!-- Child elements of datasource -->
 <!-- ============================ -->
-<!ELEMENT condition (and*, between*, eq*, ge*, gt*, le*, like*, lt*, ne*, 
-                     negate*, not*, notbetween*, notlike*, notnull*, null*, 
-                     or*)>
+<!ELEMENT condition (and*, between*, eq*, exist*, ge*, gt*, le*, like*, lt*, 
+                     ne*, not*, notbetween*, notlike*, notnull*, null*, or*)>
 
 <!ELEMENT sortorder (sortfield*)>
 
@@ -313,58 +318,57 @@
 <!-- Child elements of condition -->
 <!-- =========================== -->
 <!-- Implements logical AND relation. -->
-<!ELEMENT and (and*, between*, conditions*, eq*, ge*, gt*, le*, like*, lt*, 
-               ne*, negate*, not*, notbetween*, notlike*, notnull*, null*, 
-               or*)>
+<!ELEMENT and (and*, between*, eq*, exist*, ge*, gt*, le*, like*, lt*, ne*, 
+               not*, notbetween*, notlike*, notnull*, null*, or*)>
 
 <!-- Implements a {field} BETWEEN {value1} {value2} condition. -->
-<!ELEMENT between (add*, cconst*, cfield*, cparam*, div*, exist*, lower*, 
-                   mul*, sub*, upper*)>
+<!ELEMENT between (add*, cconst*, cfield*, cparam*, div*, lower*, mul*, 
+                   negate*, sub*, upper*)>
 
 <!-- Implements a {field} = {value} condition. -->
-<!ELEMENT eq (add*, cconst*, cfield*, cparam*, div*, exist*, lower*, mul*, 
+<!ELEMENT eq (add*, cconst*, cfield*, cparam*, div*, lower*, mul*, negate*, 
               sub*, upper*)>
 
+<!-- Implements an exist condition. -->
+<!ELEMENT exist (and*, between*, eq*, exist*, ge*, gt*, le*, like*, lt*, ne*, 
+                 not*, notbetween*, notlike*, notnull*, null*, or*)>
+  <!ATTLIST exist detaillink %text; #REQUIRED>
+  <!ATTLIST exist masterlink %text; #REQUIRED>
+  <!ATTLIST exist table %name; #REQUIRED>
+
 <!-- Implements a {field} >= {value} condition. -->
-<!ELEMENT ge (add*, cconst*, cfield*, cparam*, div*, exist*, lower*, mul*, 
+<!ELEMENT ge (add*, cconst*, cfield*, cparam*, div*, lower*, mul*, negate*, 
               sub*, upper*)>
 
 <!-- Implements a {field} > {value} condition. -->
-<!ELEMENT gt (add*, cconst*, cfield*, cparam*, div*, exist*, lower*, mul*, 
+<!ELEMENT gt (add*, cconst*, cfield*, cparam*, div*, lower*, mul*, negate*, 
               sub*, upper*)>
 
 <!-- Implements a {field} <= {value} condition. -->
-<!ELEMENT le (add*, cconst*, cfield*, cparam*, div*, exist*, lower*, mul*, 
+<!ELEMENT le (add*, cconst*, cfield*, cparam*, div*, lower*, mul*, negate*, 
               sub*, upper*)>
 
 <!-- Implements a {field} LIKE {value} condition. -->
-<!ELEMENT like (add*, cconst*, cfield*, cparam*, div*, exist*, lower*, mul*, 
-                sub*, upper*)>
+<!ELEMENT like (cconst*, cfield*, cparam*, lower*, upper*)>
 
 <!-- Implements a {field} < {value} condition. -->
-<!ELEMENT lt (add*, cconst*, cfield*, cparam*, div*, exist*, lower*, mul*, 
+<!ELEMENT lt (add*, cconst*, cfield*, cparam*, div*, lower*, mul*, negate*, 
               sub*, upper*)>
 
 <!-- Implements a {field} <> {value} condition. -->
-<!ELEMENT ne (add*, cconst*, cfield*, cparam*, div*, exist*, lower*, mul*, 
+<!ELEMENT ne (add*, cconst*, cfield*, cparam*, div*, lower*, mul*, negate*, 
               sub*, upper*)>
 
-<!-- Implements numerical negation. -->
-<!ELEMENT negate (and*, between*, conditions*, eq*, ge*, gt*, le*, like*, lt*, 
-                  ne*, negate*, not*, notbetween*, notlike*, or*)>
-
 <!-- Implements logical NOT relation. -->
-<!ELEMENT not (and*, between*, conditions*, eq*, ge*, gt*, le*, like*, lt*, 
-               ne*, negate*, not*, notbetween*, notlike*, notnull*, null*, 
-               or*)>
+<!ELEMENT not (and*, between*, eq*, exist*, ge*, gt*, le*, like*, lt*, ne*, 
+               not*, notbetween*, notlike*, notnull*, null*, or*)>
 
 <!-- Implements a {field} NOT BETWEEN {value1} {value2} condition. -->
-<!ELEMENT notbetween (add*, cconst*, cfield*, cparam*, div*, exist*, lower*, 
-                      mul*, sub*, upper*)>
+<!ELEMENT notbetween (add*, cconst*, cfield*, cparam*, div*, lower*, mul*, 
+                      negate*, sub*, upper*)>
 
 <!-- Implements a {field} NOT LIKE {value} condition. -->
-<!ELEMENT notlike (add*, cconst*, cfield*, cparam*, div*, exist*, lower*, 
-                   mul*, sub*, upper*)>
+<!ELEMENT notlike (cconst*, cfield*, cparam*, lower*, upper*)>
 
 <!-- Implements a {field} IS NOT NULL condition. -->
 <!ELEMENT notnull (cfield*)>
@@ -373,9 +377,8 @@
 <!ELEMENT null (cfield*)>
 
 <!-- Implements logical OR relation. -->
-<!ELEMENT or (and*, between*, conditions*, eq*, ge*, gt*, le*, like*, lt*, 
-              ne*, negate*, not*, notbetween*, notlike*, notnull*, null*, 
-              or*)>
+<!ELEMENT or (and*, between*, eq*, exist*, ge*, gt*, le*, like*, lt*, ne*, 
+              not*, notbetween*, notlike*, notnull*, null*, or*)>
 
 
 <!-- =========================== -->
@@ -398,19 +401,11 @@
 <!ELEMENT staticsetrow (staticsetfield*)>
 
 
-<!-- ===================== -->
-<!-- Child elements of and -->
-<!-- ===================== -->
-<!-- DEPRECATED: Use of the <conditions> element has been deprecated [Use the 
-                 <condition> tag instead.] -->
-<!ELEMENT conditions (conditions*)>
-
-
 <!-- ========================= -->
 <!-- Child elements of between -->
 <!-- ========================= -->
 <!-- Implements addition. -->
-<!ELEMENT add (add*, cconst*, cfield*, cparam*, div*, mul*, sub*)>
+<!ELEMENT add (add*, cconst*, cfield*, cparam*, div*, mul*, negate*, sub*)>
 
 <!-- Defines a constant value in a condition. -->
 <!ELEMENT cconst EMPTY>
@@ -426,22 +421,19 @@
   <!ATTLIST cparam name ID #REQUIRED>
 
 <!-- Implements division. -->
-<!ELEMENT div (add*, cconst*, cfield*, cparam*, div*, mul*, sub*)>
+<!ELEMENT div (add*, cconst*, cfield*, cparam*, div*, mul*, negate*, sub*)>
 
-<!-- Implements an exist condition. -->
-<!ELEMENT exist EMPTY>
-  <!ATTLIST exist detaillink %text; #REQUIRED>
-  <!ATTLIST exist masterlink %text; #REQUIRED>
-  <!ATTLIST exist table %name; #REQUIRED>
-
 <!-- Implements lower({value}). -->
 <!ELEMENT lower (cfield*)>
 
 <!-- Implements multiplication. -->
-<!ELEMENT mul (add*, cconst*, cfield*, cparam*, div*, mul*, sub*)>
+<!ELEMENT mul (add*, cconst*, cfield*, cparam*, div*, mul*, negate*, sub*)>
 
+<!-- Implements numerical negation. -->
+<!ELEMENT negate (add*, cconst*, cfield*, cparam*, div*, mul*, sub*)>
+
 <!-- Implements subtraction. -->
-<!ELEMENT sub (add*, cconst*, cfield*, cparam*, div*, mul*, sub*)>
+<!ELEMENT sub (add*, cconst*, cfield*, cparam*, div*, mul*, negate*, sub*)>
 
 <!-- Implements upper({value}). -->
 <!ELEMENT upper (cfield*)>
@@ -456,5 +448,5 @@
 
 
 <!-- This DTD was created by gnuedtd
-     Updated: 2006-08-24 22:43:02   -->
+     Updated: 2007-09-28 11:20:53   -->
 

Modified: trunk/gnue-reports/doc/man/gnue-reports.1
===================================================================
--- trunk/gnue-reports/doc/man/gnue-reports.1   2007-09-27 13:54:32 UTC (rev 
9788)
+++ trunk/gnue-reports/doc/man/gnue-reports.1   2007-09-28 09:20:56 UTC (rev 
9789)
@@ -1,4 +1,4 @@
-.TH GNUE\-REPORTS 1 "24 August 2006" "GNUe Reports Client"
+.TH GNUE\-REPORTS 1 "28 September 2007" "GNUe Reports Client"
 .SH NAME
 gnue\-reports \- GNUe Reports Client
 .SH SYNOPSIS
@@ -184,7 +184,7 @@
 that will allow the bug to be reproduced,
 and say which version of this tool you are using.
 .SH COPYRIGHT
-Copyright \(co 2000-2006 Free Software Foundation, Inc.
+Copyright \(co 2000-2007 Free Software Foundation, Inc.
 .LP
 gnue\-reports is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free

Modified: trunk/gnue-reports/po/de.po
===================================================================
--- trunk/gnue-reports/po/de.po 2007-09-27 13:54:32 UTC (rev 9788)
+++ trunk/gnue-reports/po/de.po 2007-09-28 09:20:56 UTC (rev 9789)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: GNUe-Reports 0.1\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-08-24 22:43+CEST\n"
+"POT-Creation-Date: 2007-09-28 11:20+CEST\n"
 "PO-Revision-Date: 2005-07-22 11:55+0200\n"
 "Last-Translator: Reinhard M�ller <address@hidden>\n"
 "Language-Team: \n"
@@ -168,39 +168,39 @@
 msgid "E-Mail"
 msgstr "E-Mail"
 
-#: client/GRRunUI.py:114
+#: client/GRRunUI.py:113
 msgid "Report canceled"
 msgstr "Report abgebrochen"
 
-#: client/GRRunUI.py:241
+#: client/GRRunUI.py:249
 msgid "Parameters"
 msgstr "Parameter"
 
-#: client/GRRunUI.py:315
+#: client/GRRunUI.py:319
 msgid "Output filter"
 msgstr "Ausgabefilter"
 
-#: client/GRRunUI.py:327
+#: client/GRRunUI.py:331
 msgid "Destination type"
 msgstr "Ausgabeart"
 
-#: client/GRRunUI.py:339
+#: client/GRRunUI.py:343
 msgid "Destination"
 msgstr "Ausgabeziel"
 
-#: client/GRRunUI.py:361
+#: client/GRRunUI.py:365
 msgid "Raw XML"
 msgstr "Ungefiltertes XML"
 
-#: client/GRRunUI.py:365
+#: client/GRRunUI.py:369
 msgid "%s output filter"
 msgstr "%s Ausgabefilter"
 
-#: client/GRRunUI.py:535
+#: client/GRRunUI.py:539
 msgid "Cancel"
 msgstr "Abbrechen"
 
-#: client/GRRunUI.py:535
+#: client/GRRunUI.py:539
 msgid "Ok"
 msgstr "Ok"
 

Modified: trunk/gnue-reports/po/fr.po
===================================================================
--- trunk/gnue-reports/po/fr.po 2007-09-27 13:54:32 UTC (rev 9788)
+++ trunk/gnue-reports/po/fr.po 2007-09-28 09:20:56 UTC (rev 9789)
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2006-08-24 22:43+CEST\n"
+"POT-Creation-Date: 2007-09-28 11:20+CEST\n"
 "PO-Revision-Date: 2004-04-13 12:03+0200\n"
 "Last-Translator: Laurent Savaete <address@hidden>\n"
 "Language-Team: Francais <address@hidden>\n"
@@ -139,39 +139,39 @@
 msgid "E-Mail"
 msgstr ""
 
-#: client/GRRunUI.py:114
+#: client/GRRunUI.py:113
 msgid "Report canceled"
 msgstr ""
 
-#: client/GRRunUI.py:241
+#: client/GRRunUI.py:249
 msgid "Parameters"
 msgstr ""
 
-#: client/GRRunUI.py:315
+#: client/GRRunUI.py:319
 msgid "Output filter"
 msgstr ""
 
-#: client/GRRunUI.py:327
+#: client/GRRunUI.py:331
 msgid "Destination type"
 msgstr ""
 
-#: client/GRRunUI.py:339
+#: client/GRRunUI.py:343
 msgid "Destination"
 msgstr ""
 
-#: client/GRRunUI.py:361
+#: client/GRRunUI.py:365
 msgid "Raw XML"
 msgstr ""
 
-#: client/GRRunUI.py:365
+#: client/GRRunUI.py:369
 msgid "%s output filter"
 msgstr ""
 
-#: client/GRRunUI.py:535
+#: client/GRRunUI.py:539
 msgid "Cancel"
 msgstr ""
 
-#: client/GRRunUI.py:535
+#: client/GRRunUI.py:539
 msgid "Ok"
 msgstr ""
 

Modified: trunk/gnue-reports/po/hu.po
===================================================================
--- trunk/gnue-reports/po/hu.po 2007-09-27 13:54:32 UTC (rev 9788)
+++ trunk/gnue-reports/po/hu.po 2007-09-28 09:20:56 UTC (rev 9789)
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: GNUe Reports 0.1\n"
-"POT-Creation-Date: 2006-08-24 22:43+CEST\n"
+"POT-Creation-Date: 2007-09-28 11:20+CEST\n"
 "PO-Revision-Date: $Date$\n"
 "Last-Translator: Kmetyk� G�bor <address@hidden>\n"
 "MIME-Version: 1.0\n"
@@ -175,39 +175,39 @@
 msgid "E-Mail"
 msgstr "E-mail"
 
-#: client/GRRunUI.py:114
+#: client/GRRunUI.py:113
 msgid "Report canceled"
 msgstr "Jelent�s f�lbeszak�tva"
 
-#: client/GRRunUI.py:241
+#: client/GRRunUI.py:249
 msgid "Parameters"
 msgstr "Param�terek"
 
-#: client/GRRunUI.py:315
+#: client/GRRunUI.py:319
 msgid "Output filter"
 msgstr "Kimeneti sz�r�"
 
-#: client/GRRunUI.py:327
+#: client/GRRunUI.py:331
 msgid "Destination type"
 msgstr "C�l t�pus"
 
-#: client/GRRunUI.py:339
+#: client/GRRunUI.py:343
 msgid "Destination"
 msgstr "C�l"
 
-#: client/GRRunUI.py:361
+#: client/GRRunUI.py:365
 msgid "Raw XML"
 msgstr "Nyers XML"
 
-#: client/GRRunUI.py:365
+#: client/GRRunUI.py:369
 msgid "%s output filter"
 msgstr "%s kimeneti sz�r�"
 
-#: client/GRRunUI.py:535
+#: client/GRRunUI.py:539
 msgid "Cancel"
 msgstr "M�gse"
 
-#: client/GRRunUI.py:535
+#: client/GRRunUI.py:539
 msgid "Ok"
 msgstr "Ok"
 

Modified: trunk/gnue-reports/po/nl.po
===================================================================
--- trunk/gnue-reports/po/nl.po 2007-09-27 13:54:32 UTC (rev 9788)
+++ trunk/gnue-reports/po/nl.po 2007-09-28 09:20:56 UTC (rev 9789)
@@ -8,7 +8,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: nl\n"
-"POT-Creation-Date: 2006-08-24 22:43+CEST\n"
+"POT-Creation-Date: 2007-09-28 11:20+CEST\n"
 "PO-Revision-Date: 2005-08-31 18:18+0200\n"
 "Last-Translator: Michael Van Wesenbeeck <address@hidden>\n"
 "Language-Team:  <address@hidden>\n"
@@ -183,39 +183,39 @@
 msgid "E-Mail"
 msgstr "E-mail"
 
-#: client/GRRunUI.py:114
+#: client/GRRunUI.py:113
 msgid "Report canceled"
 msgstr "Rapport geannuleerd"
 
-#: client/GRRunUI.py:241
+#: client/GRRunUI.py:249
 msgid "Parameters"
 msgstr "Parameters"
 
-#: client/GRRunUI.py:315
+#: client/GRRunUI.py:319
 msgid "Output filter"
 msgstr "Uitvoerfilter"
 
-#: client/GRRunUI.py:327
+#: client/GRRunUI.py:331
 msgid "Destination type"
 msgstr "Bestemmingstype"
 
-#: client/GRRunUI.py:339
+#: client/GRRunUI.py:343
 msgid "Destination"
 msgstr "Bestemming"
 
-#: client/GRRunUI.py:361
+#: client/GRRunUI.py:365
 msgid "Raw XML"
 msgstr "Ruwe XML"
 
-#: client/GRRunUI.py:365
+#: client/GRRunUI.py:369
 msgid "%s output filter"
 msgstr "%s uitvoerfilter"
 
-#: client/GRRunUI.py:535
+#: client/GRRunUI.py:539
 msgid "Cancel"
 msgstr "Annuleren"
 
-#: client/GRRunUI.py:535
+#: client/GRRunUI.py:539
 msgid "Ok"
 msgstr "Ok"
 

Modified: trunk/gnue-reports/src/__init__.py
===================================================================
--- trunk/gnue-reports/src/__init__.py  2007-09-27 13:54:32 UTC (rev 9788)
+++ trunk/gnue-reports/src/__init__.py  2007-09-28 09:20:56 UTC (rev 9789)
@@ -35,7 +35,7 @@
 PACKAGE = "GNUe-Reports"
 TITLE = "GNUe Reports"
 
-version = version.Version(0, 1, 'final', 9, svn_revision)
+version = version.Version(0, 2, 'beta', 1, svn_revision)
 
 VERSION = version.get_version()
 HEXVERSION = version.get_hexversion()





reply via email to

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