commit-gnue
[Top][All Lists]
Advanced

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

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


From: reinhard
Subject: [gnue] r8591 - in trunk/gnue-reports: . doc doc/man po
Date: Tue, 22 Aug 2006 07:59:09 -0500 (CDT)

Author: reinhard
Date: 2006-08-22 07:59:08 -0500 (Tue, 22 Aug 2006)
New Revision: 8591

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
Log:
Released 0.1.8.99-pre1.

Modified: trunk/gnue-reports/NEWS
===================================================================
--- trunk/gnue-reports/NEWS     2006-08-22 12:56:36 UTC (rev 8590)
+++ trunk/gnue-reports/NEWS     2006-08-22 12:59:08 UTC (rev 8591)
@@ -1,3 +1,11 @@
+New features/changes in version 0.1.9: (????-??-??)
+* Updated Dutch translation
+* Turn off debug messages when compiled with -O
+* Changes necessary for report support in gnue-designer
+* Do not keep whitespace in Char layout labels
+* Some fixes in grd definition
+* Improved Fink configuration for new version of Fink
+
 New features/changes in version 0.1.8: (2005-08-13)
 * Adapted to gnue-common 0.6
 * Removed unneeded pstats module

Modified: trunk/gnue-reports/doc/gnue-reports.dtd
===================================================================
--- trunk/gnue-reports/doc/gnue-reports.dtd     2006-08-22 12:56:36 UTC (rev 
8590)
+++ trunk/gnue-reports/doc/gnue-reports.dtd     2006-08-22 12:59:08 UTC (rev 
8591)
@@ -49,26 +49,33 @@
 <!-- ================= -->
 <!ELEMENT report (import-trigger*, layout, parameters?, sortoptions?, 
                   sources?, trigger*)>
-<!ATTLIST report author %text; #IMPLIED>
-<!ATTLIST report description %text; #IMPLIED>
-<!ATTLIST report title %text; #IMPLIED>
-<!ATTLIST report version %name; #IMPLIED>
+  <!ATTLIST report author %text; #IMPLIED>
+  <!ATTLIST report description %text; #IMPLIED>
+  <!ATTLIST report title %text; #IMPLIED>
+  <!ATTLIST report version %name; #IMPLIED>
 
 
 <!-- ======================== -->
 <!-- Child elements of report -->
 <!-- ======================== -->
+<!-- A piece of code that can be bound to a specific event. -->
 <!ELEMENT import-trigger EMPTY>
