johannes | 6 Feb 2006 14:57

[gnue] r8150 - trunk/gnue-forms/src/uidrivers/wx26

Author: johannes
Date: 2006-02-06 07:57:33 -0600 (Mon, 06 Feb 2006)
New Revision: 8150

Added:
   trunk/gnue-forms/src/uidrivers/wx26/UISplashScreen.py
Modified:
   trunk/gnue-forms/src/uidrivers/wx26/UIdriver.py
Log:
Added implementation of a SplashScreen

Added: trunk/gnue-forms/src/uidrivers/wx26/UISplashScreen.py
===================================================================
--- trunk/gnue-forms/src/uidrivers/wx26/UISplashScreen.py	2006-01-30 12:50:29 UTC (rev 8149)
+++ trunk/gnue-forms/src/uidrivers/wx26/UISplashScreen.py	2006-02-06 13:57:33 UTC (rev 8150)
 <at>  <at>  -0,0 +1,60  <at>  <at> 
+# GNU Enterprise Forms - wx 2.6 UI Driver - Splash Screen
+#
+# Copyright 2001-2006 Free Software Foundation
+#
+# This file is part of GNU Enterprise
+#
+# GNU Enterprise 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 Software Foundation; either
+# version 2, or (at your option) any later version.
+#
+# GNU Enterprise is distributed in the hope that it will be
+# useful, but WITHOUT ANY WARRANTY; without even the implied
+# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
(Continue reading)

johannes | 6 Feb 2006 14:57

[gnue] r8151 - trunk/gnue-common/images

Author: johannes
Date: 2006-02-06 07:57:57 -0600 (Mon, 06 Feb 2006)
New Revision: 8151

Modified:
   trunk/gnue-common/images/gnue-splash.png
Log:
Replaced old splash screen image

Modified: trunk/gnue-common/images/gnue-splash.png
===================================================================
--- trunk/gnue-common/images/gnue-splash.png	2006-02-06 13:57:33 UTC (rev 8150)
+++ trunk/gnue-common/images/gnue-splash.png	2006-02-06 13:57:57 UTC (rev 8151)
 <at>  <at>  -1,820 +1,219  <at>  <at> 
 ‰PNG
 
-
johannes | 6 Feb 2006 17:34

[gnue] r8152 - trunk/gnue-common/src/apps

Author: johannes
Date: 2006-02-06 10:34:19 -0600 (Mon, 06 Feb 2006)
New Revision: 8152

Modified:
   trunk/gnue-common/src/apps/GServerApp.py
Log:
Create directory for pidfile if necessary

Modified: trunk/gnue-common/src/apps/GServerApp.py
===================================================================
--- trunk/gnue-common/src/apps/GServerApp.py	2006-02-06 13:57:57 UTC (rev 8151)
+++ trunk/gnue-common/src/apps/GServerApp.py	2006-02-06 16:34:19 UTC (rev 8152)
 <at>  <at>  -66,7 +66,7  <at>  <at> 
     GBaseApp.__init__(self, connections, application, defaults)

     if not self.OPTIONS ['foreground']:
