commit-gnue
[Top][All Lists]
Advanced

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

[gnue] r7999 - trunk/gnue-appserver/src


From: reinhard
Subject: [gnue] r7999 - trunk/gnue-appserver/src
Date: Wed, 28 Sep 2005 12:35:47 -0500 (CDT)

Author: reinhard
Date: 2005-09-26 21:45:49 -0500 (Mon, 26 Sep 2005)
New Revision: 7999

Modified:
   trunk/gnue-appserver/src/repository.py
Log:
Fixed docstrings.


Modified: trunk/gnue-appserver/src/repository.py
===================================================================
--- trunk/gnue-appserver/src/repository.py      2005-09-26 14:16:35 UTC (rev 
7998)
+++ trunk/gnue-appserver/src/repository.py      2005-09-27 02:45:49 UTC (rev 
7999)
@@ -142,7 +142,9 @@
 
   def __init__ (self, connections):
     """
-    @param connection: L{gnue.common.datasources.GConnections} instance
+    Create a new repository instance.
+
+    @param connections: L{gnue.common.datasources.GConnections} instance
     """
 
     self._connections = connections
@@ -447,6 +449,8 @@
 
   def __init__ (self, classname, predefined = None):
     """
+    Create a new repository item instance.
+
     @param classname: name of the class wrapped by this item
     @param predefined: dictionary with predefined values
     """
@@ -541,6 +545,8 @@
 
   def __init__ (self, predefined = None):
     """
+    Create a new module item.
+
     @param predefined: dictionary with predefined ('builtin') values
     """
 
@@ -618,6 +624,8 @@
 
   def __init__ (self, predefined, moduleLookup):
     """
+    Create a new class item.
+
     @param predefined: dictionary with predefined ('builtin') values
     @param moduleLookup: (raw) lookup-dictionary with all modules available
     """
@@ -869,6 +877,8 @@
 
   def __init__ (self, predefined, moduleLookup):
     """
+    Create a new property item.
+
     @param predefined: dictionary with predefined ('builtin') values
     @param moduleLookup: (raw) lookup-dictionary with all modules available
     """
@@ -972,6 +982,8 @@
 
   def __init__ (self, aProcedure):
     """
+    Create a new calculated property item.
+
     @param aProcedure: procedure to bind as calculated property
     """
 
@@ -1054,6 +1066,8 @@
 
   def __init__ (self, predefined, moduleLookup):
     """
+    Create a new procedure item.
+
     @param predefined: dictionary with predefined ('builtin') values
     @param moduleLookup: (raw) lookup-dictionary with all modules available
     """
@@ -1156,6 +1170,8 @@
 
   def __init__ (self, predefined):
     """
+    Create a new parameter item.
+
     @param predefined: dictionary with predefined ('builtin') values
     """
 
@@ -1202,13 +1218,14 @@
   """
 
   # ---------------------------------------------------------------------------
-  # Create a new property item
+  # Create a new label item
   # ---------------------------------------------------------------------------
 
   def __init__ (self, predefined):
     """
+    Create a new label item.
+
     @param predefined: dictionary with predefined ('builtin') values
-    @param moduleLookup: (raw) lookup-dictionary with all modules available
     """
 
     BaseItem.__init__ (self, u'gnue_label', predefined)
@@ -1473,7 +1490,7 @@
   will result in a list ['de_AT', 'de', 'C'].
 
   @param language: language (locale) to create a list for, e.g. 'de_AT'
-  @result: list of language-codes in descending order
+  @return: list of language-codes in descending order
   """
 
   result = []





reply via email to

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