Action: drochaid points paq_ (~paq@202.155.9.188) left irc: Excess Flood paq_ (~paq@202.155.9.188) joined #gnuenterprise. paq (paq@202.155.9.188) joined #gnuenterprise. paq (paq@202.155.9.188) left irc: Read error: 60 (Operation timed out) lxf (~agus_tea@202.73.120.115) joined #gnuenterprise. chillywilly (danielb@CPE-24-167-197-5.wi.rr.com) joined #gnuenterprise. SachaS (~Sacha@dialup-196-214.wasp.net.au) joined #gnuenterprise. jamest (~jamest@adsl-208-191-39-191.dsl.tpkaks.swbell.net) joined #gnuenterprise. psu (psu@public1-wear2-3-cust70.midd.broadband.ntl.com) joined #gnuenterprise. heh yip was beating on myself for getting a whole week behind on GNUe Traffic but I've managed to catch up in, like, 15 minutes ;) A single thread of derek, and that's the whole week ;-) funny how that works out SachaS (~Sacha@dialup-196-214.wasp.net.au) left irc: "Client exiting" office (~office@195.218.176.198) joined #gnuenterprise. So I'm not crazy for expecting on-startup to fire before the others am I..? ;) um it should....but..... IIRC there's something wierd in there Seems all the focus related triggers and on-newrecord etc, all get fired prior to on-startup.. so I get this chicken and the egg thing happening where I setup global variables in on-startup they get changed in an on-change trigger that gets data from a source and I was going to try using a pre-focusout trigger to update the data's source to reflect any changes yeah, i think i hit that too, but it wasn't critical for me so I forgot to look into it i wonder if we need to set it up so that the app can init the trigger system then have a flag that says ignore triggers until flag is set lxf (~agus_tea@202.73.120.115) left irc: Read error: 104 (Connection reset by peer) you wouldn't have to do anything as a forms developer how would that effect legacy forms? but the gnue-forms|reports programs would require a little alteration shouldn't at all what we'd do is change the gnue-forms so that right before it fires on-startup it does a IntializeTriggerSystem() or some such thing actually I think it would reduce odd behaviours i think it's a minor tweak but I have company that should be here in 6 minutes after they leave I'll look at adding it cool if I can remember how forms works (it's been a while :) office (~office@195.218.176.198) left irc: "Вышел из XChat" drochaid (~drochaid@pc4-kirk1-3-cust14.renf.cable.ntl.com) left irc: "Client exiting" lxf (~agus_tea@202.73.120.115) joined #gnuenterprise. lxf (~agus_tea@202.73.120.115) left irc: psu (psu@public1-wear2-3-cust70.midd.broadband.ntl.com) left #gnuenterprise. hmm.. is there a way to know how many records were returned by a createResultSet() ? nm lupo__ (~lupo@pD9E68D66.dip.t-dialin.net) left irc: Read error: 110 (Connection timed out) lupo__ (~lupo@pD9E6886C.dip.t-dialin.net) joined #gnuenterprise. dimas (~dimas@195.218.177.46) left irc: "Вышел из XChat" zoyd (~zoyd@dialpool-210-214-64-30.maa.sify.net) joined #gnuenterprise. hi there. heyas was wondering if GNUe would have a native groupware(other than phpGW). in wxPython that is. Action: Vee2d2 waits for someone else to chime in <- no idea I would imagine at some point forms would or could be written to access the information using GNUe clients as well a .gfd could include a calendar widget, if it does not already. that would be neat the ERP and the comms. part should be deeply rooted, indispensible perhaps. that way a calendar could be dropped in any form. would be sweet. yip it could beat Evolution and others hands down because it would bind to the ERP data. psu (psu@public1-wear2-3-cust70.midd.broadband.ntl.com) joined #gnuenterprise. wb psu hi zoyd - we've talked about a calendar widget, IIRC psu: might be in the traffic archives then. http://kt.zork.net/GNUe/gnue20021123_56.html#12 we aim to please ;-) Key thing to remember about GNUe is that we are not "widget-crazy" i.e. aim is to have a core of widgest that can be used to write biz apps whcih can be replicated in many/any user interface Not to have a massive widget set that only works on (say) wxPython. indeed. I believe the consesnius was that a calendar widget fell on the side of "useful, rather than chrome" as it were The usual technique for dissing widget suggestions is "How would it work in curses?" (i.e text only) Of course, the answer for a calendar widget is "Not too bad, actually" ;-) now that's what i like most about GNUe. ? the dissing? ;-) good understanding that people here have of actuall workplaces. and the need for multi-interface apps. right down to handhelds. hmm.. if I'm doing a createResultSet(...) to test for the presence of data before proceeding and I'm getting hit in the head by the fact that it creates a newRecord() when there's an empty result set.. ;( re: GFBlock.py ~ line 240 else: # TODO: This means no results were returned from a query. # TODO: It probably shouldn't create a new record :) Display a message? self.newRecord() if I understand it correctly, that's what is happening.. ;) zoyd (~zoyd@dialpool-210-214-64-30.maa.sify.net) left #gnuenterprise ("join later .. sleep"). Vee2d2: that code is specific to blocks well it does seem like that is what is happening is the datasource bound to a block? the datasource you're executing createResultSet against? yea wouldnt it be fine to not else: that condition ? or...I guess could create another datasource that isnt bound to a block to do my bidding... well that else is kinda important for UI-based blocks otherwise if a query returns nothing your form/current record is in an undefined state it's a damned-if-you-do, damned-if-you-don't else: I see pr0c (~pr0c@208.44.104.1) left irc: Remote closed the connection Vee2d2: if you need to use a datasource that has to be bound to a block the easiest thing would probably be to datasource.createResultSet() then if block.isEmpty(): foo there's an isEmpty() somewhere it may be the resultSet.current that tells if the current record has never been touched and has no valid data we need to add that to our manual yea that a datasource that is bound to a block will never be truly "empty" I created another datasource for the purpose for now, which works I dont think the block.isEmpty() trick would help here because the problem was I would enter some things, do the check and *poof* I'm on a new record.. where I didnt want to be. :) speaking of the manual.. :) I was going to use a form.setStatusText().. 'form' is subjective to what is in the name arg of
? or is it literally 'form'? um currently I think it's literally "form" we have a form.setStatusText? pg 57 of the dev guide psu (psu@public1-wear2-3-cust70.midd.broadband.ntl.com) left #gnuenterprise. I like the example, too # Tell the user how great they are form.setStatusText("Dude, you are the best user ever!") huh I never noticed that seems to broked though probably 'cause I never noticed that :( Action: jcater needs to work on the dev guide some more put designer screenshots in it etc I need a clone hehe.. showMessage() works though, so I'm happy a herd of clones.. ;) perhaps a clone of, um, that chick off of Terminator 3 or any given supermodel, really I'm not that picky mouns (mouns@kali.mouns.org) left irc: Remote closed the connection geee, good of you to be so open minded about it jason makes our job of finding you one easier setStatusText isn't working? what's it do? yo mtv raps bah you guys ever look at twisted python framework? the twisted that's why we like python so much, it's twisted and I don't mean GNUe ;) well i told their maintainer if they would change the name to "sick & twisted" we might be interested twisted in itself is far too normal for GNU Enterprise folks huh? ah R45 (~rastabeen@cuscon3608.tstt.net.tt) joined #gnuenterprise. SachaS (~Sacha@dialup-196-214.wasp.net.au) joined #gnuenterprise. R45 (~rastabeen@cuscon3608.tstt.net.tt) left irc: No route to host havoc (~havoc@CPE-65-31-171-97.wi.rr.com) left irc: Read error: 110 (Connection timed out) R45 (~rastabeen@cuscon580.tstt.net.tt) joined #gnuenterprise. pr0c (~pr0c@208.44.104.1) joined #gnuenterprise. havoc (~havoc@CPE-65-31-122-112.wi.rr.com) joined #gnuenterprise. SachaS (~Sacha@dialup-196-214.wasp.net.au) left irc: Remote closed the connection SachaS (~Sacha@dialup-196-214.wasp.net.au) joined #gnuenterprise. pr0c (~pr0c@208.44.104.1) left irc: Remote closed the connection SachaS (~Sacha@dialup-196-214.wasp.net.au) left irc: Remote closed the connection SachaS (~Sacha@dialup-196-214.wasp.net.au) joined #gnuenterprise. Action: Vee2d2 plops down, full of spring rolls pr0c (~pr0c@208.44.104.1) joined #gnuenterprise. rdean (~rdean@c-66-177-158-116.se.client2.attbi.com) joined #gnuenterprise. rdean (~rdean@c-66-177-158-116.se.client2.attbi.com) left irc: "Client exiting" pr0c (~pr0c@208.44.104.1) left irc: "Client exiting" --- Mon Jul 14 2003