Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
fab8f534
Commit
fab8f534
authored
Jul 09, 2010
by
Hanno Schlichting
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Backported c114405 from trunk
parent
c5c3f3bd
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
5 deletions
+7
-5
doc/CHANGES.rst
doc/CHANGES.rst
+4
-0
setup.py
setup.py
+1
-1
src/Shared/DC/__init__.py
src/Shared/DC/__init__.py
+1
-2
src/Shared/__init__.py
src/Shared/__init__.py
+1
-2
No files found.
doc/CHANGES.rst
View file @
fab8f534
...
...
@@ -19,6 +19,10 @@ Bugs Fixed
attribute in the browser:view directive. This attribute has never been
supported in Zope 2.
Features Added
++++++++++++++
- Made both `Shared` and `Shared.DC` namespace packages.
2.12.8 (2010-06-25)
-------------------
...
...
setup.py
View file @
fab8f534
...
...
@@ -26,7 +26,7 @@ setup(name='Zope2',
file
(
os
.
path
.
join
(
"doc"
,
"CHANGES.rst"
)).
read
(),
packages
=
find_packages
(
'src'
),
namespace_packages
=
[
'Products'
],
namespace_packages
=
[
'Products'
,
'Shared'
,
'Shared.DC'
],
package_dir
=
{
''
:
'src'
},
ext_modules
=
[
...
...
src/Shared/DC/__init__.py
View file @
fab8f534
...
...
@@ -10,5 +10,4 @@
# FOR A PARTICULAR PURPOSE
#
##############################################################################
__doc__
=
'''$Id$'''
__version__
=
'$Revision: 1.9 $'
[
11
:
-
2
]
__import__
(
'pkg_resources'
).
declare_namespace
(
__name__
)
src/Shared/__init__.py
View file @
fab8f534
...
...
@@ -10,5 +10,4 @@
# FOR A PARTICULAR PURPOSE
#
##############################################################################
__doc__
=
'''$Id$'''
__version__
=
'$Revision: 1.7 $'
[
11
:
-
2
]
__import__
(
'pkg_resources'
).
declare_namespace
(
__name__
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment