headgoat | wait... didn't I already do this?? | 00:00 |
---|---|---|
benji_york | *I* thought so | 00:00 |
headgoat | I can't scroll that far (since I was booted off)... yes, the sf page looks familiar | 00:00 |
headgoat | how can i find our what expat dev package was installed on fc3? | 00:01 |
benji_york | I don't know how on FC | 00:03 |
headgoat | ok, well i tried recompiling my python (make clean / .configure / make / make install), and then tried the Zope install (.configure --with-python <dir> / make) and got the same errors.... I'm going to back up a step and delete python and re-download | 00:16 |
headgoat | (at one point, earlier in the day, I think I had configured Python with some unicode parameter... maybe this will back out that step... at least that's my logic, like it or not) | 00:18 |
headgoat | someone will read this chatlog, and just shake their head at all this! | 00:22 |
benji_york | good luck headgoat, gotta go | 00:26 |
*** benji_york has quit IRC | 00:26 | |
*** jpfarias has joined #zope3-dev | 00:27 | |
*** tziade has quit IRC | 00:28 | |
*** yota has quit IRC | 00:35 | |
*** yota has joined #zope3-dev | 00:37 | |
headgoat | ok, here's an update of my saga, for those playing along: I downloaded Python 2.3.5 (as recommended by Zope .configure). installed python 2.3.5. Then the Zope installation seemed to get a little further (this is where I was 7 hours ago...) in that it completes a make, with a bunch of warnings (differs in signedness warnings). Now "make check" is checking itself "......... etc" | 00:43 |
headgoat | and I get: Failure in test testUmask (zdaemon.tests.testzdrun.ZDaemonTests) | 00:45 |
headgoat | Traceback (most recent call last): | 00:45 |
headgoat | File "/home/jfelix/Desktop/Zope-3.1.0/build/lib.linux-i686-2.3/zdaemon/tests/testzdrun.py", line 260, in testUmask | 00:45 |
headgoat | self.assert_(not os.access(path, os.W_OK)) | 00:45 |
headgoat | File "/usr/local/lib/python2.3/unittest.py", line 278, in failUnless | 00:45 |
headgoat | if not expr: raise self.failureException, msg | 00:45 |
headgoat | AssertionError | 00:45 |
hazmat_ | headgoat, btw. if you were serious about buying a box, you might want to have a look at unixshell.com, xen based virtual hosting, full root access, choice of distros, cheap prices | 01:29 |
*** projekt01 has quit IRC | 01:41 | |
*** yota has quit IRC | 01:50 | |
*** projekt01 has joined #zope3-dev | 01:51 | |
*** sashav has quit IRC | 01:56 | |
*** Alef has quit IRC | 02:06 | |
*** d2m has quit IRC | 02:14 | |
*** stub has joined #zope3-dev | 02:20 | |
*** jpfarias_ has joined #zope3-dev | 02:24 | |
*** jpfarias_ has quit IRC | 02:30 | |
*** gdsgdsgvdd has joined #zope3-dev | 02:45 | |
gdsgdsgvdd | seminars = List( | 02:46 |
gdsgdsgvdd | title = u'seminars', | 02:46 |
gdsgdsgvdd | description = u'list of seminars', | 02:46 |
gdsgdsgvdd | required = True, | 02:46 |
gdsgdsgvdd | value_type = Choice(vocabulary=SimpleVocabulary( | 02:46 |
gdsgdsgvdd | ['Zope', 'SSP', 'ASP', 'JSP', 'SeaSide', 'Cocoon', 'Struts', 'Flash', 'Plune'])), | 02:46 |
gdsgdsgvdd | max_length=3 | 02:46 |
gdsgdsgvdd | ) | 02:46 |
gdsgdsgvdd | I am getting an error on this part of the code | 02:46 |
gdsgdsgvdd | error-- 'str' object has no attribute 'value' | 02:46 |
gdsgdsgvdd | what am i doing wrong | 02:47 |
*** jpfarias has quit IRC | 02:47 | |
*** sashav has joined #zope3-dev | 02:48 | |
gdsgdsgvdd | any clue... | 02:54 |
gdsgdsgvdd | can someone help please... | 03:00 |
gdsgdsgvdd | why am i getting this error --'str' object has no attribute 'value' | 03:03 |
bob2 | that's the entire error? | 03:09 |
gdsgdsgvdd | i ran the .py file at python interpretor | 03:09 |
gdsgdsgvdd | Traceback (most recent call last): | 03:09 |
gdsgdsgvdd | File "C:\zope3Ins\lib\python\assignment2\interfaces.py", line 5, in -toplevel- | 03:09 |
gdsgdsgvdd | class IRegistration(Interface): | 03:09 |
gdsgdsgvdd | File "C:\zope3Ins\lib\python\assignment2\interfaces.py", line 53, in IRegistration | 03:09 |
gdsgdsgvdd | value_type = List(vocabulary=SimpleVocabulary( | 03:09 |
gdsgdsgvdd | File "C:\Python23\Lib\site-packages\zope\schema\vocabulary.py", line 64, in __init__ | 03:09 |
gdsgdsgvdd | self.by_value[term.value] = term | 03:10 |
gdsgdsgvdd | AttributeError: 'str' object has no attribute 'value' | 03:10 |
gdsgdsgvdd | this is the entire error | 03:10 |
gdsgdsgvdd | any idea.. | 03:12 |
gdsgdsgvdd | what str abject is the error about... is there some problem with the SimpleVocabulary | 03:15 |
*** newpers_ has joined #zope3-dev | 03:23 | |
gdsgdsgvdd | bob2, is it making sense?? | 03:24 |
headgoat | hazmat, thanks for the lead on the unix box. I go back and forth between my interest in "solving the puzzle" and not wanting to waste my time. | 03:34 |
hazmat_ | gdsgdsgvdd, i'm not familiar with vocabularies, but it appears to be saying that it wants some sort of object specified as the vocabulary, not just a simple string, i would check the relevant docs / ut | 03:49 |
hazmat_ | gdsgdsgvdd, try it with this Choice(vocabulary=SimpleVocabulary( map( SimpleTerm, ['Zope', 'SSP', 'ASP', 'JSP'] ) ) ) | 03:51 |
gdsgdsgvdd | ok | 03:58 |
gdsgdsgvdd | what is this simpleterm.. | 04:01 |
gdsgdsgvdd | it gave me error "SimpleTerm not defined" | 04:06 |
gdsgdsgvdd | do i have to specify SinpleTerm as a Vocabulary | 04:06 |
*** lifeless has joined #zope3-dev | 04:12 | |
*** lifeless has left #zope3-dev | 04:12 | |
*** tvon has joined #zope3-dev | 04:31 | |
*** newpers_ is now known as newpers | 04:45 | |
*** febb has quit IRC | 04:55 | |
hazmat_ | gdsgdsgvdd, its from the some module as simplevocabulary | 04:59 |
hazmat_ | its a class | 04:59 |
hazmat_ | from zope.schema.vocabulary import SimpleTerm | 04:59 |
gdsgdsgvdd | but it gives me error | 05:08 |
gdsgdsgvdd | SimpleTerm not defined | 05:08 |
gdsgdsgvdd | do i have to import as well | 05:08 |
*** roym has quit IRC | 05:25 | |
*** tvon has quit IRC | 05:32 | |
*** newpers has quit IRC | 05:49 | |
bob2 | wow, zope2 is scary | 06:34 |
bob2 | no, not scary | 06:38 |
bob2 | terrifying | 06:38 |
*** MacYET has joined #zope3-dev | 07:04 | |
*** hazmat_ has quit IRC | 08:10 | |
*** hazmat_ has joined #zope3-dev | 08:16 | |
*** zagy has joined #zope3-dev | 08:30 | |
*** d2m has joined #zope3-dev | 08:41 | |
*** gdsgdsgvdd has quit IRC | 08:53 | |
d2m | MacYET: morning, regarding the recent hotfix: there are some minor problems with Zope2.7.0 (want to join me at #zope-web ?) | 08:53 |
MacYET | no time | 08:54 |
d2m | join later, if you got time | 08:54 |
MacYET | and zope 2.7.0 is nothing we support | 08:54 |
d2m | need to change the http://www.zope.org/Products page, support starts with 2.7.1 then ? | 08:57 |
*** sashav has joined #zope3-dev | 08:58 | |
MacYET | i don't care...people should update their instances regulary and 2.7.0 far from being a recent and stable versioni | 08:58 |
d2m | it's just that docutils now use config variables not supported by zope.conf in that version (and there are some file permissions to change), if you install the hotfix with zope2.7.0 it breaks, you need to change the reStructuredText/__init__.py to get zope running again | 09:04 |
MacYET | 2.7.0 is not worth a discussion | 09:04 |
d2m | ok then | 09:04 |
d2m | thanks anyway, it works fine for me | 09:05 |
MacYET | cool | 09:05 |
*** dobee has joined #zope3-dev | 09:10 | |
*** dobee has joined #zope3-dev | 09:12 | |
*** hdima has joined #zope3-dev | 09:26 | |
*** einheit is now known as SteveA_ | 09:31 | |
*** sashav has quit IRC | 09:35 | |
*** yota has joined #zope3-dev | 09:52 | |
*** sashav has joined #zope3-dev | 10:07 | |
*** hazmat_ has quit IRC | 10:19 | |
*** Theuni has joined #zope3-dev | 10:26 | |
*** tekNico has joined #zope3-dev | 10:26 | |
*** jvts has joined #zope3-dev | 10:28 | |
*** andres has joined #zope3-dev | 10:33 | |
*** MJ has quit IRC | 10:41 | |
*** sashav has quit IRC | 10:42 | |
*** sashav has joined #zope3-dev | 10:52 | |
*** sashav_ has joined #zope3-dev | 10:58 | |
*** kinder has joined #zope3-dev | 10:59 | |
*** sashav has quit IRC | 11:12 | |
*** MJ has joined #zope3-dev | 11:23 | |
*** sashav_ is now known as sashav | 11:34 | |
*** Alef has joined #zope3-dev | 11:41 | |
*** MrTopf has joined #zope3-dev | 11:43 | |
*** faassen has joined #zope3-dev | 11:45 | |
*** stub has quit IRC | 12:10 | |
*** SteveA_ is now known as einheit | 12:15 | |
*** mkerrin has joined #zope3-dev | 12:33 | |
*** projekt01 has joined #zope3-dev | 13:11 | |
*** ignas has joined #zope3-dev | 13:22 | |
*** MrTopf_ has joined #zope3-dev | 13:45 | |
*** loreto has quit IRC | 13:54 | |
*** MrTopf has quit IRC | 13:58 | |
*** MJ has quit IRC | 14:00 | |
*** mgedmin has joined #zope3-dev | 14:13 | |
*** alga has joined #zope3-dev | 14:14 | |
*** MJ has joined #zope3-dev | 14:25 | |
*** tvon has joined #zope3-dev | 14:27 | |
*** stub has joined #zope3-dev | 14:29 | |
*** MJ has quit IRC | 14:36 | |
*** MJ has joined #zope3-dev | 14:38 | |
*** zbir has quit IRC | 14:38 | |
*** tekNico has left #zope3-dev | 14:44 | |
*** electrolinux has joined #zope3-dev | 14:44 | |
*** tekNico has joined #zope3-dev | 14:46 | |
*** tekNico has left #zope3-dev | 14:46 | |
*** alga has quit IRC | 14:53 | |
electrolinux | hi! trying to run the messageboard step01 demo on a fresh zope3.1.0 install raise a ConfigurationConflictError in provided configure.zcml... | 15:02 |
*** niemeyer has joined #zope3-dev | 15:02 | |
*** tiredbones has joined #zope3-dev | 15:06 | |
*** jinty has joined #zope3-dev | 15:08 | |
bob2 | best to show it | 15:12 |
electrolinux | zope.configuration.config.ConfigurationConflictError: Conflicting configuration actions | 15:12 |
electrolinux | For: ('protectName', <class 'book.messageboard.message.Message'>, '__setitem__') | 15:12 |
electrolinux | File "/home/dbelot/zope/z3/lib/python/book/messageboard/configure.zcml", line 35.2-54.2 | 15:13 |
electrolinux | the configure.zcml is the one at http://svn.zope.org/book/trunk/messageboard/step01/configure.zcml | 15:13 |
bob2 | that's the entire error? | 15:14 |
electrolinux | just last lines. One line before said: File "/usr/local/Zope-3.1.0/lib/python/zope/configuration/config.py", line 1523, in resolveConflicts raise ConfigurationConflictError(conflicts). Want to see the full traceback ? | 15:16 |
d2m | electrolinux: could be you already have another messageboard? maybe doubel use of class message.Message ? | 15:18 |
*** J1m has joined #zope3-dev | 15:18 | |
electrolinux | hum... were would it be located ? i'm using a freshly installed 3.1.0 | 15:21 |
*** jinty has left #zope3-dev | 15:21 | |
*** jinty has quit IRC | 15:21 | |
electrolinux | maybe yes! i18nmessageid/message.py (see: http://electrolinux.pastebin.com/388955) | 15:28 |
electrolinux | so the whole messageboard example is unusable right now, it seems :-( | 15:29 |
d2m | electrolinux: the error occurs at <content class=".message.Message">, change the class to <content class="book.messageboard.message.Message"> | 15:30 |
electrolinux | k. i'll try... | 15:31 |
electrolinux | nope! same exception raised at same place. complete backtrace here: http://electrolinux.pastebin.com/388963 | 15:37 |
*** yota has quit IRC | 15:46 | |
*** yota has joined #zope3-dev | 15:46 | |
electrolinux | or do I change all interface=".interfaces.IMessage" to interface="book.messageboard.interfaces.IMessage" ? trying... | 15:47 |
*** vidasp has joined #Zope3-dev | 15:49 | |
electrolinux | no! | 15:51 |
d2m | electrolinux: http://mail.zope.org/pipermail/zope3-dev/2005-January/013001.html | 15:52 |
electrolinux | ok, thanks. | 16:08 |
*** zbir has joined #zope3-dev | 16:12 | |
*** benji_york has joined #zope3-dev | 16:19 | |
*** alga has joined #zope3-dev | 16:20 | |
*** apoirier has joined #zope3-dev | 16:22 | |
faassen | benji_york: just saw your update to the tutorial, cool, and thanks. | 16:22 |
faassen | benji_york: is your weblog listed under planet.python.org yet? | 16:22 |
faassen | benji_york: I saw it was under planetzope.org, but we need all the Zope people to engage the Python community we can get, for our own sake. :) | 16:23 |
*** regebro has joined #zope3-dev | 16:27 | |
projekt01 | J1m, ayt? | 16:32 |
*** projekt01 has left #zope3-dev | 16:43 | |
*** bob2 has quit IRC | 16:59 | |
*** sashav has quit IRC | 17:10 | |
*** whit has joined #zope3-dev | 17:17 | |
*** stub has quit IRC | 17:29 | |
*** hdima has quit IRC | 17:33 | |
*** alga has quit IRC | 17:40 | |
*** sashav has joined #zope3-dev | 18:03 | |
*** whit is now known as w|shower | 18:05 | |
*** jvts has quit IRC | 18:15 | |
*** SureshZ has joined #zope3-dev | 18:16 | |
*** tiredbones has quit IRC | 18:16 | |
*** sm has joined #zope3-dev | 18:17 | |
*** tiredbones has joined #zope3-dev | 18:18 | |
*** w|shower is now known as whit | 18:22 | |
*** projekt01 has joined #zope3-dev | 18:25 | |
*** mgedmin has left #zope3-dev | 18:31 | |
*** jinty has joined #zope3-dev | 18:32 | |
*** jinty has quit IRC | 18:37 | |
*** jinty has joined #zope3-dev | 18:37 | |
*** tiredbones has quit IRC | 18:42 | |
*** tiredbones has joined #zope3-dev | 18:42 | |
benji_york | faassen, sorry, sprinting today. I should probably log out of IRC :) | 18:42 |
benji_york | yep, I'm trying to get on planet.python.org, but there is no defined process for that. Fred's helping so maybe soon. | 18:43 |
MacYET | yet another sprint? | 18:44 |
*** whit has joined #zope3-dev | 18:45 | |
benji_york | MacYET this sprint is more internal | 18:45 |
MacYET | ic | 18:46 |
*** benji_york has quit IRC | 18:47 | |
*** tvon has left #zope3-dev | 18:54 | |
*** zbir has quit IRC | 18:54 | |
*** dobee has quit IRC | 18:55 | |
*** electrolinux has left #zope3-dev | 18:57 | |
*** yota has quit IRC | 18:59 | |
*** yota has joined #zope3-dev | 19:00 | |
*** andres has quit IRC | 19:05 | |
*** regebro has quit IRC | 19:07 | |
*** kinder has quit IRC | 19:08 | |
*** dobee has joined #zope3-dev | 19:09 | |
*** sashav has quit IRC | 19:11 | |
*** sashav has joined #zope3-dev | 19:12 | |
*** Alef has quit IRC | 19:16 | |
*** dobee has quit IRC | 19:19 | |
*** MrTopf_ has quit IRC | 19:26 | |
*** sm is now known as sm-afk | 19:35 | |
*** MrTopf has joined #zope3-dev | 19:47 | |
*** jinty has quit IRC | 19:48 | |
*** MrTopf has quit IRC | 19:58 | |
*** MJ has quit IRC | 20:00 | |
*** apoirier has quit IRC | 20:02 | |
*** whit has quit IRC | 20:19 | |
*** jvts has joined #zope3-dev | 20:21 | |
*** faassen has quit IRC | 20:22 | |
*** MJ has joined #zope3-dev | 20:24 | |
*** tvon has joined #zope3-dev | 20:25 | |
*** deo has joined #zope3-dev | 20:30 | |
*** zbir has joined #zope3-dev | 20:44 | |
*** projekt01 has quit IRC | 20:52 | |
*** dobee has joined #zope3-dev | 20:53 | |
*** sashav has quit IRC | 20:54 | |
*** sashav has joined #zope3-dev | 20:54 | |
*** whit has joined #zope3-dev | 20:58 | |
*** jvts has quit IRC | 21:20 | |
*** SureshZ has left #zope3-dev | 21:25 | |
*** dobee_ has joined #zope3-dev | 21:28 | |
*** vidasp has left #Zope3-dev | 21:28 | |
*** dobee has quit IRC | 21:32 | |
*** dobee has joined #zope3-dev | 21:37 | |
*** baldtrol has joined #zope3-dev | 21:39 | |
baldtrol | hi all... quick question. i'm building an application where, while i'm handling all the data captured as content objects for different classes, it needs to be in a procedural "this object first, then this one, then this" etc... | 21:41 |
baldtrol | basically it means i can't use the wonderful "add new object" default templates. but i'd love to retain the javascript that does all the type checking based on interface. | 21:41 |
baldtrol | what's the best way to override the add/edit object templates and use them without being driven by the standard ZMI? or rather, where can i read about doing it? | 21:42 |
*** jvts has joined #zope3-dev | 21:44 | |
*** dobee_ has quit IRC | 21:50 | |
*** mkerrin has quit IRC | 21:53 | |
*** tav_ is now known as tav | 22:12 | |
*** ChanServ sets mode: +o tav | 22:12 | |
*** baldtrol has left #zope3-dev | 22:35 | |
*** jhauser has joined #zope3-dev | 22:36 | |
*** MacYET has quit IRC | 22:37 | |
*** sm-afk is now known as sm | 22:45 | |
*** whit has quit IRC | 22:46 | |
*** ignas has quit IRC | 22:52 | |
*** drzoltron_ has joined #zope3-dev | 22:53 | |
*** projekt01 has joined #zope3-dev | 23:00 | |
*** mp has quit IRC | 23:11 | |
*** jvts has quit IRC | 23:20 | |
*** jvts has joined #zope3-dev | 23:24 | |
*** jvts has quit IRC | 23:26 | |
*** mp has joined #zope3-dev | 23:26 | |
*** drzoltron_ has quit IRC | 23:28 | |
*** niemeyer has quit IRC | 23:31 | |
*** niemeyer has joined #zope3-dev | 23:38 | |
*** hazmat has quit IRC | 23:45 | |
projekt01 | J1m, ayt? | 23:46 |
*** lunatik has joined #zope3-dev | 23:48 | |
*** bskahan has joined #zope3-dev | 23:48 | |
*** lunatik has left #zope3-dev | 23:49 | |
projekt01 | can somebody answer a wfmc question? | 23:57 |
projekt01 | Is it possible to get the particiapants where can start the next activity before workItemFinished is called on a activity? | 23:57 |
Generated by irclog2html.py 2.15.1 by Marius Gedminas - find it at mg.pov.lt!