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
17bc50f7
Commit
17bc50f7
authored
Dec 11, 2000
by
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changes a use of regex to ts_regex for consistency
parent
531c6a57
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
lib/python/OFS/SimpleItem.py
lib/python/OFS/SimpleItem.py
+4
-4
No files found.
lib/python/OFS/SimpleItem.py
View file @
17bc50f7
...
...
@@ -89,10 +89,10 @@ Aqueduct database adapters, etc.
This module can also be used as a simple template for implementing new
item types.
$Id: SimpleItem.py,v 1.
79 2000/09/05 20:52:4
7 brian Exp $'''
__version__
=
'$Revision: 1.
79
$'
[
11
:
-
2
]
$Id: SimpleItem.py,v 1.
80 2000/12/11 15:01:5
7 brian Exp $'''
__version__
=
'$Revision: 1.
80
$'
[
11
:
-
2
]
import
regex
,
sys
,
Globals
,
App
.
Management
,
Acquisition
,
App
.
Undo
import
ts_
regex
,
sys
,
Globals
,
App
.
Management
,
Acquisition
,
App
.
Undo
import
AccessControl.Role
,
AccessControl
.
Owned
,
App
.
Common
from
webdav.Resource
import
Resource
from
ExtensionClass
import
Base
...
...
@@ -211,7 +211,7 @@ class Item(Base, Resource, CopySource, App.Management.Tabs, Traversable,
self
,
client
=
None
,
REQUEST
=
{},
error_type
=
None
,
error_value
=
None
,
tb
=
None
,
error_tb
=
None
,
error_message
=
''
,
tagSearch
=
regex
.
compile
(
'[a-zA-Z]>'
).
search
):
tagSearch
=
ts_
regex
.
compile
(
'[a-zA-Z]>'
).
search
):
try
:
if
error_type
is
None
:
error_type
=
sys
.
exc_info
()[
0
]
...
...
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