-<!ATTLIST import-trigger library %name; #REQUIRED>
-<!ATTLIST import-trigger file %name; #IMPLIED>
-<!ATTLIST import-trigger language %name; #FIXED "python">
-<!ATTLIST import-trigger name ID #IMPLIED>
-<!ATTLIST import-trigger src IDREF #IMPLIED>
-<!ATTLIST import-trigger type CDATA #IMPLIED>
+  <!ATTLIST import-trigger library %name; #REQUIRED>
+  <!-- file: External file containing the source code -->
+  <!ATTLIST import-trigger file %text; #IMPLIED>
+  <!-- language: Programming language the code is written in -->
+  <!ATTLIST import-trigger language %name; #FIXED "python">
+  <!-- name: Name of this element -->
+  <!ATTLIST import-trigger name ID #IMPLIED>
+  <!-- src: Name of a named trigger that contains the program code -->
+  <!ATTLIST import-trigger src IDREF #IMPLIED>
+  <!-- type: Type of the trigger. Can be either the name of the event that 
+       should fire this trigger, or 'NAMED' for named triggers -->
+  <!ATTLIST import-trigger type CDATA #IMPLIED>
 
 <!ELEMENT layout (formula*, param*, section+, summ*, #PCDATA)>
-<!ATTLIST layout format %text; #IMPLIED>
-<!ATTLIST layout suppressGNUeTags %boolean;>
+  <!ATTLIST layout format %text; #IMPLIED>
+  <!ATTLIST layout suppressGNUeTags %boolean;>
 
 <!ELEMENT parameters (parameter*)>
 
@@ -76,59 +83,66 @@
 
 <!ELEMENT sources (connection*, datasource*, import-datasource*)>
 
+<!-- A piece of code that can be bound to a specific event. -->
 <!ELEMENT trigger EMPTY>
-<!ATTLIST trigger file %name; #IMPLIED>
-<!ATTLIST trigger language %name; #FIXED "python">
-<!ATTLIST trigger name ID #IMPLIED>
-<!ATTLIST trigger src IDREF #IMPLIED>
-<!ATTLIST trigger type CDATA #IMPLIED>
+  <!-- file: External file containing the source code -->
+  <!ATTLIST trigger file %text; #IMPLIED>
+  <!-- language: Programming language the code is written in -->
+  <!ATTLIST trigger language %name; #FIXED "python">
+  <!-- name: Name of this element -->
+  <!ATTLIST trigger name ID #IMPLIED>
+  <!-- src: Name of a named trigger that contains the program code -->
+  <!ATTLIST trigger src IDREF #IMPLIED>
+  <!-- type: Type of the trigger. Can be either the name of the event that 
+       should fire this trigger, or 'NAMED' for named triggers -->
+  <!ATTLIST trigger type CDATA #IMPLIED>
 
 
 <!-- ======================== -->
 <!-- Child elements of layout -->
 <!-- ======================== -->
 <!ELEMENT formula EMPTY>
-<!ATTLIST formula format %name; #IMPLIED>
-<!ATTLIST formula name %name; #IMPLIED>
+  <!ATTLIST formula format %name; #IMPLIED>
+  <!ATTLIST formula name %name; #IMPLIED>
 
 <!ELEMENT param EMPTY>
-<!ATTLIST param name %name; #REQUIRED>
-<!ATTLIST param format %name; #IMPLIED>
+  <!ATTLIST param name %name; #REQUIRED>
+  <!ATTLIST param format %name; #IMPLIED>
 
 <!ELEMENT section (default*, field*, firstrow*, lastrow*, notfirstrow*, 
                    notlastrow*, #PCDATA)>
-<!ATTLIST section name %name; #IMPLIED>
-<!ATTLIST section source %name; #IMPLIED>
+  <!ATTLIST section name %name; #IMPLIED>
+  <!ATTLIST section source %name; #IMPLIED>
 
 <!ELEMENT summ EMPTY>
-<!ATTLIST summ field %name; #IMPLIED>
-<!ATTLIST summ format %name; #IMPLIED>
-<!ATTLIST summ formula %name; #IMPLIED>
-<!ATTLIST summ function %name; "count">
-<!ATTLIST summ name %name; #IMPLIED>
-<!ATTLIST summ section %name; #IMPLIED>
+  <!ATTLIST summ field %name; #IMPLIED>
+  <!ATTLIST summ format %name; #IMPLIED>
+  <!ATTLIST summ formula %name; #IMPLIED>
+  <!ATTLIST summ function %name; "count">
+  <!ATTLIST summ name %name; #IMPLIED>
+  <!ATTLIST summ section %name; #IMPLIED>
 
 
 <!-- ============================ -->
 <!-- Child elements of parameters -->
 <!-- ============================ -->
 <!ELEMENT parameter EMPTY>
-<!ATTLIST parameter name ID #REQUIRED>
-<!ATTLIST parameter description %text; #REQUIRED>
-<!ATTLIST parameter default %text; #IMPLIED>
-<!ATTLIST parameter limited %boolean;>
-<!ATTLIST parameter required %boolean;>
-<!ATTLIST parameter source %name; #IMPLIED>
-<!ATTLIST parameter type %name; "char">
+  <!ATTLIST parameter name ID #REQUIRED>
+  <!ATTLIST parameter description %text; #REQUIRED>
+  <!ATTLIST parameter default %text; #IMPLIED>
+  <!ATTLIST parameter limited %boolean;>
+  <!ATTLIST parameter required %boolean;>
+  <!ATTLIST parameter source %name; #IMPLIED>
+  <!ATTLIST parameter type %name; "char">
 
 
 <!-- ============================= -->
 <!-- Child elements of sortoptions -->
 <!-- ============================= -->
 <!ELEMENT sortoption (sortcolumn*)>
-<!ATTLIST sortoption id ID #REQUIRED>
-<!ATTLIST sortoption description %name; #REQUIRED>
-<!ATTLIST sortoption default %boolean;>
+  <!ATTLIST sortoption id ID #REQUIRED>
+  <!ATTLIST sortoption description %name; #REQUIRED>
+  <!ATTLIST sortoption default %boolean;>
 
 
 <!-- ========================= -->
@@ -136,119 +150,121 @@
 <!-- ========================= -->
 <!-- TODO -->
 <!ELEMENT connection EMPTY>
-<!-- name: TODO -->
-<!ATTLIST connection name ID #REQUIRED>
-<!-- provider: TODO -->
-<!ATTLIST connection provider %name; #REQUIRED>
-<!-- comment: TODO -->
-<!ATTLIST connection comment %text; #IMPLIED>
-<!-- dbname: TODO -->
-<!ATTLIST connection dbname %text; #IMPLIED>
-<!-- host: TODO -->
-<!ATTLIST connection host %text; #IMPLIED>
-<!-- service: TODO -->
-<!ATTLIST connection service %text; #IMPLIED>
+  <!-- name: TODO -->
+  <!ATTLIST connection name ID #REQUIRED>
+  <!-- provider: TODO -->
+  <!ATTLIST connection provider %name; #REQUIRED>
+  <!-- comment: TODO -->
+  <!ATTLIST connection comment %text; #IMPLIED>
+  <!-- dbname: TODO -->
+  <!ATTLIST connection dbname %text; #IMPLIED>
+  <!-- host: TODO -->
+  <!ATTLIST connection host %text; #IMPLIED>
+  <!-- service: TODO -->
+  <!ATTLIST connection service %text; #IMPLIED>
 
 <!-- A datasource provides a link to a database table or some similar data 
      store. -->
 <!ELEMENT datasource (condition*, sortorder*, sql*, staticset*)>
-<!-- name: Unique name of the datasource. -->
-<!ATTLIST datasource name ID #REQUIRED>
-<!-- cache: Cache this number of records -->
-<!ATTLIST datasource cache %whole; "5">
-<!-- connection: The name of the connection as in connections.conf that points 
-       to a valid database. -->
-<!ATTLIST datasource connection %name; #IMPLIED>
-<!-- DEPRECATED: The "database" attribute of "datasource" has been deprecated 
-                 [Use {connection} attribute instead] -->
-<!ATTLIST datasource database %name; #IMPLIED>
-<!-- detaillink: If this datasource is the child in a master/detail 
+  <!-- name: Unique name of the datasource. -->
+  <!ATTLIST datasource name ID #REQUIRED>
+  <!-- cache: Cache this number of records -->
+  <!ATTLIST datasource cache %whole; "5">
+  <!-- connection: The name of the connection as in connections.conf that 
+       points to a valid database. -->
+  <!ATTLIST datasource connection %name; #IMPLIED>
+  <!-- DEPRECATED: The "database" attribute of "datasource" has been 
+                 deprecated [Use {connection} attribute instead] -->
+  <!ATTLIST datasource database %name; #IMPLIED>
+  <!-- detaillink: If this datasource is the child in a master/detail 
        relationship, this property contains a comma-separated list of the this 
        (child's) datasource's field(s) used for linking. -->
-<!ATTLIST datasource detaillink %text; #IMPLIED>
-<!-- distinct: TODO -->
-<!ATTLIST datasource distinct %boolean;>
-<!-- explicitfields: TODO -->
-<!ATTLIST datasource explicitfields %text; #IMPLIED>
-<!-- master: If this datasource is the child in a master/detail relationship, 
-       this property contains the name of the master datasource. -->
-<!ATTLIST datasource master %name; #IMPLIED>
-<!-- masterlink: If this datasource is the child in a master/detail 
+  <!ATTLIST datasource detaillink %text; #IMPLIED>
+  <!-- distinct: TODO -->
+  <!ATTLIST datasource distinct %boolean;>
+  <!-- explicitfields: TODO -->
+  <!ATTLIST datasource explicitfields %text; #IMPLIED>
+  <!-- master: If this datasource is the child in a master/detail 
+       relationship, this property contains the name of the master datasource. 
+       -->
+  <!ATTLIST datasource master %name; #IMPLIED>
+  <!-- masterlink: If this datasource is the child in a master/detail 
        relationship, this property contains a comma-separated list of the 
        master datasource's field(s) used for linking. -->
-<!ATTLIST datasource masterlink %text; #IMPLIED>
-<!-- DEPRECATED: The "order_by" attribute of "datasource" has been deprecated 
-                 [Use {sortorder} tag instead] -->
-<!ATTLIST datasource order_by %text; #IMPLIED>
-<!-- prequery: If true, the datasource is populated on form startup. If false 
-       (default), the form starts out with an empty record until the user or a 
-       trigger queries the database. -->
-<!ATTLIST datasource prequery %boolean;>
-<!-- primarykey: Comma-separated list of the fields that make up the primary 
+  <!ATTLIST datasource masterlink %text; #IMPLIED>
+  <!-- DEPRECATED: The "order_by" attribute of "datasource" has been 
+                 deprecated [Use {sortorder} tag instead] -->
+  <!ATTLIST datasource order_by %text; #IMPLIED>
+  <!-- prequery: If true, the datasource is populated on form startup. If 
+       false (default), the form starts out with an empty record until the 
+       user or a trigger queries the database. -->
+  <!ATTLIST datasource prequery %boolean;>
+  <!-- primarykey: Comma-separated list of the fields that make up the primary 
        key. -->
-<!ATTLIST datasource primarykey %text; #IMPLIED>
-<!-- primarykeyseq: Name of the sequence used to populate a primary key (only 
-       applies to relational backends that support sequences; requires a 
+  <!ATTLIST datasource primarykey %text; #IMPLIED>
+  <!-- primarykeyseq: Name of the sequence used to populate a primary key 
+       (only applies to relational backends that support sequences; requires a 
        single {primarykey} value. -->
-<!ATTLIST datasource primarykeyseq %text; #IMPLIED>
-<!-- requery: Requery a record after posting it; requires {primarykey} 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;>
-<!-- table: The table in the database this datasource will point to. -->
-<!ATTLIST datasource table %name; "">
-<!ATTLIST datasource type %name; "object">
+  <!ATTLIST datasource primarykeyseq %text; #IMPLIED>
+  <!-- requery: Requery a record after posting it; requires {primarykey} 
+       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;>
+  <!-- table: The table in the database this datasource will point to. -->
+  <!ATTLIST datasource table %name; "">
+  <!ATTLIST datasource type %name; "object">
 
 <!-- A datasource provides a link to a database table or some similar data 
      store. -->
 <!ELEMENT import-datasource EMPTY>
-<!-- name: Unique name of the datasource. -->
-<!ATTLIST import-datasource name ID #REQUIRED>
-<!ATTLIST import-datasource library %name; #REQUIRED>
-<!-- cache: Cache this number of records -->
-<!ATTLIST import-datasource cache %whole; "5">
-<!-- connection: The name of the connection as in connections.conf that points 
-       to a valid database. -->
-<!ATTLIST import-datasource connection %name; #IMPLIED>
-<!-- DEPRECATED: The "database" attribute of "import-datasource" has been 
+  <!-- name: Unique name of the datasource. -->
+  <!ATTLIST import-datasource name ID #REQUIRED>
+  <!ATTLIST import-datasource library %name; #REQUIRED>
+  <!-- cache: Cache this number of records -->
+  <!ATTLIST import-datasource cache %whole; "5">
+  <!-- connection: The name of the connection as in connections.conf that 
+       points to a valid database. -->
+  <!ATTLIST import-datasource connection %name; #IMPLIED>
+  <!-- DEPRECATED: The "database" attribute of "import-datasource" has been 
                  deprecated [Use {connection} attribute instead] -->
-<!ATTLIST import-datasource database %name; #IMPLIED>
-<!-- detaillink: If this datasource is the child in a master/detail 
+  <!ATTLIST import-datasource database %name; #IMPLIED>
+  <!-- detaillink: If this datasource is the child in a master/detail 
        relationship, this property contains a comma-separated list of the this 
        (child's) datasource's field(s) used for linking. -->
-<!ATTLIST import-datasource detaillink %text; #IMPLIED>
-<!-- distinct: TODO -->
-<!ATTLIST import-datasource distinct %boolean;>
-<!-- explicitfields: TODO -->
-<!ATTLIST import-datasource explicitfields %text; #IMPLIED>
-<!-- master: If this datasource is the child in a master/detail relationship, 
-       this property contains the name of the master datasource. -->
-<!ATTLIST import-datasource master %name; #IMPLIED>
-<!-- masterlink: If this datasource is the child in a master/detail 
+  <!ATTLIST import-datasource detaillink %text; #IMPLIED>
+  <!-- distinct: TODO -->
+  <!ATTLIST import-datasource distinct %boolean;>
+  <!-- explicitfields: TODO -->
+  <!ATTLIST import-datasource explicitfields %text; #IMPLIED>
+  <!-- master: If this datasource is the child in a master/detail 
+       relationship, this property contains the name of the master datasource. 
+       -->
+  <!ATTLIST import-datasource master %name; #IMPLIED>
+  <!-- masterlink: If this datasource is the child in a master/detail 
        relationship, this property contains a comma-separated list of the 
        master datasource's field(s) used for linking. -->
-<!ATTLIST import-datasource masterlink %text; #IMPLIED>
-<!-- DEPRECATED: The "order_by" attribute of "import-datasource" has been 
+  <!ATTLIST import-datasource masterlink %text; #IMPLIED>
+  <!-- DEPRECATED: The "order_by" attribute of "import-datasource" has been 
                  deprecated [Use {sortorder} tag instead] -->
-<!ATTLIST import-datasource order_by %text; #IMPLIED>
-<!-- prequery: If true, the datasource is populated on form startup. If false 
-       (default), the form starts out with an empty record until the user or a 
-       trigger queries the database. -->
-<!ATTLIST import-datasource prequery %boolean;>
-<!-- primarykey: Comma-separated list of the fields that make up the primary 
+  <!ATTLIST import-datasource order_by %text; #IMPLIED>
+  <!-- prequery: If true, the datasource is populated on form startup. If 
+       false (default), the form starts out with an empty record until the 
+       user or a trigger queries the database. -->
+  <!ATTLIST import-datasource prequery %boolean;>
+  <!-- primarykey: Comma-separated list of the fields that make up the primary 
        key. -->
-<!ATTLIST import-datasource primarykey %text; #IMPLIED>
-<!-- primarykeyseq: Name of the sequence used to populate a primary key (only 
-       applies to relational backends that support sequences; requires a 
+  <!ATTLIST import-datasource primarykey %text; #IMPLIED>
+  <!-- primarykeyseq: Name of the sequence used to populate a primary key 
+       (only applies to relational backends that support sequences; requires a 
        single {primarykey} value. -->
-<!ATTLIST import-datasource primarykeyseq %text; #IMPLIED>
-<!-- requery: Requery a record after posting it; requires {primarykey} 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;>
-<!-- table: The table in the database this datasource will point to. -->
-<!ATTLIST import-datasource table %name; "">
-<!ATTLIST import-datasource type %name; "object">
+  <!ATTLIST import-datasource primarykeyseq %text; #IMPLIED>
+  <!-- requery: Requery a record after posting it; requires {primarykey} 
+       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;>
+  <!-- table: The table in the database this datasource will point to. -->
+  <!ATTLIST import-datasource table %name; "">
+  <!ATTLIST import-datasource type %name; "object">
 
 
 <!-- ========================= -->
@@ -257,10 +273,10 @@
 <!ELEMENT default EMPTY>
 
 <!ELEMENT field EMPTY>
-<!ATTLIST field name %name; #REQUIRED>
-<!ATTLIST field format %name; #IMPLIED>
-<!ATTLIST field section %name; #IMPLIED>
-<!ATTLIST field source %name; #IMPLIED>
+  <!ATTLIST field name %name; #REQUIRED>
+  <!ATTLIST field format %name; #IMPLIED>
+  <!ATTLIST field section %name; #IMPLIED>
+  <!ATTLIST field source %name; #IMPLIED>
 
 <!ELEMENT firstrow EMPTY>
 
@@ -275,7 +291,7 @@
 <!-- Child elements of sortoption -->
 <!-- ============================ -->
 <!ELEMENT sortcolumn EMPTY>
-<!ATTLIST sortcolumn name %name; #REQUIRED>
+  <!ATTLIST sortcolumn name %name; #REQUIRED>
 
 
 <!-- ============================ -->
@@ -290,7 +306,7 @@
 <!ELEMENT sql EMPTY>
 
 <!ELEMENT staticset (staticsetrow*)>
-<!ATTLIST staticset fields %text; #REQUIRED>
+  <!ATTLIST staticset fields %text; #REQUIRED>
 
 
 <!-- =========================== -->
@@ -366,13 +382,14 @@
 <!-- Child elements of sortorder -->
 <!-- =========================== -->
 <!ELEMENT sortfield EMPTY>
-<!-- name: The name of the field by which the datasource will be ordered. -->
-<!ATTLIST sortfield name ID #REQUIRED>
-<!-- descending: Selects if the ordering is done in ascending (default) or in 
-       descending order. -->
-<!ATTLIST sortfield descending %boolean;>
-<!-- ignorecase: Selects wether the ordering is case-sensitive or not. -->
-<!ATTLIST sortfield ignorecase %boolean;>
+  <!-- name: The name of the field by which the datasource will be ordered. 
+       -->
+  <!ATTLIST sortfield name ID #REQUIRED>
+  <!-- descending: Selects if the ordering is done in ascending (default) or 
+       in descending order. -->
+  <!ATTLIST sortfield descending %boolean;>
+  <!-- ignorecase: Selects wether the ordering is case-sensitive or not. -->
+  <!ATTLIST sortfield ignorecase %boolean;>
 
 
 <!-- =========================== -->
@@ -397,25 +414,25 @@
 
 <!-- Defines a constant value in a condition. -->
 <!ELEMENT cconst EMPTY>
-<!ATTLIST cconst value %text; #REQUIRED>
-<!ATTLIST cconst type %text; #IMPLIED>
+  <!ATTLIST cconst value %text; #REQUIRED>
+  <!ATTLIST cconst type %text; #IMPLIED>
 
 <!-- Defines a database table's field in a condition. -->
 <!ELEMENT cfield EMPTY>
-<!ATTLIST cfield name %name; #REQUIRED>
+  <!ATTLIST cfield name %name; #REQUIRED>
 
 <!-- Defines a parameter value in a condition. -->
 <!ELEMENT cparam EMPTY>
-<!ATTLIST cparam name ID #REQUIRED>
+  <!ATTLIST cparam name ID #REQUIRED>
 
 <!-- Implements division. -->
 <!ELEMENT div (add*, cconst*, cfield*, cparam*, div*, mul*, sub*)>
 
 <!-- Implements an exist condition. -->
 <!ELEMENT exist EMPTY>
-<!ATTLIST exist detaillink %text; #REQUIRED>
-<!ATTLIST exist masterlink %text; #REQUIRED>
-<!ATTLIST exist table %name; #REQUIRED>
+  <!ATTLIST exist detaillink %text; #REQUIRED>
+  <!ATTLIST exist masterlink %text; #REQUIRED>
+  <!ATTLIST exist table %name; #REQUIRED>
 
 <!-- Implements lower({value}). -->
 <!ELEMENT lower (cfield*)>
@@ -434,10 +451,10 @@
 <!-- Child elements of staticsetrow -->
 <!-- ============================== -->
 <!ELEMENT staticsetfield EMPTY>
-<!ATTLIST staticsetfield name %text; #REQUIRED>
-<!ATTLIST staticsetfield value %text; #REQUIRED>
+  <!ATTLIST staticsetfield name %text; #REQUIRED>
+  <!ATTLIST staticsetfield value %text; #REQUIRED>
 
 
 <!-- This DTD was created by gnuedtd
-     Updated: 2005-08-13 18:06:54   -->
+     Updated: 2006-08-22 14:58:53   -->
 

Modified: trunk/gnue-reports/doc/man/gnue-reports.1
===================================================================
--- trunk/gnue-reports/doc/man/gnue-reports.1   2006-08-22 12:56:36 UTC (rev 
8590)
+++ trunk/gnue-reports/doc/man/gnue-reports.1   2006-08-22 12:59:08 UTC (rev 
8591)
@@ -1,4 +1,4 @@
-.TH GNUE\-REPORTS 1 "13 August 2005" "GNUe Reports Client"
+.TH GNUE\-REPORTS 1 "22 August 2006" "GNUe Reports Client"
 .SH NAME
 gnue\-reports \- GNUe Reports Client
 .SH SYNOPSIS
@@ -36,13 +36,13 @@
 Include structural comments in the XML output stream. Useful for 
 debugging .grd files.
 .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., 
@@ -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-2005 Free Software Foundation, Inc.
+Copyright \(co 2000-2006 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 2006-08-22 12:56:36 UTC (rev 8590)
+++ trunk/gnue-reports/po/de.po 2006-08-22 12:59:08 UTC (rev 8591)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: GNUe-Reports 0.1\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2005-08-13 18:06+CEST\n"
+"POT-Creation-Date: 2006-08-22 14:58+CEST\n"
 "PO-Revision-Date: 2005-07-22 11:55+0200\n"
 "Last-Translator: Reinhard M�ller <address@hidden>\n"
 "Language-Team: \n"

Modified: trunk/gnue-reports/po/fr.po
===================================================================
--- trunk/gnue-reports/po/fr.po 2006-08-22 12:56:36 UTC (rev 8590)
+++ trunk/gnue-reports/po/fr.po 2006-08-22 12:59:08 UTC (rev 8591)
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2005-08-13 18:06+CEST\n"
+"POT-Creation-Date: 2006-08-22 14:58+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"

Modified: trunk/gnue-reports/po/hu.po
===================================================================
--- trunk/gnue-reports/po/hu.po 2006-08-22 12:56:36 UTC (rev 8590)
+++ trunk/gnue-reports/po/hu.po 2006-08-22 12:59:08 UTC (rev 8591)
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: GNUe Reports 0.1\n"
-"POT-Creation-Date: 2005-08-13 18:06+CEST\n"
+"POT-Creation-Date: 2006-08-22 14:58+CEST\n"
 "PO-Revision-Date: $Date$\n"
 "Last-Translator: Kmetyk� G�bor <address@hidden>\n"
 "MIME-Version: 1.0\n"

Modified: trunk/gnue-reports/po/nl.po
===================================================================
--- trunk/gnue-reports/po/nl.po 2006-08-22 12:56:36 UTC (rev 8590)
+++ trunk/gnue-reports/po/nl.po 2006-08-22 12:59:08 UTC (rev 8591)
@@ -8,7 +8,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: nl\n"
-"POT-Creation-Date: 2005-08-13 18:06+CEST\n"
+"POT-Creation-Date: 2006-08-22 14:58+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"
@@ -39,7 +39,8 @@
 msgstr "Fout opgetreden bij laden van font %s (%s)."
 
 #: client/GRRun.py:65
-msgid "GNUe Reports is the primary reporting agent of the GNU Enterprise 
system."
+msgid ""
+"GNUe Reports is the primary reporting agent of the GNU Enterprise system."
 msgstr ""
 "GNUe Reports is het voornaamste rapporterings onderdeel van het GNU "
 "Enterprise systeem."
@@ -54,8 +55,8 @@
 "NOTE: Currently the default value is \"-\" -- this may change once GNUe "
 "Reports is formally released!"
 msgstr ""
-"Waar moet het rapport naartoe?  De waarde hiervan hangt af van de bestemming 
("
-"bvb., bij verzenden naar een printer, geeft -d de printer naam aan; bij "
+"Waar moet het rapport naartoe?  De waarde hiervan hangt af van de bestemming "
+"(bvb., bij verzenden naar een printer, geeft -d de printer naam aan; bij "
 "verzending via email, geeft -d het email adres aan.) Als <dest> \"-\" is, "
 "dan wordt de uitvoer verzonden via stdout. -- OPM: bij uitoer via stdout, "
 "ook de -q [--quiet] optie gebruiken of er kan rommel in de uitvoer-stream "
@@ -120,8 +121,8 @@
 "Reports will terminate with an error"
 msgstr ""
 "Draai GNUe Reports in batch modus -- vb., geen login informatie of runtime "
-"parameters zullen gevraagd worden. Wanneer vereiste parameters niet opgegeven 
"
-"zijn, daan zal Reports afsluiten met een foutmelding"
+"parameters zullen gevraagd worden. Wanneer vereiste parameters niet "
+"opgegeven zijn, daan zal Reports afsluiten met een foutmelding"
 
 #: client/GRRun.py:123
 msgid ""
@@ -286,4 +287,3 @@
 "Het bestand blijkt niet door gnue-reports aangemaakt te zijn of is van een "
 "niet ondersteund document type. (Misschien was gnue-reports uitgevoerd met "
 "de -X optie?)"
-





reply via email to

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