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
076dedea
Commit
076dedea
authored
Jan 12, 2001
by
Martijn Pieters
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix DTML path for moved .dtml files.
parent
cc7d410f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
4 deletions
+7
-4
doc/CHANGES.txt
doc/CHANGES.txt
+3
-0
lib/python/Products/ZCatalog/CatalogPathAwareness.py
lib/python/Products/ZCatalog/CatalogPathAwareness.py
+1
-1
lib/python/Shared/DC/ZRDB/Aqueduct.py
lib/python/Shared/DC/ZRDB/Aqueduct.py
+3
-3
No files found.
doc/CHANGES.txt
View file @
076dedea
...
@@ -11,6 +11,9 @@ Zope changes
...
@@ -11,6 +11,9 @@ Zope changes
- Added a deprecated alias to UnrestrictedUser, Super, for use
- Added a deprecated alias to UnrestrictedUser, Super, for use
by user folder products that depend on the old class name.
by user folder products that depend on the old class name.
- Fixed path for management interface files used for
CatalogPathAwareness and Aqueduct.
Zope 2.3.0 alpha 2
Zope 2.3.0 alpha 2
Features Added
Features Added
...
...
lib/python/Products/ZCatalog/CatalogPathAwareness.py
View file @
076dedea
...
@@ -101,7 +101,7 @@ class CatalogAware:
...
@@ -101,7 +101,7 @@ class CatalogAware:
meta_type
=
'CatalogAware'
meta_type
=
'CatalogAware'
default_catalog
=
'Catalog'
default_catalog
=
'Catalog'
manage_editCatalogerForm
=
DTMLFile
(
'
editCatalogerForm'
,
globals
())
manage_editCatalogerForm
=
HTMLFile
(
'dtml/
editCatalogerForm'
,
globals
())
def
manage_editCataloger
(
self
,
default
,
REQUEST
=
None
):
def
manage_editCataloger
(
self
,
default
,
REQUEST
=
None
):
""" """
""" """
...
...
lib/python/Shared/DC/ZRDB/Aqueduct.py
View file @
076dedea
...
@@ -84,8 +84,8 @@
...
@@ -84,8 +84,8 @@
##############################################################################
##############################################################################
__doc__
=
'''Shared classes and functions
__doc__
=
'''Shared classes and functions
$Id: Aqueduct.py,v 1.4
1 2000/06/13 22:10:01 amos
Exp $'''
$Id: Aqueduct.py,v 1.4
2 2001/01/12 11:40:54 mj
Exp $'''
__version__
=
'$Revision: 1.4
1
$'
[
11
:
-
2
]
__version__
=
'$Revision: 1.4
2
$'
[
11
:
-
2
]
import
Globals
,
os
import
Globals
,
os
from
Globals
import
HTMLFile
,
Persistent
from
Globals
import
HTMLFile
,
Persistent
...
@@ -99,7 +99,7 @@ from DocumentTemplate import HTML
...
@@ -99,7 +99,7 @@ from DocumentTemplate import HTML
from
string
import
strip
,
replace
from
string
import
strip
,
replace
dtml_dir
=
Globals
.
package_home
(
globals
())
dtml_dir
=
Globals
.
package_home
(
globals
())
+
'/dtml'
InvalidParameter
=
'Invalid Parameter'
InvalidParameter
=
'Invalid Parameter'
...
...
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