Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZODB
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kirill Smelkov
ZODB
Commits
4e803728
Commit
4e803728
authored
Mar 18, 2004
by
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated / unified sha-bang as discussed on zope-dev
(distutils mungs it anyway, so it's just relevant for developers)
parent
00f6abf3
Changes
19
Show whitespace changes
Inline
Side-by-side
Showing
19 changed files
with
35 additions
and
21 deletions
+35
-21
src/scripts/analyze.py
src/scripts/analyze.py
+2
-1
src/scripts/checkbtrees.py
src/scripts/checkbtrees.py
+2
-1
src/scripts/fsdump.py
src/scripts/fsdump.py
+2
-1
src/scripts/fsrefs.py
src/scripts/fsrefs.py
+1
-1
src/scripts/fsstats.py
src/scripts/fsstats.py
+2
-1
src/scripts/fstail.py
src/scripts/fstail.py
+2
-1
src/scripts/fstest.py
src/scripts/fstest.py
+1
-1
src/scripts/migrate.py
src/scripts/migrate.py
+2
-1
src/scripts/netspace.py
src/scripts/netspace.py
+2
-1
src/scripts/parsezeolog.py
src/scripts/parsezeolog.py
+2
-1
src/scripts/repozo.py
src/scripts/repozo.py
+1
-1
src/scripts/space.py
src/scripts/space.py
+1
-1
src/scripts/timeout.py
src/scripts/timeout.py
+1
-1
src/scripts/zeopack.py
src/scripts/zeopack.py
+2
-1
src/scripts/zeoqueue.py
src/scripts/zeoqueue.py
+2
-1
src/scripts/zeoreplay.py
src/scripts/zeoreplay.py
+2
-1
src/scripts/zeoserverlog.py
src/scripts/zeoserverlog.py
+3
-2
src/scripts/zeoup.py
src/scripts/zeoup.py
+2
-1
src/scripts/zodbload.py
src/scripts/zodbload.py
+3
-2
No files found.
src/scripts/analyze.py
View file @
4e803728
#!python
#!/usr/bin/env python2.3
# Based on a transaction analyzer by Matt Kromer.
import
pickle
...
...
src/scripts/checkbtrees.py
View file @
4e803728
#!python
#!/usr/bin/env python2.3
"""Check the consistency of BTrees in a Data.fs
usage: checkbtrees.py data.fs
...
...
src/scripts/fsdump.py
View file @
4e803728
#!python
#!/usr/bin/env python2.3
"""Print a text summary of the contents of a FileStorage."""
from
ZODB.FileStorage.fsdump
import
fsdump
...
...
src/scripts/fsrefs.py
View file @
4e803728
#!
python
#!
/usr/bin/env python2.3
##############################################################################
#
...
...
src/scripts/fsstats.py
View file @
4e803728
#!python
#!/usr/bin/env python2.3
"""Print details statistics from fsdump output."""
import
re
...
...
src/scripts/fstail.py
View file @
4e803728
#!python
#!/usr/bin/env python2.3
##############################################################################
#
# Copyright (c) 2001, 2002 Zope Corporation and Contributors.
...
...
src/scripts/fstest.py
View file @
4e803728
#!
python
#!
/usr/bin/env python2.3
##############################################################################
#
...
...
src/scripts/migrate.py
View file @
4e803728
#!python
#!/usr/bin/env python2.3
##############################################################################
#
# Copyright (c) 2001, 2002, 2003 Zope Corporation and Contributors.
...
...
src/scripts/netspace.py
View file @
4e803728
#!python
#!/usr/bin/env python2.3
"""Report on the net size of objects counting subobjects.
usage: netspace.py [-P | -v] data.fs
...
...
src/scripts/parsezeolog.py
View file @
4e803728
#!python
#!/usr/bin/env python2.3
"""Parse the BLATHER logging generated by ZEO2.
An example of the log format is:
...
...
src/scripts/repozo.py
View file @
4e803728
#!
python
#!
/usr/bin/env python2.3
# repozo.py -- incremental and full backups of a Data.fs file.
#
...
...
src/scripts/space.py
View file @
4e803728
#!
/usr/bin/env python
#!
/usr/bin/env python2.3
"""Report on the space used by objects in a storage.
...
...
src/scripts/timeout.py
View file @
4e803728
#!
python
#!
/usr/bin/env python2.3
"""Transaction timeout test script.
...
...
src/scripts/zeopack.py
View file @
4e803728
#!python
#!/usr/bin/env python2.3
"""Connect to a ZEO server and ask it to pack.
Usage: zeopack.py [options]
...
...
src/scripts/zeoqueue.py
View file @
4e803728
#!python
#!/usr/bin/env python2.3
"""Report on the number of currently waiting clients in the ZEO queue.
Usage: %(PROGRAM)s [options] logfile
...
...
src/scripts/zeoreplay.py
View file @
4e803728
#!python
#!/usr/bin/env python2.3
"""Parse the BLATHER logging generated by ZEO, and optionally replay it.
Usage: zeointervals.py [options]
...
...
src/scripts/zeoserverlog.py
View file @
4e803728
#!python
#!/usr/bin/env python2.3
##############################################################################
#
# Copyright (c) 2003 Zope Corporation and Contributors.
...
...
@@ -140,7 +141,7 @@ Commands:
- wall time to verify
- average miliseconds to verify per object.
$Id: zeoserverlog.py,v 1.
4 2003/10/24 15:29:13 jeremy
Exp $
$Id: zeoserverlog.py,v 1.
5 2004/03/18 13:27:49 yuppie
Exp $
"""
import
datetime
,
sys
,
re
,
os
...
...
src/scripts/zeoup.py
View file @
4e803728
#!python
#!/usr/bin/env python2.3
"""Make sure a ZEO server is running.
usage: zeoup.py [options]
...
...
src/scripts/zodbload.py
View file @
4e803728
#!python
#!/usr/bin/env python2.3
##############################################################################
#
# Copyright (c) 2003 Zope Corporation and Contributors.
...
...
@@ -88,7 +89,7 @@ Usage: loadmail2 [options]
Specify the mailbox for getting input data.
$Id: zodbload.py,v 1.
4 2003/11/19 15:36:31 jeremy
Exp $
$Id: zodbload.py,v 1.
5 2004/03/18 13:27:49 yuppie
Exp $
"""
import
mailbox
...
...
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