move jocy library to cybertools/ajax

git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@3481 fd906abe-77d9-0310-91a1-e0d9ade77398
This commit is contained in:
helmutm 2009-08-01 13:26:19 +00:00
parent ee2bd0429c
commit 0657457b17
5 changed files with 19 additions and 35 deletions

View file

@ -7,7 +7,6 @@
> >
<resourceDirectory name="cybertools.icons" directory="icons" /> <resourceDirectory name="cybertools.icons" directory="icons" />
<resourceDirectory name="cybertools.jocy" directory="jocy" />
<menuItem <menuItem
for="*" for="*"

View file

@ -1,33 +0,0 @@
/*
* Copyright (c) 2008 Helmut Merz helmutm@cy55.de
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/*
*
* $Id$
*
*/
dojo.provide('jocy.data');
dojo.declare('jocy.data.GridData', null, {
info: 'Hello World!',
constructor: function(){
this.info = 'Hello World!';
}
});

View file

@ -70,4 +70,20 @@
</zope:localUtility> </zope:localUtility>
<!-- error views -->
<page for="zope.interface.common.interfaces.IException"
name="index.html"
template="systemerror.pt"
class="zope.app.exception.systemerror.SystemErrorView"
permission="zope.Public"
layer="cybertools.browser.loops.Loops" />
<page for="zope.publisher.interfaces.INotFound"
name="index.html"
permission="zope.Public"
template="notfound.pt"
class="zope.app.exception.browser.notfound.NotFound"
layer="cybertools.browser.loops.Loops" />
</configure> </configure>

View file

@ -26,7 +26,9 @@ from zope.interface import Interface
from zope import schema from zope import schema
from zope.app.container.constraints import contains from zope.app.container.constraints import contains
from zope.app.container.interfaces import IContainer from zope.app.container.interfaces import IContainer
from zope.app.i18n import ZopeMessageFactory as _ from zope.i18nmessageid import MessageFactory
_ = MessageFactory('cybertools.pyscript')
class IPythonScript(Interface): class IPythonScript(Interface):