*** jcater has quit IRC *** jamest has quit IRC *** aries has joined #gnuenterprise hi *** kilo has joined #gnuenterprise kilo good morning hi aries in what state you are now regarding gnue *** johannesV has joined #gnuenterprise hi johannesV hi johannesV kilo: I'm trying to start designer, but I think I should read the docs now :) hmm, designer is wx-only. do you have proper wxpython? hi guys i'm off in a few minutes again (have to bring my wife to the doctor ...) just reading logs to keep in sync with all of you :) kilo: I think, but if start gnue-designer, I'm getting a brand new error msg =) which is? *** johannesV has quit IRC what kind of error msg? I've libwxgtk2.4-2.4.2-4mdk libwxPythonGTK2.4-2.4.2.4-2mdk libwxgtkgl2.4-2.4.2-4mdk libwxgtk2.4-devel-2.4.2-4mdk [aries@ganja aries]$ gnue-designer Traceback (most recent call last): File "/usr/local/bin/gnue-designer", line 30, in ? from gnue.designer import Designer File "/usr/local/gnue/lib/python/gnue/designer/Designer.py", line 65, in ? from wxPython.wx import * ImportError: No module named wxPython.wx wxPythonGTK-2.4.1.2-3mdk and I've wxPythonGTK-2.4.1.2-3mdk too from Mdk 9.2 I'm a bit confused about packages. Should I use devel packs? i have ii wxpython 2.4.2.4-4.1 WxWindows kiegészítések a Pythonhoz ii wxwidgets 2.4.2-6.1 wxWidgets widget-készlet (GTK1 változat) ii wxwidgets-dev 2.4.2-6.1 wxWidgets widget-készlet (GTK1 változat) - f rc wxwindows 2.4.2-2.3 wxWindows widget-készlet (GTK változat) rc wxwindows-dev 2.4.2-2.3 wxWindows widget-készlet (GTK változat) - fe rc wxwindows-gl 2.4.2-3.6 wxWindows widget-készlet (GTK változat) - op *** sjc has joined #gnuenterprise doh, wxpython v2.4 has built for python v2.3? the py files are sitting it in /usr/lib/python2.3... * aries symlink the files that wouldn't surprise me and it may not be binary compatible with python 2.4 eh, it needs gtk1... ImportError: libwx_gtk-2.4.so.0: cannot open shared object file: No such file or directory ImportError: /usr/lib/libwx_gtk-2.4.so.0: version `WXGTK_2.4' not found (required by /usr/lib/python2.4/site-packages/wxPython/wxc.so) ajmitch_: what can i do? without designer, what docs can tell me how SHOULD i start an enterprise application modules babyerp contrib is a good starting point? hi all hi dimas aries: babyerp is obsoleted, try cddb, hotline or invoice in contrib hi dimas hello aries, kilo kilo: if it is obsoleted, why don't you put it into "Attic"? hmmm, maybe we should. will think about it and take that question to the general assembly 8-))) kilo: I'm thinking about the gnue-invoice UML-diagram. Are there any scenario to convert the address and party tables into a more complex one? aries: bb in 10 mins aries: back why convert them to more complex? because i need to store much more info about customers are there any plans to make a complete erp modules with gnue? more info can be stored by extending the basic modules, anyone is welcome to help in that does this extensions degrade the performance? my question is that should i start a completely new module(s) or extending the existing one(s) it surely degrades, but the question is the size of degradation. imho a simple join introduced with an xtension module does not cause big performance issues for a good db backend btw i've just read the logs. what is yur problem with calculated fields? *** SachaS has joined #gnuenterprise hi SachaS *** ra3vat has joined #gnuenterprise hi kilo how are you? how am i, how am i... whisky stores at home reached a critical low level... red signal flashes 8-)) ahhh thats why you are doing some inventory thingy with gnue ;) oh no, you uncovered my secret intentions 8-))) haha do we have gnue-packages/base/org/org.gcd ? definitely see it only in gnue-oldpackages/base/org/classes do you have gnue-packages/base/party? no and yuo dont have gnue-packages/base/org? no *** sjc has quit IRC you should have that try svn up in gnue-packages renewed all gnue-packages base/org exist base/party no that is correct ok so: do we have gnue-packages/base/org/org.gcd ? yes yep ^:) hi kilo, it's me dimas :) oh no, dont talk to each other, dimas and ra3vat 8-))) i'm getting error when issuing gnue-invoice/scripts/setup-db.sh DB000: cursor.execute (s) DB000: ProgrammingError: ERROR: ignoring unconvertible UTF-8 character 0xd3d7 *** johannesV has joined #gnuenterprise must be something witk country names, try to comment the last line (gsscvs...) in the script using kernel 2.6.8 breaks output of cdparanoia ? kilo: there was error like Loading gsd file 'gnue.gsd' ... You are about to create the new database 'invoice-backend'. Continue [y,N]:y createuser: invalid option: --host=localhost Try 'createuser --help' for more information. createdb: invalid option: --host=localhost kilo: is that solved? hah, no, tell it to johannesV, it is something that we are stuck with too dimas, you are using postgresql ? yep hmm, me too will check this right now (i'm using the backend-db on another host ...) i have to go bye *** aries has quit IRC dimas, using 'localhost' as host works perfectly for me ... which version of postgresql are you using ? can you reproduce this error on the commandline (by using createdb directly) dimas, what does 'createdb --version' say ? [ds@exodus scripts]$ createdb --version createdb: invalid option: --version Try 'createdb --help' for more information. ok, so what does 'createdb --help' ? is there any hint about a --host option createuser --createdb --adduser gnue --host=localhost or at least a version that is the command will check with createuser options dimas, please verify your postgresql-version ? 7.3.1 createuser: invalid option: --host=localhost isn't this the opposite of createuser --createdb --adduser gnue --host=localhost hm, i'm using 7.4.6 ... dimas, can you drop the usage of 'createdb' and the usage of 'createuser' ? i mean paste it in here createuser --createdb --host=localhost --adduser gnue ? seems like this is more acceptable which is the dbname which is the username ? i just want to add another database username should be last param so which is the dbname then ? i though createdb and createuser are just symlinks to pg_wrapper ??? ok, it's lunch-time now ... i'll try to find some 'old' docs about that 7.3.1-version of postgres ... bbl sorry was away *** dcmwai has quit IRC [ds@exodus Creation]$ diff Creation.py Creation.py.my 71c71 < createuser = u"createuser --createdb --adduser %s%s" % (username, site) --- > createuser = u"createuser %s --createdb --adduser %s" % (site, username) 76,78c76,77 < < createdb = u"createdb %s --owner=%s%s --encoding=UNICODE" \ < % (dbname, username, site) --- > createdb = u"createdb %s --owner=%s --encoding=UNICODE %s" \ > % (site, username, dbname) johannesV: this solves the problem with 7.3.1 gnue-common/src/datasources/drivers/postgresql/Schema/Creation/Creation.py dimas, great, i'll try this on 7.4.6 and do a commit if it works too *** kilo has quit IRC *** kilo has joined #gnuenterprise *** ra3vat has quit IRC *** dcmwai has joined #gnuenterprise *** kilo has joined #gnuenterprise Loading gsd file '../schema/invoice-en.gsd' ... ERROR: fk_loc_address_loc_country referential integrity violation - key referenced from loc_address not found in loc_country kilo: what have i missed again? :) *** jamest has joined #gnuenterprise *** ra3vat has joined #gnuenterprise *** btami has joined #gnuenterprise hi all dimas: any success with win32 client? @seen dimas btami: dimas was last seen here 55 minutes and 23 seconds ago saying: kilo: what have i missed again? :) btami: hi in an hour will install forms 0.5.9 on another machine dimas: i find that the psycopg module in setup exe is for pg 7.4, so you have to overwrite the psycopg.pyd in installed bin dir from http://stickpeople.com/projects/python/win-psycopg/win-psycopg23.zip it's for 7.3 great will try now provider = pypgsql is ok for me too *** ra3vat has quit IRC *** jcater has joined #gnuenterprise btami: it works with psycopg now *** holycow has joined #gnuenterprise btami: thanks with pypgsql also works *** reinhard has joined #gnuenterprise *** btami has quit IRC reinhard, have you seen my mail regarding language.Object.py ? *** btami has joined #gnuenterprise johannesV: yes johannesV: will think about it ok we would need to replace that class-definition thing by a query of the classes (gnue_*) yep for the places where the language interface needs classrep info which shouldn't be *too* much, IIRC this is in __getattr__ only where an object needs to know, wether an attribute is a property or a procedure so actually a request() on gnue_property should do it actually two requests: gnue_property (and if not successfull, gnue_procedure) it could be an invalid one too maybe load a list of all properties and pocedures at some good point and cache it somewhere per instance ? per lifetime of the langauge interface per language.Session yeah I think that could make sense will look at it ... *** wayneg has quit IRC i think caching this in lang.session is a good idea .. *** Vee has quit IRC *** aries has joined #gnuenterprise hi all *** Vee has joined #gnuenterprise ajmitch_: how can I help to migrate gnue-designer from v2.4 to v2.5? hi aries btami: hello aries: code code code btami: but I hasn't code any line in python yet =) python is easy just try it once, and never will use any other btami: who has used ruby/php/java tell the same =) koz they never tried python :) btami: I'm familiar with script languages like php and I'm not a full newbie in C++/Objective C, so I think to learn Python won't consume too much time btami: But now I can't help in migrate because i'm a fresh in python but I'm intrested in the migrate btami: and of course I'm a poor Hungarian ;) then kick jcaters ass my pair tell me go to buy the xmas tree so I have to go ... Happy Xmas, folks! designer is hes baby happy xmas btami: I like to kick my foes well, but not those who help me =) bye happy christmas btami! and aries and all who won't meet me tomorrow here ;-) reinhard: you too :) *** aries has quit IRC fwiw happ xmas reinhard ! happy we all got this mail about that person trying to "integrate" something with gnue I am not very happy about getting kinda spammed this way I mean he somehow took all email addresses he found somewhere related to gnue most probably I won't answer him, as this is something I dislike very strongly yep also answering to the announcement message is not really good style :) yeah, I saw that I started to answer with "Please direct this to the mailing lists" *** johannesV_ has joined #gnuenterprise *** johannesV has quit IRC *** ncjp has quit IRC *** ncjp has joined #gnuenterprise *** holycow has quit IRC *** holycow has joined #gnuenterprise getting error with gnue-invoice/scripts/setup-db.sh ERROR: fk_loc_address_loc_country referential integrity violation - key referenced from loc_address not found in loc_country loc_address is getting filled when loc_country is still empty *** fgdfgdfg has joined #gnuenterprise *** fgdfgdfg has quit IRC *** wendall911 has joined #gnuenterprise *** sjc has joined #gnuenterprise *** dcmwai has quit IRC *** holycow has quit IRC *** fgdfgdfg has joined #gnuenterprise *** reinhard has quit IRC *** holycow has joined #gnuenterprise *** reinhard has joined #gnuenterprise dimas, i've tracked down the bug you've found it's a problem in invoice-en.gsd it does not define the constraint between loc_address and loc_country will look at a solution a bit later ... *** fgdfgdfg has quit IRC *** reinhard has left #gnuenterprise *** btami has quit IRC dimas, please svn-up and try again the constraint-problem with invoice-en.gsd is fixed i've changed gnue-schema to be not that strict on constraint-defs :) *** johannesV_ has quit IRC *** johannesV has joined #gnuenterprise hmmmm hi kilo hi johannesV just reading logs strange thing is that it worked ok on last commit has something changed since that in gnue? kilo, yes lately r171 | kilo | 2004-12-10 13:31:17 +0100 (Fri, 10 Dec 2004) | 2 lines GNUe Invoice. Store Seller info in separate class. gnue-schema is capable of interpreting constraints :) but invoice-en.gsd is a case i haven't tested was it developed since 10 december? it does not give any hint about constraint (has tabledata only) on dec 13 it came from gscvs yes, gsscvs so if there is no constraint, blame that or... wait... blame derek well, if there is no constraint, the tables will be processed in the order as given in the gsd (now) otherwise gnue-schema reorders tables as needed it also reorders rows (taking care of fish-hooks) gsscvs produced this gsd, i did not change the order of tables in the gsd gnue-gsdgen right, this is because gnue-gsdgen creates a proper order of rows the problem was just gnue-schema, not knowing how to order tables (since it had no clue about constraints) after all, it was not your fault (or invoice-en.gsd) it was simply mine *lol* rotfl that was great ok, so i'm gonna fix the next bug i've discovered in appserver today in fact maybe i have missed the commit mail of that new feature of gnue-schema there are no bugs in appserver. it has only features well, i've to think about adding constraint-information in the tag of a tabledata as well as constraint-introspection to the drivers but since not all drivers do support constraints (like sqlite) this might still be a problem then have you heard that scientist will try to plant special trees on Mars? no i haven't, do they ? this sounds like the beginning of a joke don't they need atmosphere to grow ? * jcater waits for the punchline yeah no joke. these trees live in Mexico on high mountains, about 4000 metres high, and need very little oxygen crazy thing ... but with photosynthesis they do produce oxygen. and also they bear cold weather easily *** johannesV has quit IRC jcater: am i right that you have uncommitted format mask codes for forms somewhere? kilo: link to trees? hmmm, let me see, a good way to link trees with format masks... hmmm 8-)) ha hi *** sjc has quit IRC kilo: no he lost the format mask code the base code is in common and i'll be working it back into forms real soon now happy holidays dudes as I deployed new forms in accounting with the promise i'd have dollar amounts looking like dollar amounts asap how's it going? plan to start before end of year chillywilly: happy holidays and busy how's the new job treating you? busy :) great\ mornign jamest: good news hi ajmitch_ hello chillywilly we've always used gnue internally but have taken it up a notch :) *** jamest has quit IRC *** kilo has quit IRC *** wendall911 has quit IRC *** jamest has joined #gnuenterprise *** jamest has left #gnuenterprise *** jcater_ has joined #gnuenterprise *** jcater has quit IRC *** jcater has joined #gnuenterprise *** holycow has quit IRC