I need to choose an issue tracking system to deploy at my current employer. Roundup looks good and it even has an existing zope product. However I ran into a problem installing it and haven't gotten any info on the roundup mailling list. I installed the ZRoundup product as usual and it is listed in the "add" menu. However I get this error when I click the submit button to add an instance : ~~~~ Site Error An error was encountered while publishing this resource. Resource not found Sorry, the requested resource does not exist. Check the URL and try again. Resource: http://deborah.iteams.org:9673/roundup-support/manage_addZRoundup ~~~~ The Folder where I am trying to add the ZRoundup object is http://deborah.iteams.org:9673/roundup-support/. The product contains the following snippets in __init__.py and ZRoundup.py respectively : ~~~~ # product initialisation import ZRoundup def initialize(context): context.registerClass( ZRoundup, meta_type = 'Z Roundup', constructors = ( ZRoundup.manage_addZRoundupForm, ZRoundup.manage_addZRoundup ) ) ~~~~ ~~~~ modulesecurity.declareProtected('View management screens', 'manage_addZRoundupForm') modulesecurity.declareProtected('Add Z Roundups', 'manage_addZRoundup') def manage_addZRoundup(self, id, instance_home, REQUEST): """Add a ZRoundup product """ ~~~~ I don't know anything about developing Products. Can anyone tell me what is wrong with it? -D -- A wise servant will rule over a disgraceful son, and will share the inheritance as one of the brothers. Proverbs 17:2 GnuPG key : http://dman.ddts.net/~dman/public_key.gpg
On Sat, 4 May 2002 07:23, dman wrote:
I need to choose an issue tracking system to deploy at my current employer. Roundup looks good and it even has an existing zope product. However I ran into a problem installing it and haven't gotten any info on the roundup mailling list.
I responded to your query in that mailing list with a request for additional information, which you did not reply to. I assumed the problem had gone away.
I installed the ZRoundup product as usual and it is listed in the "add" menu. However I get this error when I click the submit button to add an instance :
Do you get any errors when Zope starts up? Are there any errors in the Products entry of the Control Panel?
~~~~ Site Error
An error was encountered while publishing this resource.
Resource not found Sorry, the requested resource does not exist.
Check the URL and try again.
Resource: http://deborah.iteams.org:9673/roundup-support/manage_addZRoundup ~~~~
Is any further information embedded in this page if you view the source?
The Folder where I am trying to add the ZRoundup object is http://deborah.iteams.org:9673/roundup-support/.
The product contains the following snippets in __init__.py and ZRoundup.py respectively :
~~~~ # product initialisation import ZRoundup def initialize(context): context.registerClass( ZRoundup, meta_type = 'Z Roundup', constructors = ( ZRoundup.manage_addZRoundupForm, ZRoundup.manage_addZRoundup ) ) ~~~~
~~~~ modulesecurity.declareProtected('View management screens', 'manage_addZRoundupForm')
modulesecurity.declareProtected('Add Z Roundups', 'manage_addZRoundup') def manage_addZRoundup(self, id, instance_home, REQUEST): """Add a ZRoundup product """ ~~~~
I don't know anything about developing Products. Can anyone tell me what is wrong with it?
Sorry, but without further information, it's really hard for me to see what's going wrong. Richard
On Sat, May 04, 2002 at 09:32:40AM +1000, Richard Jones wrote: | On Sat, 4 May 2002 07:23, dman wrote: | > I need to choose an issue tracking system to deploy at my current | > employer. Roundup looks good and it even has an existing zope | > product. However I ran into a problem installing it and haven't | > gotten any info on the roundup mailling list. | | I responded to your query in that mailing list with a request for | additional information, which you did not reply to. I assumed the | problem had gone away. http://sourceforge.net/mailarchive/message.php?msg_id=1496623 (the archives are actually usable now, wow :-)) | > I installed the ZRoundup product as usual and it is listed in the | > "add" menu. However I get this error when I click the submit button | > to add an instance : | | Do you get any errors when Zope starts up? Are there any errors in | the Products entry of the Control Panel? No to both. | > ~~~~ | > Site Error | > | > An error was encountered while publishing this resource. | > | > Resource not found | > Sorry, the requested resource does not exist. | > | > Check the URL and try again. | > | > Resource: | > http://deborah.iteams.org:9673/roundup-support/manage_addZRoundup | > ~~~~ | | Is any further information embedded in this page if you view the | source? Hrm, I just tried again to see but it worked. Go figure. The only thing I can think of is that zope was stopped and restarted several times in between (along with many other changes, but not to roundup). | Sorry, but without further information, it's really hard for me to | see what's going wrong. Completely understandable. I'll assume you just missed my other message (referenced above). I'll play with it some more now and let you know if I run into any more difficulties. Thanks, -D -- The teaching of the wise is a fountain of life, turning a man from the snares of death. Proverbs 13:14 GnuPG key : http://dman.ddts.net/~dman/public_key.gpg
participants (2)
-
dman -
Richard Jones