reinhard | 9 Jun 2008 13:07

[gnue] r9876 - trunk/gnue-forms/src/GFObjects

Author: reinhard
Date: 2008-06-09 06:07:23 -0500 (Mon, 09 Jun 2008)
New Revision: 9876

Modified:
   trunk/gnue-forms/src/GFObjects/GFField.py
   trunk/gnue-forms/src/GFObjects/GFTabStop.py
Log:
Made "editable" property of fields available in trigger namespace.

Modified: trunk/gnue-forms/src/GFObjects/GFField.py
===================================================================
--- trunk/gnue-forms/src/GFObjects/GFField.py	2008-05-08 07:50:04 UTC (rev 9875)
+++ trunk/gnue-forms/src/GFObjects/GFField.py	2008-06-09 11:07:23 UTC (rev 9876)
 <at>  <at>  -134,8 +134,12  <at>  <at> 
             'setFKDescription'  : {'function': self.set_value}}

         self._triggerProperties = {
-            'value': {'get': self.get_value,
-                      'set': self.set_value}}
+            'value': {
+                'get': self.get_value,
+                'set': self.set_value},
+            'editable': {
+                'get': self.__get_editable,
+                'set': self.__set_editable}}

         self._triggerGet = self.__get_value
         self._triggerSet = self.__set_value
 <at>  <at>  -335,6 +339,25  <at>  <at> 
(Continue reading)

johannes | 10 Jun 2008 16:52

[gnue] r9878 - trunk/gnue-forms/src/uidrivers/wx26/widgets

Author: johannes
Date: 2008-06-10 09:52:31 -0500 (Tue, 10 Jun 2008)
New Revision: 9878

Modified:
   trunk/gnue-forms/src/uidrivers/wx26/widgets/entry.py
Log:
Enter of numeric keypad behaves in the same way as the normal enter key

Modified: trunk/gnue-forms/src/uidrivers/wx26/widgets/entry.py
===================================================================
--- trunk/gnue-forms/src/uidrivers/wx26/widgets/entry.py	2008-06-09 11:09:17 UTC (rev 9877)
+++ trunk/gnue-forms/src/uidrivers/wx26/widgets/entry.py	2008-06-10 14:52:31 UTC (rev 9878)
 <at>  <at>  -292,11 +292,6  <at>  <at> 

     def __on_item_selected(self, event):

-        # In wx2.8, the widget may not yet have the focus. However, we must
-        # make sure the event arrives at the correct widget.
-        widget = event.GetEventObject()
-        self._gfObject._event_set_focus(self.widgets.index(widget))
-
         self._request('REPLACEVALUE', index=event.GetSelection(),
                 text=event.GetString())

 <at>  <at>  -304,12 +299,7  <at>  <at> 

     def __on_text_changed(self, event):

-        # In wx2.8, the widget may not yet have the focus. However, we must
(Continue reading)

reinhard | 26 Jun 2008 09:08

[gnue] r9879 - trunk/www/web/faq

Author: reinhard
Date: 2008-06-26 02:08:58 -0500 (Thu, 26 Jun 2008)
New Revision: 9879

Modified:
   trunk/www/web/faq/minifaq.php
Log:
Fixed link.

Modified: trunk/www/web/faq/minifaq.php
===================================================================
--- trunk/www/web/faq/minifaq.php	2008-06-10 14:52:31 UTC (rev 9878)
+++ trunk/www/web/faq/minifaq.php	2008-06-26 07:08:58 UTC (rev 9879)
 <at>  <at>  -17,15 +17,15  <at>  <at> 
 <h3>2. How do I get help with GNUe?</h3>

 <p>First read the documentation. It can be found at 
-<a href="../project/docs-all.html">http://www.gnuenterprise.org/project/docs-all.php</a>.
+<a href="../project/docs-all.php">http://www.gnuenterprise.org/project/docs-all.php</a>.
 Once you are familiar with
 the documentation you should review the mail list archives 
 which can be found at 
-<a href="../community/mail.html">http://www.gnuenterprise.org/community/mail.php</a>.
+<a href="../community/mail.php">http://www.gnuenterprise.org/community/mail.php</a>.
 If the mail lists and documents do not answer your questions feel free to 
 send mail to the mail list. You may also ask you question on 
 the IRC chat channel, details of which can be found at 
-<a href="../community/irc.html">http://www.gnuenterprise.org/community/irc.php</a>.
+<a href="../community/irc.php">http://www.gnuenterprise.org/community/irc.php</a>.
 </p>
(Continue reading)

reinhard | 26 Jun 2008 10:43

[gnue] r9880 - trunk/www/web/community

Author: reinhard
Date: 2008-06-26 03:43:39 -0500 (Thu, 26 Jun 2008)
New Revision: 9880

Modified:
   trunk/www/web/community/mail.php
Log:
Removed link to archives that don't exist any more.

Modified: trunk/www/web/community/mail.php
===================================================================
--- trunk/www/web/community/mail.php	2008-06-26 07:08:58 UTC (rev 9879)
+++ trunk/www/web/community/mail.php	2008-06-26 08:43:39 UTC (rev 9880)
 <at>  <at>  -37,15 +37,6  <at>  <at> 
 <a href="http://mail.gnu.org/mailman/listinfo/commit-gnue">
 http://mail.gnu.org/mailman/listinfo/commit-gnue</a>.

-<h3>Archived lists</h3>
-
-<p>In addition, from January 2000 to November 2001, there 
-were a large number (16) of specific lists for particular 
-parts of the GNUe project. These have now all been merged into 
-the main gnue <at> gnu.org list above, but the 
-<a href="http://lists.gnue.org/mailman/listinfo">
-archives</a> for these old lists are still available.</p>
-
 </div>

 <?php include "$BASEDIR/shared/_footer.php"; ?>
(Continue reading)

reinhard | 26 Jun 2008 14:48

[gnue] r9881 - trunk/gnue-common/src/datasources/drivers/Base

Author: reinhard
Date: 2008-06-26 07:48:01 -0500 (Thu, 26 Jun 2008)
New Revision: 9881

Modified:
   trunk/gnue-common/src/datasources/drivers/Base/RecordSet.py
Log:
If a backend function is called for a record, make that record subject to
requery.

issue194 testing

Modified: trunk/gnue-common/src/datasources/drivers/Base/RecordSet.py
===================================================================
--- trunk/gnue-common/src/datasources/drivers/Base/RecordSet.py	2008-06-26 08:43:39 UTC (rev 9880)
+++ trunk/gnue-common/src/datasources/drivers/Base/RecordSet.py	2008-06-26 12:48:01 UTC (rev 9881)
 <at>  <at>  -407,10 +407,16  <at>  <at> 
     if self.isEmpty ():
       raise Exceptions.FunctionCallOfEmptyRecordError

-    return self.__connection.call (self.__tablename, self.__wherefields (),
+    result = self.__connection.call (self.__tablename, self.__wherefields (),
         methodname, parameters)

+    # This call possibly changed something in the backend, so this record must
+    # be subject to requery.
+    self.__requeryStatus = 'posted'

+    return result
+
(Continue reading)


Gmane