*** timte has quit IRC | 00:33 | |
*** roym has joined #zope3-dev | 01:30 | |
roym | Hi - I would like to know a good way to create a radio-widget with add/delete semantics for the items - is there something I can already use. Thanks. | 01:32 |
---|---|---|
*** yota has quit IRC | 01:32 | |
roym | or should I simply create a composite widget (seems like overkill). | 01:35 |
*** d2m has quit IRC | 01:50 | |
projekt01 | roym, what would you like to delete with the radio input field | 02:04 |
roym | projekt01, Sorry - I had stepped away - I would each element of the radio field group to be manageable (ie: have add/delete operations available on it). | 03:08 |
roym | In Zope2, this was managed by editing a separate lines item... clumsy but it worked. | 03:08 |
srichter | roym: See manageable vocabularies in the bugtracker product | 03:29 |
roym | ok - thanks, stephan. | 03:39 |
*** stub has joined #zope3-dev | 04:17 | |
roym | aha - I also see that chapter 31 of the book has gobs of info on this topic; excellent! | 04:31 |
*** projekt01 has quit IRC | 05:38 | |
*** roym has quit IRC | 06:04 | |
*** SureshZ has left #zope3-dev | 07:34 | |
*** zagy has joined #zope3-dev | 08:24 | |
*** timte has joined #zope3-dev | 08:54 | |
*** The|uni has quit IRC | 09:16 | |
*** hdima has joined #zope3-dev | 09:26 | |
*** timte has quit IRC | 09:28 | |
*** yota has joined #zope3-dev | 09:37 | |
*** sashav has joined #zope3-dev | 09:55 | |
*** __gotcha has quit IRC | 10:37 | |
*** number5 has joined #zope3-dev | 11:12 | |
*** guido_g has joined #zope3-dev | 11:21 | |
*** ignas has joined #zope3-dev | 11:28 | |
*** d2m has joined #zope3-dev | 12:13 | |
*** regebro has joined #zope3-dev | 12:19 | |
*** zagy has quit IRC | 12:19 | |
*** zagy has joined #zope3-dev | 12:20 | |
*** apoirier has joined #zope3-dev | 12:28 | |
*** guido_g has quit IRC | 12:48 | |
*** faassen has joined #zope3-dev | 12:55 | |
*** stub has quit IRC | 13:11 | |
*** bskahan has joined #zope3-dev | 13:19 | |
*** ignas has quit IRC | 13:22 | |
*** faassen has quit IRC | 13:26 | |
*** d2m has quit IRC | 13:26 | |
*** yota has quit IRC | 13:26 | |
*** d2m_ has quit IRC | 13:26 | |
*** d2m__ has joined #zope3-dev | 13:31 | |
*** d2m__ is now known as d2m | 13:31 | |
*** faassen has joined #zope3-dev | 13:31 | |
*** d2m_ has joined #zope3-dev | 13:32 | |
*** yota has joined #zope3-dev | 13:32 | |
*** number5 has quit IRC | 13:37 | |
*** BjornT has quit IRC | 13:40 | |
*** __gotcha__ has joined #zope3-dev | 13:51 | |
*** __gotcha__ is now known as __gotcha | 13:51 | |
*** __gotcha has quit IRC | 13:52 | |
*** __gotcha__ has joined #zope3-dev | 13:53 | |
*** __gotcha__ is now known as __gotcha | 13:53 | |
*** JZ has joined #zope3-dev | 13:57 | |
*** bskahan has quit IRC | 14:10 | |
*** srichter has quit IRC | 14:20 | |
*** bskahan has joined #zope3-dev | 14:20 | |
*** tarek has quit IRC | 14:42 | |
*** projekt01 has joined #zope3-dev | 14:48 | |
*** SteveA is now known as SteveA|afk | 14:53 | |
*** Aiste has joined #zope3-dev | 15:01 | |
*** ignas has joined #zope3-dev | 15:05 | |
*** Aiste has quit IRC | 15:06 | |
*** Aiste has joined #zope3-dev | 15:13 | |
*** dagnachew has joined #zope3-dev | 15:14 | |
*** roym has joined #zope3-dev | 15:23 | |
*** lunatik has joined #zope3-dev | 15:23 | |
roym | Folks, is there an equivalent of the "Zope2 product refresh" in zope3? Or is it always necessary to restart the server when python code changes are made. | 15:24 |
*** srichter has joined #zope3-dev | 15:26 | |
*** ChanServ sets mode: +o srichter | 15:26 | |
philIKON | roym, there's no such equivalent | 15:27 |
roym | ok - thanks philIKON. | 15:28 |
roym | msg nickserv set email roymath@yahoo.com | 15:29 |
*** dagnachew has quit IRC | 15:33 | |
*** mash- has joined #zope3-dev | 15:34 | |
*** roym has quit IRC | 15:34 | |
mash- | hello | 15:34 |
*** roym has joined #zope3-dev | 15:35 | |
mash- | i wand to install the Zope.interface 3.0.1 on my iMac (v10.3.9), but it doesnt work... | 15:35 |
mash- | when i try to build the setup.py a lot of warnings appear, and then it exits with the error: "error: command 'gcc' failed with exit status 1" | 15:35 |
*** lunatik has left #zope3-dev | 15:35 | |
mash- | im using the gcc (v gcc 3.1) of darwin | 15:37 |
*** timte has joined #zope3-dev | 15:42 | |
roym | Folks, where can I read up online on what the '++' and '@@' shortcuts mean? | 15:50 |
*** Aiste_ has joined #zope3-dev | 15:51 | |
*** Aiste has quit IRC | 15:52 | |
philIKON | roym, @@ means ++view++, ++foobar++ means that the 'foobar' traversal namespace adapter is invoked | 15:55 |
*** bradb has joined #zope3-dev | 15:55 | |
philIKON | roym, so, the ++view++ namespace adapter (or, its shortcut @@) enforces view lookup | 15:55 |
philIKON | roym, some_folder/@@index.html and some_folder/index.html may resolve to different objects, because some_folder might have a subobject called 'index.html' and a view 'index.html' | 15:56 |
roym | philIKON, thanks - your explanation would make a good addition to the Zope3 book. | 15:58 |
*** jhauser has joined #zope3-dev | 16:01 | |
roym | Also, I have to confess, as a newbie to Zope3 (have written a decent sized zope2 app), I am finding the going a bit hard. I have been doing OO for years, but grokking zope3 is hard. I have Stephans book - but I suspect that I missing some required reading - any recommendations (both online and in book form). | 16:01 |
timte | roym: philIKON has written a book, http://www.worldcookery.com/ | 16:03 |
roym | timte, thanks - I am on the right track then (I have ordered that). | 16:05 |
philIKON | roym, as timte said, i wrote my own book targeted towards zope3 "newbies" | 16:05 |
philIKON | roym, in case that ordering meant my book, i'd be interested in feedback, especially whether my book made it any easier... | 16:06 |
roym | philIKON, yes, it meant your book and I will be happy to offer feedback. I see your book website - it might be a good idea to have a wiki page there for feedback about the book (or should I just email you?) | 16:09 |
faassen | philIKON: your book seems to be finding quite a bit of use here. :) | 16:10 |
philIKON | roym, interesting idea, i'll think about it | 16:13 |
philIKON | faassen, here as in infrae? | 16:13 |
*** SureshZ has joined #zope3-dev | 16:21 | |
*** stub has joined #zope3-dev | 16:23 | |
*** lunati1 has joined #zope3-dev | 16:26 | |
*** niemeyer has joined #zope3-dev | 16:26 | |
faassen | philIKON: yes. | 16:27 |
*** lunati1 has left #zope3-dev | 16:28 | |
*** sashav has quit IRC | 16:33 | |
*** roym has quit IRC | 16:44 | |
*** J1m has joined #zope3-dev | 16:50 | |
*** mash- has quit IRC | 16:56 | |
*** SteveA|afk is now known as SteveA | 17:06 | |
*** hdima has quit IRC | 17:09 | |
*** alga has joined #zope3-dev | 17:11 | |
*** roym has joined #zope3-dev | 17:18 | |
*** vinsci|2 is now known as vinsci | 17:23 | |
*** JZ has quit IRC | 17:43 | |
*** gintas has joined #zope3-dev | 17:51 | |
*** mexiKON has joined #zope3-dev | 17:57 | |
*** SteveA is now known as SteveA|afk | 17:58 | |
*** jinty has joined #zope3-dev | 18:02 | |
*** philIKON has quit IRC | 18:03 | |
*** BjornT has joined #zope3-dev | 18:16 | |
*** zagy_ has joined #zope3-dev | 18:34 | |
*** zagy has quit IRC | 18:37 | |
*** Aiste_ has quit IRC | 18:43 | |
*** jinty has left #zope3-dev | 18:53 | |
*** mexiKON is now known as philiKON | 19:31 | |
*** Aiste has joined #zope3-dev | 19:40 | |
*** alga has quit IRC | 19:45 | |
*** nederhoed has joined #zope3-dev | 19:45 | |
*** ignas has quit IRC | 19:54 | |
*** SteveA|afk is now known as SteveA | 20:12 | |
*** faassen has quit IRC | 20:16 | |
*** RaFromBRC has joined #zope3-dev | 20:18 | |
*** apoirier has quit IRC | 20:28 | |
*** bskahan has quit IRC | 20:30 | |
*** gintas has quit IRC | 20:32 | |
*** dagnachew has joined #zope3-dev | 20:57 | |
*** bskahan has joined #zope3-dev | 21:02 | |
*** ignas has joined #zope3-dev | 21:12 | |
*** stub has quit IRC | 21:22 | |
*** palmTree has joined #zope3-dev | 21:30 | |
*** regebro has quit IRC | 21:48 | |
nederhoed | I have a simple question about using page templates | 21:59 |
nederhoed | in my zope3 root I have a cc_template.pt which defines a macro | 22:00 |
nederhoed | next to it I wrote a index.html which uses the macro in this template and fills the body slot | 22:01 |
nederhoed | when I move index.html to a subdir, I cannot get it working | 22:01 |
nederhoed | the macro is appointed as 'context/cc_template.pt/macros/page' | 22:02 |
nederhoed | any suggestions? | 22:02 |
*** tvon has quit IRC | 22:02 | |
nederhoed | Warning: Macro expansion failed | 22:03 |
nederhoed | Warning: zope.exceptions._notfounderror.NotFoundError: 'cc_template.pt' | 22:03 |
nederhoed | quite clear... | 22:03 |
philiKON | are you usiing ZPT pages? | 22:03 |
philiKON | that is not the preferred way of developing | 22:04 |
nederhoed | ehm, I do indeed | 22:04 |
nederhoed | I'm not yet developing a skin | 22:04 |
philiKON | well | 22:05 |
philiKON | we still prefer to develop on the filesystem | 22:05 |
nederhoed | I understand | 22:06 |
philiKON | to answer your question, try: context/++acquire++cc_template.pt/macros/page | 22:06 |
nederhoed | thanks, I will | 22:07 |
nederhoed | I am Robert-Reinder by the way, nice to talk to you | 22:08 |
nederhoed | and it worked, danke sehr | 22:08 |
philiKON | nederhoed, ah, hi robert | 22:09 |
philiKON | nederhoed, i thought i heard that name before :) | 22:09 |
nederhoed | :) | 22:09 |
philiKON | or, read, rather | 22:09 |
nederhoed | I understand creating a product via the filesystem is the way to go, but since I'm not familiar enough with zcml, I'm first playing around with basic features | 22:11 |
philiKON | ah, ok | 22:11 |
philiKON | that's what ZPT page is for | 22:11 |
philiKON | but not more | 22:11 |
nederhoed | k | 22:12 |
nederhoed | point taken | 22:12 |
philiKON | (i'm just trying to discourage ppl from going too far with the TTW development methods Zope 3 has right now) | 22:12 |
nederhoed | ttw? | 22:12 |
philiKON | through the web | 22:13 |
nederhoed | ah ok | 22:13 |
*** elbixio has joined #zope3-dev | 22:16 | |
nederhoed | at work we use python scripts a lot, Zope2 | 22:17 |
nederhoed | I'm the first to work with z3 (at home) | 22:17 |
nederhoed | we're planning to convert to z3 but it's a kind of different approach | 22:18 |
nederhoed | I read the discouraging texts about "inline scripts" | 22:18 |
*** SureshZ has left #zope3-dev | 22:35 | |
srichter | please filesystem development only | 22:36 |
srichter | the tools for TTW development are just not ready | 22:36 |
srichter | I think they could be polished to provide a good TTW development experience, but certainly not right now | 22:37 |
*** palmTree has quit IRC | 22:43 | |
nederhoed | ok | 22:44 |
* dagnachew is away: mange | 22:46 | |
*** ignas has quit IRC | 22:54 | |
roym | Hello folks, how does the line numbering scheme work... I am trying to make sense of "line 3.2-6.8" in the message 'ZopeXMLConfigurationError: File "/var/lib/zope3/instance1/lib/python/worldcookery/configure.zcml", line 3.2-6.8' | 22:56 |
philiKON | line 3, column 2 through line 6, column 8 | 22:56 |
*** SureshZ has joined #zope3-dev | 22:57 | |
roym | philiKON, thanks again. | 22:57 |
philiKON | roym, it took me a while to figure this out, too. i guess J1m made it this way so that his emacs can jump to the line automatically :) | 23:04 |
J1m | yup | 23:04 |
J1m | A wildly valuable feature | 23:05 |
philiKON | yep. i wonder if it could be a _little_ more human-readable than it is while retaining that feature | 23:05 |
J1m | Possibly | 23:06 |
philiKON | anyway, i'm off to sleep; g'night all | 23:06 |
philiKON | roym, maybe you manage to figure this out if you feel too distracted... any contriubtions are welcome :) | 23:07 |
nederhoed | bye | 23:17 |
*** srichter has quit IRC | 23:18 | |
*** projekt01 has quit IRC | 23:20 | |
* dagnachew is back | 23:34 |
Generated by irclog2html.py 2.15.1 by Marius Gedminas - find it at mg.pov.lt!