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
6f6d3b0d
Commit
6f6d3b0d
authored
Nov 18, 2005
by
Andreas Jung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added
parent
4aea5adc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
0 deletions
+26
-0
utilities/fixheaders.py
utilities/fixheaders.py
+26
-0
No files found.
utilities/fixheaders.py
0 → 100644
View file @
6f6d3b0d
# Script to fix the header files to ZPL 2.1
import
os
for
dirpath
,
dirnames
,
filenames
in
os
.
walk
(
'.'
):
for
fname
in
filenames
:
base
,
ext
=
os
.
path
.
splitext
(
fname
)
if
not
ext
in
(
'.py'
,
'.c'
,
'.h'
):
continue
fullname
=
os
.
path
.
join
(
dirpath
,
fname
)
if
'.svn'
in
fullname
:
continue
data
=
open
(
fullname
).
read
()
changed
=
False
if
'Version 2.0 (ZPL)'
in
data
:
data
=
data
.
replace
(
'Version 2.0 (ZPL)'
,
'Version 2.1 (ZPL)'
)
changed
=
True
if
'(c) 2002 Zope Corporation'
in
data
:
data
=
data
.
replace
(
'(c) 2002 Zope Corporation'
,
'(c) 2002 Zope Corporation'
)
changed
=
True
print
fullname
,
changed
if
changed
:
open
(
fullname
,
'w'
).
write
(
data
)
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