*** sjc has quit IRC morning all What is the state of gnue-packages? bad :D Is someone working on them? Is there a plan? is there a roadmap/ ? yes, plan is to wait for an active contributor :) does what is there currently work? hmm i think yes kilo: Were you the only one involved in creating them? If not, who else? well basically me only Sacha in the beginning I was the major creator of "gnue-oldpackages" i know :) when you looked at them, what did you decide to do differently? because new format arouse it seemed appropriate to do a rework not saying the old one was bad at all in the original design of the old corba middleware we discussed the concept of an application. did this make it into the current design of appserver? reinhard? I'm not sure I understand what you mean the ability to configure what classes where installed into appserver ah well basically we have that, by just reading in those GCD files that contain the classes you want or do I misunderstand? So I could have a simple item class for simple billing application and a more complicated items class for an inventory application yes So it basically is the shell script for loading up appserver (readgcd readgld etc)? appserver supports a module path the idea is as follows you have the gcd gld files as packages in your "normal" package management system (fink, debian, ...) the package management can also care about dependencies et al just a sec, phone *** btami has quit IRC back ok, you have gcd gld in e.g. a debian package appserver can define a path like /usr/share/gnue/packages debian package installs gcd + gld files in that path (or subdirectories thereof) and sends SIGHUP to appserver then appserver scans through the whole directory tree starting at /usr/share/gnue/packages and reads in all those files so after installing e.g. gnue-invoicing debian package, you have tables in the database, objects installed in appserver, and everything you need without even having to restart appserver cool where is the gld gcd programming manual? ... assume this appserver process assumes a clean database, no capability to clear out previous bad version of gnue-invoicing? appserver will never delete columns or tables, but it might add tables or add columns to existing tables manual: http://www.gnuenterprise.org/tools/appserver/docs/manual/devguide/index.html what is the procedure for clearing out the db. run sql commands? clear out db? db = database best is drop database, recreate it again with gnue-createdb.sh no gnue-setupdb not gnue-createdb :) who knows, something like that :D where is the gld /gcd programming manual? *** johannesV_ has joined #gnuenterprise *** johannesV has quit IRC *** jamest has joined #gnuenterprise http://www.gnuenterprise.org/tools/appserver/docs/manual/devguide/index.html the version is svn will not build because version.texi is missing gnue-appserver/doc/devguide Is this the same version as on the web site? yes version.texi is generated by the makefile ok, thanks *** kilo has quit IRC reinhard: do you mind if I make minor edits to the devguide? au contraire: I would appreciate any improvement or additiion reinhard: thanks reinhard: I assume that you can not have any characters in the class name and module name except a through z? for sure not "_" underscore! no underscores a-z and (IIRC) 0-9 *** kmk has joined #gnuenterprise IOW everything that's valid as a SQL table/column name minus the underscore /msg NickServ IDENTIFY turkuabo does that mean that it may vary based on the database backend kmk: you might want to change your password it was posted here *** kmk has quit IRC hi neilt: AFAICT all SQL backends support the same characters for identifiers it's fixed by the SQL standard *** kmk has joined #gnuenterprise at least that was my understanding reinhard: excellent, thanks http://www.gnuenterprise.org/developers/docs.php *** kmk has left #gnuenterprise BTW the devguide is excellent, this should be on the web in the docs section it is in the user docs section for appserver reinhard: which is where? *** kmk has joined #gnuenterprise if i go here: http://www.gnuenterprise.org/docs/ all i get is a directory listing *** kmk has joined #gnuenterprise it is http://www.gnuenterprise.org/tools/appserver/ this page has a doc section the "developers docs" are meant internal docs for developers of the tools cool, it was kind of hard to find from the home page. yep, there should be a good docs page but gnue homepage is still work in progress :( (for some years now) given that, I still think this version of the site is the best one over the years. agreed and actually before server move it was pretty stable but IIRC the docs section was never working correctly (i.e. always giving directory listing) The wiki seems to be offline at the moment. Any chance, to get it working anytime soon? (I might contribute some content from the newbee perspective) kmk: evidently it has been down for some time after the server move, not sure what the real issue is, but I was told yesterday or Sunday that it was a known issue *** btami has joined #gnuenterprise *** jcater has joined #gnuenterprise *** btami has quit IRC *** btami has joined #gnuenterprise *** btami has quit IRC Yesterday, I was able to produce some connected forms of suppliers and goods with gnue-designer and fill them with gnue-forms. Next, I need to use the data to produce valid orders. I guess, gnue-designer should be capable to this with file/new/report. Unfortunately, I can't seem to get anywhere. The GUI just looks like the usual gnue-designer less the forms construction site. Alas, I don't even understand the examples in usr.share.doc.gnue-reports.examples. Can you get me started? *** klasstek has joined #gnuenterprise *** SachaS has joined #gnuenterprise hi all http://developers.slashdot.org/developers/05/10/10/0650207.shtml?tid=156 reinhard: have you seen that? *** btami has joined #gnuenterprise would be great to be able to use appserver in addition to SQLObject even our friends from treshna were mentioned in the discussion wee ;-) :) *** btami_ has joined #gnuenterprise yep, seems as it would give us a web frontend kinda for free and, as they say they can use *any* kind of object, maybe you even *can* use appserver objects (which can be mapped to python objects using the language interface) there is some talking about possibility to use any ORM tools or just XMLRPC to reach the backend and if anyone will watch the video, please tell me the impression :) it's just too much for me to download *** johannesV_ has quit IRC *** sjc has joined #gnuenterprise *** johannesV has joined #gnuenterprise *** kmk has left #gnuenterprise *** kmk has joined #gnuenterprise *** btami_ has quit IRC *** btami has quit IRC *** btami has joined #gnuenterprise *** btami_ has joined #gnuenterprise in the dev guide the gld module tag has the attribute 'language="C"'. Is this used and if so, how? *** menomc has joined #gnuenterprise *** mnemoc has quit IRC this is because you can provide different labels for all the languages you like does the "C" stand for anything it's the same as locale so you could have language="en_US" or "de_AT" or just "de" but also "C" as a general 'fallback' if no other language-specific translation is given does it have to match anything, like the file name in the example address-de.gld? appserver will use from the most specific to the most general (=C) no the module-tag of a gld specifies the language for all it's labels and messages no matter which filename *** menomc is now known as mnemoc johannesV: thanks neilt, np i'm glad to see that someone is *trying* what we've made the last few months ... :) yes, walking through everything step by step, in order to learn it. it looks very well done thanks :) it was really fun coding it ... but i'm sure we can improve it *** johannesV has quit IRC whenever someone from Europe (Germany) has a chance, please look at section 4.3 of the appserver dev guide gnue-appserver/doc/devguide and give me a real german translation for the gld file. Thanks * neilt is away, jamest: Template file view.tmpl not found or template directory /var/lib/twiki/templates not found. the file is there, but it's empty lots of those are empty though i figured that was ok * jamest isn't a twiki user hmm i couldn't find any valid reason for it to be failing but remember! [3:17:05] jamestisn't a twiki user :) lol jcater ? *** btami_ has quit IRC 'night *** btami has quit IRC *** kilo has joined #gnuenterprise *** klasstek has quit IRC *** jamest has left #gnuenterprise good night all *** reinhard has quit IRC *** neilt has quit IRC *** sjc has quit IRC *** jamest has joined #gnuenterprise *** sjc has joined #gnuenterprise *** jcater has quit IRC *** kilo has quit IRC *** kmk has quit IRC *** sjc has quit IRC *** jcater has joined #gnuenterprise i believe the wiki should be back up now hi jamest I like moin moin I think... i like what jcater setup and I only have to spend minimal time getting runing again better :) chillywilly, we accept patches :) that makes no sense * chillywilly contributes nothing of value to anyone now is a good time to start looks who's talking ;) yes, i obviously do nothing anywhere in the free software world welcome aboard ajmitch :P you know I wa kidding chillywilly: going to go to UBZ? I don't even know what that is :( ubuntu below zero in montreal oct 30th - nov 10th how the hell would I get there? swim, drive, fly? I don't have the money to fly all over the world I don't even have a car right now all over the world? it's right in your back yard :P it's still in the shop not ;) you'd better fix it then it is getting fixed so that you can do a road trip to montreal they wouldn't let me across the border ;) it's only a 19 hour drive not long man, you could do that without sleeping no problem geeze, google maps says go through detroit that place is such a crap hole hah don't worry, I'm flying through vancouver to get there chillywilly, no at least crap holes have a purpose oh, snap! our "detroit" location still does pretty well I drove there a while back too to upgrade the computers 8 hr drive or so one way ajmitch: I need new tires too no way would I drive that without getting some new tires I wore them out driving to Florida and back :) I get to spend hours in airports! and go through US customs! yay! *** SachaS has left #gnuenterprise *** kmk has joined #gnuenterprise *** jamest has quit IRC *** kaimartin_ has joined #gnuenterprise *** kmk has quit IRC I just noticed, that the gnue-wiki is operational again :-) ajmitch: you're a terrorist, what did you expect? *** kaimartin_ has quit IRC *** btami has joined #gnuenterprise *** reinhard has joined #gnuenterprise good morning *** btami_ has joined #gnuenterprise good morning *** johannesV has joined #gnuenterprise good morning good morning hi dimas hello johannesV *** sjc has joined #gnuenterprise *** kilo has joined #gnuenterprise good morning *** btami has quit IRC *** btami_ is now known as btami