| TresEquis | moldy: the docs are OK for ZODB | 00:00 |
|---|---|---|
| TresEquis | tutorial, programming guide | 00:01 |
| TresEquis | articles | 00:01 |
| TresEquis | one trick is that there really isn't a huge API | 00:02 |
| TresEquis | because you mostly just work with normal Python objects, and commit the transaction when you're done | 00:02 |
| TresEquis | OTOH, there is no generic query language except Python, either | 00:02 |
| *** kevinkal has quit IRC | 00:04 | |
| *** MrTango has quit IRC | 00:14 | |
| *** redir has joined #zope | 00:29 | |
| *** matthewwilkes_ is now known as MatthewWilkes | 00:30 | |
| *** benji has quit IRC | 00:31 | |
| *** kevinkal has joined #zope | 00:34 | |
| *** JaRoel|4D has joined #zope | 00:34 | |
| *** opsec has quit IRC | 00:48 | |
| *** thetet has quit IRC | 00:50 | |
| *** webmaven has joined #zope | 00:54 | |
| *** MyCatVerbs has joined #zope | 00:56 | |
| *** hannosch has quit IRC | 00:59 | |
| *** opsec has joined #zope | 01:02 | |
| *** J1m has quit IRC | 01:07 | |
| *** spamsch has quit IRC | 01:08 | |
| *** RaFromBRC is now known as RaFromBRC|afk | 01:10 | |
| *** kosh has joined #zope | 01:23 | |
| *** webmaven has quit IRC | 01:29 | |
| *** jinty has joined #zope | 01:29 | |
| *** jinty has quit IRC | 01:30 | |
| *** jinty has joined #zope | 01:30 | |
| *** jinty_ has joined #zope | 01:33 | |
| *** jinty has quit IRC | 01:35 | |
| *** fredvd has quit IRC | 01:35 | |
| *** TresEquis has quit IRC | 01:39 | |
| *** aaronv has quit IRC | 01:39 | |
| *** RaFromBRC|afk is now known as RaFromBRC | 01:45 | |
| *** jinty_ has quit IRC | 01:50 | |
| *** allisterb has quit IRC | 02:02 | |
| *** allisterb has joined #zope | 02:02 | |
| *** ignas has quit IRC | 02:08 | |
| *** Vejeta` has joined #zope | 02:18 | |
| *** Vejeta has quit IRC | 02:20 | |
| *** sig11 has quit IRC | 02:31 | |
| *** sig11 has joined #zope | 02:33 | |
| *** Vejeta` has quit IRC | 02:36 | |
| *** kaeru has joined #zope | 02:39 | |
| *** tiwula has quit IRC | 02:41 | |
| *** pthulin has quit IRC | 02:44 | |
| *** matthewwilkes_ has joined #zope | 02:49 | |
| *** MatthewWilkes has quit IRC | 02:50 | |
| *** eperez has quit IRC | 02:53 | |
| *** pepeu_ has quit IRC | 02:53 | |
| *** mr_jolly has joined #zope | 02:53 | |
| *** mr_jolly has left #zope | 02:53 | |
| *** davisagli has quit IRC | 03:17 | |
| *** davisagli has joined #zope | 03:19 | |
| *** alvaro_ has quit IRC | 03:25 | |
| *** davisagli has quit IRC | 03:25 | |
| *** matthewwilkes_ has left #zope | 03:25 | |
| *** sidnei has quit IRC | 03:35 | |
| *** aaronv has joined #zope | 03:37 | |
| *** huajie has joined #zope | 03:49 | |
| *** bluetouff__ has quit IRC | 03:53 | |
| *** daMaestro has quit IRC | 03:56 | |
| *** bluetouff__ has joined #zope | 03:58 | |
| *** aaronv has quit IRC | 04:00 | |
| *** davisagli has joined #zope | 04:00 | |
| *** huajie has quit IRC | 04:06 | |
| *** daMaestro has joined #zope | 04:08 | |
| *** huajie has joined #zope | 04:22 | |
| *** count has joined #zope | 04:37 | |
| count | question about Zope 2.10 external method | 04:38 |
| lisppaste6 | thecount12 pasted "z2 exeternal method" at http://paste.lisp.org/display/96196 | 04:42 |
| *** baijum has joined #zope | 04:49 | |
| kosh | import os | 04:56 |
| kosh | external methods are just like any other python module, all names in them must be defined | 04:57 |
| kosh | oh wait | 04:57 |
| kosh | put the import outside the function | 04:57 |
| count | I tried the import os outside the function and still got the error let me check one more time kosh: | 05:03 |
| kosh | that sure does not seem right | 05:03 |
| kosh | you did not happen to call this module or some other module in that directory os.py did you? | 05:03 |
| count | okay did it outside the function or module and still had prob | 05:04 |
| kosh | oh if you make changes to this you have to his the reload option inside zope for the external method | 05:04 |
| count | I named it list.py | 05:04 |
| kosh | if you just change the method on the filesystem you will still get the old error | 05:04 |
| count | and pasted the function exactly as you see in pastebin | 05:04 |
| kosh | make sure you go into the external method in the zmi and hit save changes after you change it on the filesystem | 05:05 |
| count | okay will try that | 05:05 |
| count | oh well no error this time but it did not report anything back | 05:06 |
| count | should return a list of files in External directory | 05:06 |
| kosh | you have to read() it I think | 05:08 |
| *** MyCatVerbs has quit IRC | 05:09 | |
| kosh | otherwise you just returned a popen object to zope | 05:09 |
| count | okay, you know you have helped me out soo far. I don't have an error, so its a matter of saving each time I edit, I will try to figure out the rest. I also needed help on how to open and read a file but it worked out fine after I saved in zmi | 05:12 |
| count | thaks kosh: | 05:13 |
| kosh | if you just return data.read() it will work | 05:13 |
| kosh | no problem | 05:13 |
| kosh | I just tried your exactly code directly in pyton and checked what it returns | 05:13 |
| kosh | and it was a popen object so I figured that was your problem | 05:13 |
| count | oh I will try with system | 05:17 |
| *** kosh2 has joined #zope | 05:19 | |
| *** kosh has quit IRC | 05:20 | |
| *** kosh2 is now known as kosh | 05:20 | |
| *** olaf_ has joined #zope | 05:21 | |
| kosh | count: well I am back, got disconnected from freenode | 05:21 |
| *** milosn_ has joined #zope | 05:21 | |
| count | okay what exactly did you type | 05:23 |
| count | not getting errors or anything | 05:23 |
| *** davisagli has quit IRC | 05:24 | |
| *** daMaestro has quit IRC | 05:25 | |
| *** JaRoel|4D has quit IRC | 05:25 | |
| *** febb has quit IRC | 05:25 | |
| *** fdrake has quit IRC | 05:25 | |
| *** olaf has quit IRC | 05:25 | |
| *** milosn has quit IRC | 05:25 | |
| *** rodgort has quit IRC | 05:25 | |
| *** TheJester has quit IRC | 05:25 | |
| *** olaf_ is now known as olaf | 05:25 | |
| *** olaf has joined #zope | 05:25 | |
| *** febb has joined #zope | 05:26 | |
| count | kosh: can you let me know exactly what you typed maybe with somethin os.system('ls') instead | 05:26 |
| *** daMaestro has joined #zope | 05:28 | |
| *** JaRoel|4D has joined #zope | 05:28 | |
| *** fdrake has joined #zope | 05:28 | |
| *** 16SAAIDR1 has joined #zope | 05:28 | |
| *** TheJester has joined #zope | 05:28 | |
| kosh | return os.popen('ls').read() | 05:28 |
| *** rodgort has joined #zope | 05:28 | |
| *** 16SAAIDR1 has quit IRC | 05:28 | |
| *** redir has quit IRC | 05:29 | |
| kosh | heh on a new computer setup it was faster to download all of eq then it was to download the patches for windows | 05:30 |
| *** huajie has quit IRC | 05:31 | |
| count | kosh: got it to work with popen, not with os.system | 05:33 |
| count | trying to think why its different | 05:34 |
| count | oh popen returns as an open file strange | 05:35 |
| count | ok | 05:35 |
| *** daMaestro has quit IRC | 05:41 | |
| count | okay one more | 05:47 |
| lisppaste6 | thecount12 annotated #96196 "untitled" at http://paste.lisp.org/display/96196#1 | 05:48 |
| count | I re-edit , it has no errors, but want to simply touch a file | 05:49 |
| *** huajie has joined #zope | 05:49 | |
| count | I'm thinking in terms of this because the next step is to actually change directory | 05:49 |
| *** tiwula has joined #zope | 05:57 | |
| *** RaFromBRC has quit IRC | 05:58 | |
| kosh | so what is the actual problem? | 05:59 |
| kosh | also you really should use the subprocess module | 06:00 |
| count | subprocess module? | 06:01 |
| count | kosh: I just wanted to touch a file using os.system | 06:01 |
| *** baijum1 has joined #zope | 06:02 | |
| count | but you mentioned subprocess module | 06:02 |
| count | okay just check subprocess, now I feel dumb | 06:03 |
| *** baijum has quit IRC | 06:04 | |
| *** febb has quit IRC | 06:04 | |
| *** grahal_ has quit IRC | 06:04 | |
| kosh | sorry I am doing many things at once at forget to reply | 06:05 |
| kosh | the subprocess module basically replaces popen, system etc | 06:06 |
| kosh | however it is more general and has had a lot more work done on it to make it more secure etc | 06:06 |
| count | yea yea I see the security issues | 06:06 |
| *** kleist has joined #zope | 06:22 | |
| *** davisagli has joined #zope | 06:23 | |
| *** bhagat has joined #zope | 06:26 | |
| *** mcdonc has quit IRC | 06:26 | |
| *** davisagli has left #zope | 06:27 | |
| *** vigith has joined #zope | 06:30 | |
| *** mcdonc has joined #zope | 06:38 | |
| *** kaeru has quit IRC | 06:45 | |
| *** sidnei has joined #zope | 06:48 | |
| *** kaeru has joined #zope | 06:49 | |
| *** sidnei has quit IRC | 06:50 | |
| *** sidnei has joined #zope | 06:52 | |
| *** davisagli has joined #zope | 06:52 | |
| *** febb has joined #zope | 07:04 | |
| *** baijum1 has quit IRC | 07:10 | |
| count | 'file' object attribute 'write' is read-only when trying to write a file even if the file is in tmp | 07:14 |
| *** mr_jolly has joined #zope | 07:22 | |
| *** digitalmortician has quit IRC | 07:34 | |
| kosh | did you open the file for writing? | 07:43 |
| *** baijum has joined #zope | 07:44 | |
| *** baijum has quit IRC | 07:51 | |
| *** tiwula has quit IRC | 07:54 | |
| *** bhagat has quit IRC | 07:54 | |
| *** bhagat has joined #zope | 07:54 | |
| *** kleist_ has joined #zope | 07:56 | |
| *** kleist_ has quit IRC | 07:57 | |
| *** baijum has joined #zope | 07:58 | |
| *** huajie has quit IRC | 08:36 | |
| *** digitalmortician has joined #zope | 08:38 | |
| *** milele has joined #zope | 08:48 | |
| *** JaRoel|4D has quit IRC | 08:53 | |
| count | kosh: yea I opened the file for writing | 08:55 |
| count | 1. f=open('/tmp/what.txt','w') 2. data=f.write=('blah blah') 3.return data | 08:58 |
| count | I kept it real simple | 09:00 |
| kosh | f.write is a function | 09:01 |
| kosh | f.write('blah blah') | 09:01 |
| kosh | you can't assign a string to f.write and have it write to the file | 09:02 |
| kosh | all you did was replace the write function with a string | 09:02 |
| count | I can't believe I made that mistake | 09:04 |
| count | so the lesson is to test it first lol | 09:13 |
| count | wow even os.chdir is working | 09:17 |
| *** jinty has joined #zope | 09:18 | |
| *** jinty has quit IRC | 09:18 | |
| *** jinty has joined #zope | 09:18 | |
| *** jinty has quit IRC | 09:23 | |
| *** phimic has joined #zope | 09:31 | |
| *** Kabz|4D has joined #zope | 09:41 | |
| *** MrWu has joined #zope | 09:50 | |
| *** JaRoel|4D has joined #zope | 09:55 | |
| *** count has left #zope | 09:55 | |
| *** goschtl has joined #zope | 09:58 | |
| *** davisagli has quit IRC | 10:08 | |
| *** davisagli has joined #zope | 10:16 | |
| *** pthulin has joined #zope | 10:16 | |
| *** davisagli has quit IRC | 10:19 | |
| *** povbot has joined #zope | 10:21 | |
| *** [Arfreve1] has joined #zope | 10:22 | |
| *** [Arfrever] has quit IRC | 10:24 | |
| *** MrWu has quit IRC | 10:28 | |
| *** bobo_b has joined #zope | 10:28 | |
| *** avn has quit IRC | 10:32 | |
| *** avn has joined #zope | 10:34 | |
| *** thetet has joined #zope | 10:34 | |
| *** milosn_ is now known as milosn | 10:47 | |
| *** goschtl has quit IRC | 10:50 | |
| *** goschtl has joined #zope | 10:51 | |
| *** ignas has joined #zope | 10:52 | |
| *** bobo_b has quit IRC | 11:09 | |
| *** opsec has quit IRC | 11:11 | |
| *** ignas has quit IRC | 11:23 | |
| *** ignas has joined #zope | 11:23 | |
| *** opsec has joined #zope | 11:24 | |
| *** MJ has joined #zope | 11:34 | |
| *** pthulin has quit IRC | 11:35 | |
| *** pthulin has joined #zope | 11:43 | |
| ignas | I am getting Error Value: 'latin-1' codec can't encode character u'\u0117' in position 7382: ordinal not in range(256) | 11:44 |
| ignas | when trying to access error_log view | 11:44 |
| ignas | after migration from Zope2.8 to Zope2.11 | 11:44 |
| ignas | is there any way to fix it? | 11:44 |
| betabug | ignas: didn't you see my reply yesterday? | 11:44 |
| ignas | hmm? | 11:44 |
| betabug | you have to set the encoding for the ZMI | 11:45 |
| ignas | did I ask this already | 11:45 |
| ignas | (gaps in memory) | 11:45 |
| betabug | yupp | 11:45 |
| ignas | and where do I set it? | 11:45 |
| betabug | http://betabug.ch/blogs/ch-athens/96 | 11:45 |
| betabug | on my blog ;-) | 11:45 |
| ignas | ahh, yes I did, but the reply was quite a while after the question I think | 11:46 |
| betabug | OTOH you can find the error information also in the error log on the file system | 11:46 |
| betabug | yeah, sorry, I'm not in front of the irc window 100% of the time :-D | 11:46 |
| ignas | as I have a lot of them | 11:46 |
| ignas | I'd like to have it on the web | 11:47 |
| betabug | well, setting the ZMI to utf-8 is necessary in cases where you have utf8 info in some property pages too | 11:48 |
| betabug | for one of my apps I have to do that always | 11:48 |
| *** bobo_b has joined #zope | 11:48 | |
| * kosh sneaks up on betabug and sets him on fire | 11:54 | |
| betabug | ah, cozy & warm! | 11:55 |
| betabug | hey kosh! | 11:55 |
| kosh | hail betabug bringer of light and cooker of marshmallows! | 11:55 |
| kosh | so how are things going? | 11:55 |
| betabug | fine :-D | 11:56 |
| kosh | apparently some of our banks are screwing your country as bad as they are screwing this one | 11:56 |
| betabug | this country has a long tradition of being screwed | 11:57 |
| kosh | some kind of deriviative speculation against greece, some kind of bet that is further screwing things up | 11:57 |
| betabug | we make up for it by having good food & good weather | 11:57 |
| kosh | apparently the country would be much better off without banks betting against it | 11:57 |
| kosh | hmm I doubt the good weather part | 11:57 |
| kosh | that area seems far too hot for me | 11:57 |
| *** mr_jolly has left #zope | 11:57 | |
| kosh | of course my ideal good weather is a cave followed by darkness and winter | 11:58 |
| betabug | we'd all be better off without this joke of a financial speculation system | 11:58 |
| betabug | and we could send all the politicians to hell too, while we're at it | 11:59 |
| kosh | we would definitley all be better off without this financial system except for the financial people | 12:02 |
| kosh | they are better off under this system | 12:02 |
| kosh | until we line them up against the wall and have them shot | 12:02 |
| betabug | that's why it's there | 12:02 |
| *** baijum has quit IRC | 12:08 | |
| *** evilbungle has joined #zope | 12:16 | |
| *** baijum has joined #zope | 12:22 | |
| *** bhagat has quit IRC | 12:29 | |
| *** bhagat has joined #zope | 12:30 | |
| *** eperez_ has joined #zope | 12:33 | |
| *** eperez__ has joined #zope | 12:39 | |
| *** TomBlockley has joined #zope | 12:40 | |
| *** bhagat has quit IRC | 12:42 | |
| *** bobo_b has quit IRC | 12:43 | |
| *** bobo_b has joined #zope | 12:43 | |
| *** eperez__ has quit IRC | 12:46 | |
| *** bhagat has joined #zope | 12:48 | |
| *** teix has joined #zope | 12:50 | |
| *** bhagat has quit IRC | 12:50 | |
| *** TomBlockley has quit IRC | 12:52 | |
| *** TomBlockley has joined #zope | 12:53 | |
| *** mgedmin has joined #zope | 12:55 | |
| *** bhagat has joined #zope | 12:55 | |
| *** jdenney has joined #zope | 12:56 | |
| *** bhagat has joined #zope | 12:59 | |
| *** bluetouff__ has quit IRC | 12:59 | |
| *** bhagat has quit IRC | 12:59 | |
| *** bhagat has joined #zope | 13:02 | |
| *** bhagat has quit IRC | 13:02 | |
| *** bhagat has joined #zope | 13:06 | |
| *** bhagat has quit IRC | 13:07 | |
| *** emrojo has joined #zope | 13:08 | |
| *** bhagat has joined #zope | 13:09 | |
| *** maurits has joined #zope | 13:15 | |
| maurits | Hi all. http://www.zope.org/ is unresponsive for me. | 13:15 |
| maurits | And for at least two others, who are also in the Netherlands, but I doubt it is just this one country. :) | 13:16 |
| betabug | could be, the netherlands is pretty special | 13:16 |
| maurits | ah, coming up again. | 13:17 |
| maurits | Still slow, but I guess that will improve. | 13:19 |
| *** bobo_b has quit IRC | 13:22 | |
| *** spamsch has joined #zope | 13:26 | |
| *** eperez__ has joined #zope | 13:41 | |
| *** milele has quit IRC | 13:43 | |
| *** fredvd has joined #zope | 13:49 | |
| *** aaronv has joined #zope | 13:56 | |
| *** MrTango has joined #zope | 13:57 | |
| *** bhagat has quit IRC | 14:06 | |
| *** hannosch has joined #zope | 14:09 | |
| sashav | maurits: that is probably why my buildout is so slow (sweden) | 14:11 |
| *** goschtl_ has joined #zope | 14:23 | |
| lcpfnvc | hi | 14:24 |
| lcpfnvc | is it possible to move a data.fs from zope 2.8.7 to zope 2.10 | 14:25 |
| betabug | yes, but not necessarily back | 14:25 |
| betabug | lcpfnvc: make a backup | 14:25 |
| betabug | and check that you have the same (or upgraded) products installed | 14:25 |
| betabug | and if you use plone, ask on #plone and search on plone.org, in that case things will be more complicated | 14:26 |
| *** goschtl has quit IRC | 14:27 | |
| *** sunew has joined #zope | 14:29 | |
| *** milele has joined #zope | 14:34 | |
| *** goschtl_ has quit IRC | 14:36 | |
| *** grahal has joined #zope | 14:39 | |
| *** milele has quit IRC | 14:40 | |
| *** spamsch has quit IRC | 14:44 | |
| *** tisto has joined #zope | 14:50 | |
| *** spamsch has joined #zope | 14:52 | |
| *** benji has joined #zope | 14:55 | |
| *** huajie has joined #zope | 14:55 | |
| *** kevinkal has quit IRC | 14:57 | |
| *** tisto has quit IRC | 14:59 | |
| *** baijum has quit IRC | 15:00 | |
| *** eperez__ has quit IRC | 15:01 | |
| *** huajie has quit IRC | 15:02 | |
| *** milele has joined #zope | 15:10 | |
| *** tisto has joined #zope | 15:13 | |
| *** kevinkal has joined #zope | 15:13 | |
| *** touff has joined #zope | 15:16 | |
| *** baijum has joined #zope | 15:16 | |
| *** touff has quit IRC | 15:20 | |
| *** touff has joined #zope | 15:23 | |
| *** jwhisnant has joined #zope | 15:32 | |
| *** TomBlockley has quit IRC | 15:35 | |
| *** TomBlockley has joined #zope | 15:36 | |
| *** TomBlockley has quit IRC | 15:36 | |
| *** TomBlockley has joined #zope | 15:36 | |
| *** kaeru has quit IRC | 15:44 | |
| *** kevinkal has quit IRC | 15:46 | |
| lcpfnvc | ta betabug | 15:49 |
| *** svenn has joined #zope | 16:02 | |
| *** kevinkal has joined #zope | 16:09 | |
| *** dunny has quit IRC | 16:15 | |
| *** kevinkal has quit IRC | 16:20 | |
| *** kevinkal has joined #zope | 16:24 | |
| *** allisterb has quit IRC | 16:28 | |
| *** allisterb has joined #zope | 16:30 | |
| *** vigith has quit IRC | 16:34 | |
| *** alvaro_ has joined #zope | 16:39 | |
| *** allisterb has quit IRC | 16:42 | |
| *** allisterb has joined #zope | 16:43 | |
| *** goschtl has joined #zope | 16:52 | |
| *** milele has quit IRC | 16:55 | |
| *** allisterb has quit IRC | 17:01 | |
| *** allisterb has joined #zope | 17:06 | |
| *** ignas has quit IRC | 17:09 | |
| *** ccomb1 has joined #zope | 17:27 | |
| *** ccomb1 has quit IRC | 17:27 | |
| *** ccomb1 has joined #zope | 17:27 | |
| *** ccomb has quit IRC | 17:28 | |
| *** noroute has joined #zope | 17:28 | |
| *** thetetet has joined #zope | 17:45 | |
| *** huajie has joined #zope | 17:47 | |
| *** thetet has quit IRC | 17:48 | |
| *** webmaven has joined #zope | 17:50 | |
| *** r0ver has joined #zope | 17:52 | |
| *** redir has joined #zope | 17:53 | |
| *** goschtl has quit IRC | 17:55 | |
| *** ccomb1 is now known as ccomb | 17:56 | |
| *** JaRoel|4D has quit IRC | 17:58 | |
| *** Arfrever has joined #zope | 18:03 | |
| *** baijum has quit IRC | 18:03 | |
| *** MatthewWilkes has joined #zope | 18:04 | |
| *** phimic has quit IRC | 18:07 | |
| *** JaRoel|4D has joined #zope | 18:07 | |
| *** sashav has quit IRC | 18:07 | |
| *** touff has quit IRC | 18:07 | |
| *** fsufitch has joined #zope | 18:09 | |
| fsufitch | could someone help me out? this object is giving me "TypeError: can't pickle PersistentBase objects" and i can't figure out why... http://pastebin.com/MmZxiE5X | 18:12 |
| fsufitch | oh wait, i think i found it myself (i hate it when this happens) | 18:12 |
| *** sashav has joined #zope | 18:13 | |
| *** digitalmortician has quit IRC | 18:16 | |
| fsufitch | got it :) lesson learned: don't use Durus's persistent class in ZODB | 18:17 |
| *** fsufitch has quit IRC | 18:18 | |
| *** sunew has quit IRC | 18:25 | |
| *** allisterb_ has joined #zope | 18:26 | |
| *** huajie has quit IRC | 18:28 | |
| *** allisterb has quit IRC | 18:28 | |
| *** [Arfreve1] has quit IRC | 18:31 | |
| *** [Arfrever] has joined #zope | 18:32 | |
| *** RaFromBRC has joined #zope | 18:35 | |
| *** tisto has quit IRC | 18:39 | |
| *** pthulin has quit IRC | 18:41 | |
| *** tiwula has joined #zope | 18:43 | |
| *** MJ has quit IRC | 18:52 | |
| *** redir has quit IRC | 18:55 | |
| *** allisterb_ has quit IRC | 18:55 | |
| *** Kabz|4D has quit IRC | 18:59 | |
| *** imgrey has joined #zope | 18:59 | |
| imgrey | good evening #zope | 18:59 |
| imgrey | what is the default password for management interface ? | 18:59 |
| *** hannosch has quit IRC | 19:01 | |
| *** JaRoel|4D has quit IRC | 19:02 | |
| mgedmin | afair you have to provide one when you create the zope instance | 19:06 |
| mgedmin | you can change it from the command-line somehow (zopectl password?) | 19:07 |
| *** baijum has joined #zope | 19:10 | |
| *** noroute has quit IRC | 19:12 | |
| *** davisagli has joined #zope | 19:19 | |
| *** goschtl has joined #zope | 19:20 | |
| *** MJ has joined #zope | 19:22 | |
| *** MJ has quit IRC | 19:23 | |
| *** maurits has left #zope | 19:24 | |
| *** mgedmin has quit IRC | 19:28 | |
| *** jdenney has left #zope | 19:30 | |
| *** Kabz|4D has joined #zope | 19:52 | |
| imgrey | how to load dump into db ? | 19:59 |
| imgrey | in xml format | 20:00 |
| *** sunew has joined #zope | 20:04 | |
| *** fredvd has quit IRC | 20:16 | |
| *** tisto has joined #zope | 20:17 | |
| *** redir has joined #zope | 20:17 | |
| *** svenn has quit IRC | 20:19 | |
| *** sunew has quit IRC | 20:20 | |
| *** alecm has joined #zope | 20:26 | |
| *** TomBlockley has quit IRC | 20:34 | |
| *** eperez_ has quit IRC | 20:34 | |
| *** goschtl has quit IRC | 20:35 | |
| *** webmaven has quit IRC | 20:38 | |
| *** evilbungle has quit IRC | 20:38 | |
| sm | imgrey: usually, go to the parent folder in the ZMI, and click import/export button or tab | 20:40 |
| sm | possibly support for xml format was dropped in recent zopes | 20:40 |
| imgrey | sm, fsck | 20:41 |
| betabug | xml import/export was on/off being broken most of the time | 20:41 |
| *** aaronv has quit IRC | 20:43 | |
| *** baijum has quit IRC | 20:52 | |
| *** avn has quit IRC | 20:57 | |
| *** avn has joined #zope | 20:59 | |
| *** tisto has quit IRC | 21:00 | |
| *** jim_SFU has joined #zope | 21:01 | |
| *** JaRoel|4D has joined #zope | 21:01 | |
| *** kleist has quit IRC | 21:02 | |
| *** emrojo has quit IRC | 21:02 | |
| *** webmaven has joined #zope | 21:02 | |
| *** JaRoel|4D has quit IRC | 21:08 | |
| *** tisto has joined #zope | 21:12 | |
| *** davisagli has quit IRC | 21:20 | |
| *** teix has quit IRC | 21:24 | |
| *** davisagli has joined #zope | 21:24 | |
| *** drudi has joined #zope | 21:29 | |
| *** MrWu has joined #zope | 21:30 | |
| *** Arfrever has quit IRC | 21:30 | |
| *** teix has joined #zope | 21:35 | |
| *** aaronv has joined #zope | 21:39 | |
| *** MrWu has quit IRC | 21:49 | |
| *** MrWu has joined #zope | 21:50 | |
| *** teix has left #zope | 21:55 | |
| *** JaRoel|4D has joined #zope | 21:58 | |
| *** MrWu has quit IRC | 22:05 | |
| *** digitalmortician has joined #zope | 22:09 | |
| *** daMaestro has joined #zope | 22:16 | |
| *** ignas has joined #zope | 22:21 | |
| kosh | hail freaks! | 22:22 |
| *** tisto has quit IRC | 22:27 | |
| *** MyCatVerbs has joined #zope | 22:34 | |
| *** MyCatVerbs is now known as RichardBarrell | 22:36 | |
| *** shastry has joined #zope | 22:50 | |
| *** webmaven has quit IRC | 22:59 | |
| *** kevinkal has quit IRC | 22:59 | |
| *** sashav has quit IRC | 23:05 | |
| *** webmaven has joined #zope | 23:16 | |
| *** jim_SFU has quit IRC | 23:26 | |
| *** RaFromBRC is now known as RaFromBRC|lunch | 23:28 | |
| *** thetetet has quit IRC | 23:38 | |
| *** drudi has quit IRC | 23:44 | |
| *** RaFromBRC|lunch is now known as RaFromBRC | 23:52 | |
| *** gileshs has joined #zope | 23:57 | |
Generated by irclog2html.py 4.0.0 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!