Author: reinhard Date: 2006-03-24 04:22:33 -0600 (Fri, 24 Mar 2006) New Revision: 8255
Modified: trunk/gnue-appserver/INSTALL trunk/gnue-appserver/NEWS trunk/gnue-appserver/README trunk/gnue-appserver/ROADMAP.in trunk/gnue-appserver/THANKS trunk/gnue-appserver/TODO trunk/gnue-appserver/doc/configuration.txt trunk/gnue-appserver/doc/technotes/00001.txt trunk/gnue-appserver/doc/technotes/00002.txt Log: Documentation updates. Modified: trunk/gnue-appserver/INSTALL =================================================================== --- trunk/gnue-appserver/INSTALL 2006-03-24 10:11:32 UTC (rev 8254) +++ trunk/gnue-appserver/INSTALL 2006-03-24 10:22:33 UTC (rev 8255) @@ -25,7 +25,7 @@ You can find more information about possible database backends on the web page http://www.gnuenterprise.org/tools/common/databases/. -* GNUe Common 0.6.1 or greater [gnue-common] +* GNUe Common 0.6.2 or greater [gnue-common] To build the documentation, you need GNU Texinfo 4.0 or newer installed. Modified: trunk/gnue-appserver/NEWS =================================================================== --- trunk/gnue-appserver/NEWS 2006-03-24 10:11:32 UTC (rev 8254) +++ trunk/gnue-appserver/NEWS 2006-03-24 10:22:33 UTC (rev 8255) @@ -1,6 +1,7 @@ New features/changes in version 0.5.0: (????-??-??) * New (object oriented) RPC interface * Use Python's datetime library instead of mx.DateTime +* Support to run as a service under windows New features/changes in version 0.4.3: (2005-09-28) * Adapted to changes in gnue-common's rpc library in 0.6.1 (e.g. fork a child Modified: trunk/gnue-appserver/README =================================================================== --- trunk/gnue-appserver/README 2006-03-24 10:11:32 UTC (rev 8254) +++ trunk/gnue-appserver/README 2006-03-24 10:22:33 UTC (rev 8255) @@ -37,4 +37,3 @@ ------- GNU Enterprise is free software. See the file `COPYING' for the terms and conditions for copying, distribution and modification. - Modified: trunk/gnue-appserver/ROADMAP.in =================================================================== --- trunk/gnue-appserver/ROADMAP.in 2006-03-24 10:11:32 UTC (rev 8254) +++ trunk/gnue-appserver/ROADMAP.in 2006-03-24 10:22:33 UTC (rev 8255) @@ -4,11 +4,11 @@ =================================================================== -0.6 +0.7 GOALS - The 0.6 Release will focus on security. + The 0.7 Release will focus on security. TODO @@ -31,11 +31,11 @@ =================================================================== -0.7 +0.8 GOALS - The 0.7 Release will add a management interface and implement + The 0.8 Release will add a management interface and implement transaction and locking support. Modified: trunk/gnue-appserver/THANKS =================================================================== --- trunk/gnue-appserver/THANKS 2006-03-24 10:11:32 UTC (rev 8254) +++ trunk/gnue-appserver/THANKS 2006-03-24 10:22:33 UTC (rev 8255) @@ -19,4 +19,3 @@ The GNU Enterprise Application Server would not be what it is today without the invaluable help of these people. - Modified: trunk/gnue-appserver/TODO =================================================================== --- trunk/gnue-appserver/TODO 2006-03-24 10:11:32 UTC (rev 8254) +++ trunk/gnue-appserver/TODO 2006-03-24 10:22:33 UTC (rev 8255) @@ -2,14 +2,14 @@ GNUe Appserver: Feature Plans ====================================================================== -0.6 Releases +0.7 Releases ====================================================================== ---------------------------------------------------------------------- GOALS ---------------------------------------------------------------------- - The 0.6 Release will focus on security. + The 0.7 Release will focus on security. ---------------------------------------------------------------------- TODO @@ -25,14 +25,14 @@ ====================================================================== -0.7 Releases +0.8 Releases ====================================================================== ---------------------------------------------------------------------- GOALS ---------------------------------------------------------------------- - The 0.7 Release will add a management interface and implement + The 0.8 Release will add a management interface and implement transaction and locking support. ---------------------------------------------------------------------- Modified: trunk/gnue-appserver/doc/configuration.txt =================================================================== --- trunk/gnue-appserver/doc/configuration.txt 2006-03-24 10:11:32 UTC (rev 8254) +++ trunk/gnue-appserver/doc/configuration.txt 2006-03-24 10:22:33 UTC (rev 8255) @@ -7,6 +7,8 @@ A. Install the packages available for your platform and distribution of choice. * Debian packages are included in the standard distribution. * Ubuntu packages are contained in the "universe" component. + * Mac OSX disk images in .dmg format are available at + http://www.gnuenterprise.org/downloads/current.php * Microsoft Windows installation files in .exe format are available at http://www.gnuenterprise.org/downloads/current.php (If you provide packages for other platforms/distributions please let us Modified: trunk/gnue-appserver/doc/technotes/00001.txt =================================================================== --- trunk/gnue-appserver/doc/technotes/00001.txt 2006-03-24 10:11:32 UTC (rev 8254) +++ trunk/gnue-appserver/doc/technotes/00001.txt 2006-03-24 10:22:33 UTC (rev 8255) @@ -1,8 +1,11 @@ Title: The Python Language Interface Status: Current Created: 2003-09-16 -Revised: 2004-02-08 +Revised: 2006-03-24 +TODO: This technote should be merged into the devguide and into Epydoc +docstrings. + The Python Language Interface enables you to use GNUe Appserver business objects in python code as if they were python objects. @@ -48,10 +51,6 @@ ======================== The session object knows the following methods: -* getSessionManager (): - Get the underlying session manager -* getSessionId (): - Get the id of the session * setcontext (context): Set the current module context. All not fully qualified identifiers will be qualified with this context. @@ -76,6 +75,10 @@ list of business objects. * new (classname): Create a new (empty) instance of the given class and return it. +* get (classname, objectId): + Return the instance with the given object id. +* message (messageName, *args): + Return the message from the message catalogue. Using Lists of Business Objects Modified: trunk/gnue-appserver/doc/technotes/00002.txt =================================================================== --- trunk/gnue-appserver/doc/technotes/00002.txt 2006-03-24 10:11:32 UTC (rev 8254) +++ trunk/gnue-appserver/doc/technotes/00002.txt 2006-03-24 10:22:33 UTC (rev 8255) @@ -3,6 +3,8 @@ Created: 2003-09-17 Revised: 2004-02-24 +TODO: This technote should be merged into Epydoc docstrings. + The Class Repository holds all information about the structure of the business objects. _______________________________________________ commit-gnue mailing list [email protected] http://lists.gnu.org/mailman/listinfo/commit-gnue