-      if os.name == 'posix':
+      if os.name == 'posix':
         self.__removeStaleFile ()
         self.__createPidFile (0)

 <at>  <at>  -181,6 +181,10  <at>  <at> 
      <at> param pid: Process id to store in the pid file
     """

+    piddir = os.path.dirname (self.OPTIONS ['pidfile'])
+    if not os.path.exists (piddir):
+      os.makedirs (piddir)
+
(Continue reading)

johannes | 6 Feb 2006 20:33

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

Author: johannes
Date: 2006-02-06 13:33:53 -0600 (Mon, 06 Feb 2006)
New Revision: 8153

Modified:
   trunk/gnue-appserver/src/geasSessionManager.py
   trunk/gnue-appserver/src/repository.py
Log:
Workaround for systems without proper locale information; fix of 
debug-message

Modified: trunk/gnue-appserver/src/geasSessionManager.py
===================================================================
--- trunk/gnue-appserver/src/geasSessionManager.py	2006-02-06 16:34:19 UTC (rev 8152)
+++ trunk/gnue-appserver/src/geasSessionManager.py	2006-02-06 19:33:53 UTC (rev 8153)
 <at>  <at>  -237,7 +237,7  <at>  <at> 

     assert gEnter (4)

-    return self.repository.getFilterDefinition (language)
+    result = self.repository.getFilterDefinition (language)

     assert gLeave (4, result)
     return result

Modified: trunk/gnue-appserver/src/repository.py
===================================================================
--- trunk/gnue-appserver/src/repository.py	2006-02-06 16:34:19 UTC (rev 8152)
+++ trunk/gnue-appserver/src/repository.py	2006-02-06 19:33:53 UTC (rev 8153)
 <at>  <at>  -1494,11 +1494,12  <at>  <at> 
(Continue reading)

jan | 9 Feb 2006 16:48

[gnue] r8154 - trunk/gnue-appserver/extensions/webfrontend

Author: jan
Date: 2006-02-09 09:48:31 -0600 (Thu, 09 Feb 2006)
New Revision: 8154

Added:
   trunk/gnue-appserver/extensions/webfrontend/rpcproxy.cgi
Modified:
   trunk/gnue-appserver/extensions/webfrontend/README
   trunk/gnue-appserver/extensions/webfrontend/gnue-forms.js
   trunk/gnue-appserver/extensions/webfrontend/vcXMLRPC.js
Log:
updated webfrontend to work with last production appserver (0.4.3)
add proxy to circumvent removed direct download ability from appserver
correct error handling in vcXMLRPC

Modified: trunk/gnue-appserver/extensions/webfrontend/README
===================================================================
--- trunk/gnue-appserver/extensions/webfrontend/README	2006-02-06 19:33:53 UTC (rev 8153)
+++ trunk/gnue-appserver/extensions/webfrontend/README	2006-02-09 15:48:31 UTC (rev 8154)
 <at>  <at>  -9,49 +9,39  <at>  <at> 
 -------------

 Server side:
-GNUe Appserver (>0.0.4)
+GNUe Appserver (<=0.4.3)  * Changes in CVS after 0.4.3 not adapted yet (switch to object rpc)
 GNUe Common (>0.5.0)

 client side:
 Mozilla or other Gecko based Browser
-or IE > 5.0
(Continue reading)

johannes | 9 Feb 2006 20:24

[gnue] r8156 - in trunk/gnue-forms: images/default po src/uidrivers/wx26 src/uidrivers/wx26/widgets

Author: johannes
Date: 2006-02-09 13:24:41 -0600 (Thu, 09 Feb 2006)
New Revision: 8156

Added:
   trunk/gnue-forms/images/default/gnue-16x16.png
   trunk/gnue-forms/images/default/gnue-32x32.png
   trunk/gnue-forms/images/default/gnue-64x64.png
Modified:
   trunk/gnue-forms/po/de.po
   trunk/gnue-forms/src/uidrivers/wx26/UIdriver.py
   trunk/gnue-forms/src/uidrivers/wx26/dialogs.py
   trunk/gnue-forms/src/uidrivers/wx26/widgets/form.py
Log:
Added iconbundle for forms; wx26 driver: changed about dialog, added 
default icons to forms; always raise a form to the front when it is 
shown.

Added: trunk/gnue-forms/images/default/gnue-16x16.png
===================================================================
(Binary files differ)

Property changes on: trunk/gnue-forms/images/default/gnue-16x16.png
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: trunk/gnue-forms/images/default/gnue-32x32.png
===================================================================
(Binary files differ)
(Continue reading)

johannes | 9 Feb 2006 20:21

[gnue] r8155 - in trunk/gnue-common: etc images

Author: johannes
Date: 2006-02-09 13:21:06 -0600 (Thu, 09 Feb 2006)
New Revision: 8155

Added:
   trunk/gnue-common/images/gnue-icon.png
   trunk/gnue-common/images/gnue-old.png
Modified:
   trunk/gnue-common/etc/sample.connections.conf
   trunk/gnue-common/images/gnue.png
Log:
Added new images and changed sample config file

Modified: trunk/gnue-common/etc/sample.connections.conf
===================================================================
--- trunk/gnue-common/etc/sample.connections.conf	2006-02-09 15:48:31 UTC (rev 8154)
+++ trunk/gnue-common/etc/sample.connections.conf	2006-02-09 19:21:06 UTC (rev 8155)
 <at>  <at>  -38,3 +38,4  <at>  <at> 
 host = localhost
 port = 8765
 transport = http
+authentication = yes

Added: trunk/gnue-common/images/gnue-icon.png
===================================================================
(Binary files differ)

Property changes on: trunk/gnue-common/images/gnue-icon.png
___________________________________________________________________
Name: svn:mime-type
(Continue reading)

johannes | 10 Feb 2006 08:57

[gnue] r8157 - trunk/gnue-common/src/apps

Author: johannes
Date: 2006-02-10 01:57:47 -0600 (Fri, 10 Feb 2006)
New Revision: 8157

Modified:
   trunk/gnue-common/src/apps/i18n.py
Log:
Always return a locale. If the locale returned by getlocale () is None, 
default to 'C'

Modified: trunk/gnue-common/src/apps/i18n.py
===================================================================
--- trunk/gnue-common/src/apps/i18n.py	2006-02-09 19:24:41 UTC (rev 8156)
+++ trunk/gnue-common/src/apps/i18n.py	2006-02-10 07:57:47 UTC (rev 8157)
 <at>  <at>  -206,7 +206,7  <at>  <at> 
   except locale.Error:
     result = ''

-  return result
+  return result or 'C'

 
 # -----------------------------------------------------------------------------
johannes | 10 Feb 2006 12:28

[gnue] r8158 - trunk/gnue-forms/src/uidrivers/wx26

Author: johannes
Date: 2006-02-10 05:28:33 -0600 (Fri, 10 Feb 2006)
New Revision: 8158

Modified:
   trunk/gnue-forms/src/uidrivers/wx26/dialogs.py
Log:
Fixed the InputDialog to behave the same way on wxMSW, wxGTK and wxMac

Modified: trunk/gnue-forms/src/uidrivers/wx26/dialogs.py
===================================================================
--- trunk/gnue-forms/src/uidrivers/wx26/dialogs.py	2006-02-10 07:57:47 UTC (rev 8157)
+++ trunk/gnue-forms/src/uidrivers/wx26/dialogs.py	2006-02-10 11:28:33 UTC (rev 8158)
 <at>  <at>  -67,7 +67,7  <at>  <at> 
     bold.SetWeight (wx.FONTWEIGHT_BOLD)

     # On Windows the SMALL_FONT is really too small
-    if '__WXMSW__' in wx.PlatformInfo:
+    if 'wxMSW' in wx.PlatformInfo:
       small = wx.NORMAL_FONT
     else:
       small = wx.SMALL_FONT
 <at>  <at>  -179,7 +179,6  <at>  <at> 

     self.inputData   = {}
     self.__dropdowns = {}
-    self.__controls  = []
     self.__lastEntry = None

     row = 0
(Continue reading)


Gmane