*** Fujitsu has quit IRC | 00:45 | |
*** didymo has joined #schooltool | 01:03 | |
*** alga has quit IRC | 02:22 | |
*** alga has joined #SchoolTool | 05:06 | |
*** Bhaskar has joined #schooltool | 05:30 | |
*** Bhaskar has quit IRC | 05:30 | |
*** Bhaskar has joined #schooltool | 05:31 | |
Bhaskar | ignas:hello | 05:33 |
---|---|---|
Bhaskar | th1a:hello | 05:34 |
*** ignas has quit IRC | 05:36 | |
*** alga has quit IRC | 06:36 | |
*** didymo has quit IRC | 06:38 | |
Bhaskar | th1a: there is bug in schoolbell | 06:38 |
*** alga has joined #SchoolTool | 06:40 | |
Lumiere | Bhaskar: post a bug report to the tracker? | 07:26 |
*** alga has quit IRC | 07:46 | |
*** th1a_ has quit IRC | 08:04 | |
*** didymo has joined #schooltool | 08:11 | |
*** didymo has quit IRC | 08:17 | |
Bhaskar | th1a:hello | 08:40 |
*** Fujitsu has joined #schooltool | 09:26 | |
*** jfroche has joined #schooltool | 10:28 | |
*** Aiste has joined #schooltool | 11:18 | |
*** Lumiere has quit IRC | 11:37 | |
*** Lumiere has joined #schooltool | 11:38 | |
*** jfroche_ has joined #schooltool | 11:39 | |
*** jfroche has quit IRC | 11:54 | |
*** jinty has joined #schooltool | 12:23 | |
*** jfroche__ has joined #schooltool | 13:03 | |
*** jfroche_ has quit IRC | 13:11 | |
*** Bhaskar has quit IRC | 13:35 | |
*** mgedmin has joined #schooltool | 13:56 | |
*** ignas has joined #schooltool | 14:12 | |
*** Fujitsu has quit IRC | 14:55 | |
*** jfroche_ has joined #schooltool | 16:03 | |
*** alga has joined #SchoolTool | 16:07 | |
*** jfroche__ has quit IRC | 16:11 | |
*** thisfred has joined #schooltool | 16:40 | |
*** faassen has joined #schooltool | 16:47 | |
*** alga has quit IRC | 16:54 | |
*** gintas has joined #schooltool | 16:55 | |
*** alga has joined #SchoolTool | 16:56 | |
ignas | jinty: ayt? | 17:55 |
*** aelkner has joined #schooltool | 17:55 | |
jinty | ignas: yep | 17:55 |
ignas | coul you look at my last checkin 6629 please | 17:56 |
ignas | maybe you'll have any ideas on how to improve it ... | 17:56 |
jinty | sure | 17:56 |
ignas | thank you | 17:56 |
aelkner | th1a: are you there? | 17:57 |
th1a | aelkner: Busy. | 17:57 |
jinty | ignas: short a way of turning off the extra features in the config file/ui, i think that's about the best | 17:59 |
ignas | you mean - have the same site.zcml for both core schooltool and lyceum, but add some way to turn off things through configuration file? | 18:00 |
jinty | I presume you put all the stuff in separate files so as to not conflict on merges | 18:01 |
jinty | yes | 18:01 |
jinty | or, rather not turn things on | 18:01 |
ignas | hmm | 18:01 |
jinty | i.e. a lyceum config file that turns less things on than a schooltool one | 18:01 |
jinty | remember the config file is for sysadmins | 18:02 |
ignas | tricky :/ | 18:02 |
jinty | while the zcml is for application developers | 18:02 |
ignas | config file will have to know what zcml files to include and what files to skip ... | 18:02 |
ignas | sort of generate the site.zcml while parsing the configuration | 18:03 |
jinty | perhaps you couls reference zcml files in the config file, never thought of that... | 18:03 |
ignas | and then use the generated file | 18:03 |
ignas | hmm | 18:03 |
ignas | the order get's tricky | 18:03 |
jinty | I would have had each extension extend the format of the config file | 18:03 |
jinty | kinda like apache | 18:03 |
jinty | loading the proxy module does nothing | 18:04 |
jinty | but allows you to add proxy re-write rules into the config file | 18:04 |
* jinty loves apache2's configuration | 18:04 | |
jinty | especially on debian | 18:04 |
* ignas thinks that it is a nice example of how stuff can be done | 18:05 | |
*** jfroche_ has quit IRC | 18:05 | |
jinty | yeah | 18:05 |
* mgedmin sighs thinking about apache2ctl reload and lack of such for zope 3 | 18:05 | |
* jinty now wonders what apache2ctl is .... | 18:05 | |
mgedmin | the thing that /etc/init.d/apache2 reload invokes | 18:06 |
mgedmin | uh, actually that's apache2ctl graceful | 18:06 |
jinty | so kinda like zopectl, except orders of magnitude better | 18:06 |
mgedmin | well, I don't know about orders of magnitude | 18:07 |
mgedmin | config reloading without restarting is very nice | 18:07 |
mgedmin | but it doesn't have zopectl debug | 18:07 |
jinty | at least zopectl on zope2 has some very interesting behavior | 18:07 |
jinty | especially when the user that invokes it varies | 18:08 |
*** jfroche has joined #schooltool | 18:38 | |
*** gintas has quit IRC | 19:00 | |
*** jfroche has quit IRC | 19:31 | |
* ignas got lyceum src/schooltool identical to src/schooltool that is in trunk | 19:37 | |
jinty | ignas: can you help me confirm my sanity? | 19:45 |
jinty | from decimal import Decimal | 19:45 |
jinty | >>> 1172837167.27 > Decimal("1172837136.0800") | 19:45 |
jinty | False | 19:45 |
jinty | ? | 19:45 |
ignas | hmm | 19:47 |
ignas | 1172837167 > Decimal("1172837136") -> True | 19:47 |
ignas | 1172837167.2 > Decimal("1172837136") -> False | 19:47 |
jinty | horah | 19:48 |
ignas | 1172837167.2 > Decimal("1") | 19:48 |
ignas | False | 19:48 |
mgedmin | looks like Python is comparing object addresses in memory | 19:49 |
* jinty thinks decimals don't compare well to floats | 19:49 | |
mgedmin | or something | 19:49 |
jinty | hmm, guess I'd better report it | 19:49 |
mgedmin | no, apparently not | 19:50 |
ignas | mgedmin: nah, it works fine for ints | 19:50 |
jinty | I've been looking at that line of code for 2 days | 19:50 |
*** mgedmin has quit IRC | 19:50 | |
ignas | conversion of floats to Decimal is not supported | 19:51 |
jinty | but then it should bloody well error | 19:52 |
ignas | and the code returns NotImplemented | 19:52 |
ignas | from __cmp__ | 19:52 |
* jinty is checking python2.5 | 19:52 | |
ignas | same | 19:53 |
*** faassen has quit IRC | 19:56 | |
*** ignas has quit IRC | 20:19 | |
jinty | btw: https://sourceforge.net/tracker/index.php?func=detail&aid=1650053&group_id=5470&atid=105470 | 20:24 |
*** aelkner has quit IRC | 20:53 | |
*** jinty has quit IRC | 21:46 | |
*** thisfred has quit IRC | 21:54 | |
*** mgedmin has joined #schooltool | 22:09 | |
*** didymo has joined #schooltool | 22:19 | |
*** mgedmin has quit IRC | 22:58 | |
*** jinty has joined #schooltool | 23:37 |
Generated by irclog2html.py 2.15.1 by Marius Gedminas - find it at mg.pov.lt!