Skip to content
This repository has been archived by the owner on Dec 17, 2020. It is now read-only.

Commit

Permalink
Move implementation form private repos to svn.zope.org
Browse files Browse the repository at this point in the history
  • Loading branch information
projekt01 committed Feb 16, 2008
0 parents commit 96229f6
Show file tree
Hide file tree
Showing 14 changed files with 446 additions and 0 deletions.
8 changes: 8 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
=======
CHANGES
=======

Version 0.5.0 (unreleased)
-------------------------

- Initial Release
4 changes: 4 additions & 0 deletions README.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
This package provides an JSON-RPC (javascript) proxy used for Zope3. But the
javascript itself does not depend on any zope library and can be used with any
other JSON-RPC server. Note the xmlhttp request javascript library form
z3c.xmlhttp is required for this implementation
52 changes: 52 additions & 0 deletions bootstrap.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
##############################################################################
#
# Copyright (c) 2007 Zope Corporation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
"""Bootstrap a buildout-based project
Simply run this script in a directory containing a buildout.cfg.
The script accepts buildout command-line options, so you can
use the -c option to specify an alternate configuration file.
$Id: bootstrap.py 75940 2007-05-24 14:45:00Z srichter $
"""

import os, shutil, sys, tempfile, urllib2

tmpeggs = tempfile.mkdtemp()

ez = {}
exec urllib2.urlopen('http://peak.telecommunity.com/dist/ez_setup.py'
).read() in ez
ez['use_setuptools'](to_dir=tmpeggs, download_delay=0)

import pkg_resources

cmd = 'from setuptools.command.easy_install import main; main()'
if sys.platform == 'win32':
cmd = '"%s"' % cmd # work around spawn lamosity on windows

ws = pkg_resources.working_set
assert os.spawnle(
os.P_WAIT, sys.executable, sys.executable,
'-c', cmd, '-mqNxd', tmpeggs, 'zc.buildout',
dict(os.environ,
PYTHONPATH=
ws.find(pkg_resources.Requirement.parse('setuptools')).location
),
) == 0

ws.add_entry(tmpeggs)
ws.require('zc.buildout')
import zc.buildout.buildout
zc.buildout.buildout.main(sys.argv[1:] + ['bootstrap'])
shutil.rmtree(tmpeggs)
11 changes: 11 additions & 0 deletions buildout.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
[buildout]
develop = .
parts = test coverage

[test]
recipe = zc.recipe.testrunner
eggs = z3c.jsonrpcproxy [test]

[coverage]
recipe = zc.recipe.egg
eggs = z3c.coverage
60 changes: 60 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
##############################################################################
#
# Copyright (c) 2008 Zope Foundation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
"""
$Id:$
"""
import os
from setuptools import setup, find_packages

def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()

setup (
name='z3c.jsonrpcproxy',
version='0.5.0',
author = "Roger Ineichen and the Zope Community",
author_email = "zope3-dev@zope.org",
description = "JSON RPC (javascript) proxy implementation for Zope3",
long_description=(
read('README.txt')
+ '\n\n' +
read('CHANGES.txt')
),
license = "ZPL 2.1",
keywords = "zope3 z3c json rpc json-rpc javascript proxy",
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: Zope Public License',
'Programming Language :: Python',
'Natural Language :: English',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP',
'Framework :: Zope3'],
url = 'http://cheeseshop.python.org/pypi/z3c.jsonrpcproxy',
packages = find_packages('src'),
include_package_data = True,
package_dir = {'':'src'},
namespace_packages = ['z3c'],
extras_require = dict(
test = [
'z3c.coverage',
],
),
install_requires = [
'setuptools',
],
zip_safe = False,
)
7 changes: 7 additions & 0 deletions src/z3c/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# this is a namespace package
try:
import pkg_resources
pkg_resources.declare_namespace(__name__)
except ImportError:
import pkgutil
__path__ = pkgutil.extend_path(__path__, __name__)
3 changes: 3 additions & 0 deletions src/z3c/jsonrpcproxy/SETUP.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<data-files zopeskel/etc/package-includes>
z3c.jsonrpcproxy-*.zcml
</data-files>
1 change: 1 addition & 0 deletions src/z3c/jsonrpcproxy/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Make a package.
26 changes: 26 additions & 0 deletions src/z3c/jsonrpcproxy/browser.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
##############################################################################
#
# Copyright (c) 2008 Zope Foundation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
"""
$Id:$
"""

from zope.viewlet.viewlet import JavaScriptViewlet
from zope.viewlet.interfaces import IViewletManager


class IJavaScript(IViewletManager):
"""JavaScript viewlet manager."""


JSONRPCProxyJavaScriptViewlet = JavaScriptViewlet('jsonrpcproxy.js')
27 changes: 27 additions & 0 deletions src/z3c/jsonrpcproxy/browser.zcml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<configure
xmlns:zope="http://namespaces.zope.org/zope"
xmlns="http://namespaces.zope.org/browser"
xmlns:i18n="http://namespaces.zope.org/i18n"
i18n_domain="z3c">


<!-- javascript resource files for z3c.jsonrpc layer -->
<resource
name="jsonrpcproxy.js"
file="js/jsonrpcproxy-0.5.0.js"
layer="z3c.jsonrpcproxy.layer.IJSONRPCBrowserLayer"
/>


<!-- javascript viewlets for z3c.jsonrpc layer -->
<viewlet
name="jsonrpcproxy.js"
for="*"
manager="z3c.jsonrpcproxy.browser.IJavaScript"
class=".browser.JSONRPCProxyJavaScriptViewlet"
permission="zope.Public"
layer="z3c.jsonrpcproxy.layer.IJSONRPCBrowserLayer"
weight="100"
/>

</configure>
12 changes: 12 additions & 0 deletions src/z3c/jsonrpcproxy/configure.zcml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<configure
xmlns="http://namespaces.zope.org/zope"
i18n_domain="z3c">

<interface
interface="z3c.jsonrpcproxy.layer.IJSONRPCBrowserLayer"
type="zope.publisher.interfaces.browser.IBrowserSkinType"
/>

<include file="browser.zcml" />

</configure>
Loading

0 comments on commit 96229f6

Please sign in to comment.