Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZEO
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
ZEO
Commits
8c6abda3
Commit
8c6abda3
authored
20 years ago
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
61df0040
4-nxd
master
5.2.2
5.2.1
5.2.1.dev0
5.2.0
5.1.2
5.1.1
5.1.0
5.0.4
5.0.3
5.0.2
5.0.1
5.0.0
5.0.0b0
5.0.0a2
5.0.0a1
5.0.0a0
4.3.1
4.3.0
4.2.1
4.2.0
4.2.0b1
4.1.0
4.0.0b1
No related merge requests found
Changes
19
Hide 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 @
8c6abda3
#!python
#!/usr/bin/env python2.3
# Based on a transaction analyzer by Matt Kromer.
import
pickle
...
...
This diff is collapsed.
Click to expand it.
src/scripts/checkbtrees.py
View file @
8c6abda3
#!python
#!/usr/bin/env python2.3
"""Check the consistency of BTrees in a Data.fs
usage: checkbtrees.py data.fs
...
...
This diff is collapsed.
Click to expand it.
src/scripts/fsdump.py
View file @
8c6abda3
#!python
#!/usr/bin/env python2.3
"""Print a text summary of the contents of a FileStorage."""
from
ZODB.FileStorage.fsdump
import
fsdump
...
...
This diff is collapsed.
Click to expand it.
src/scripts/fsrefs.py
View file @
8c6abda3
#!
python
#!
/usr/bin/env python2.3
##############################################################################
#
...
...
This diff is collapsed.
Click to expand it.
src/scripts/fsstats.py
View file @
8c6abda3
#!python
#!/usr/bin/env python2.3
"""Print details statistics from fsdump output."""
import
re
...
...
This diff is collapsed.
Click to expand it.
src/scripts/fstail.py
View file @
8c6abda3
#!python
#!/usr/bin/env python2.3
##############################################################################
#
# Copyright (c) 2001, 2002 Zope Corporation and Contributors.
...
...
This diff is collapsed.
Click to expand it.
src/scripts/fstest.py
View file @
8c6abda3
#!
python
#!
/usr/bin/env python2.3
##############################################################################
#
...
...
This diff is collapsed.
Click to expand it.
src/scripts/migrate.py
View file @
8c6abda3
#!python
#!/usr/bin/env python2.3
##############################################################################
#
# Copyright (c) 2001, 2002, 2003 Zope Corporation and Contributors.
...
...
This diff is collapsed.
Click to expand it.
src/scripts/netspace.py
View file @
8c6abda3
#!python
#!/usr/bin/env python2.3
"""Report on the net size of objects counting subobjects.
usage: netspace.py [-P | -v] data.fs
...
...
This diff is collapsed.
Click to expand it.
src/scripts/parsezeolog.py
View file @
8c6abda3
#!python
#!/usr/bin/env python2.3
"""Parse the BLATHER logging generated by ZEO2.
An example of the log format is:
...
...
This diff is collapsed.
Click to expand it.
src/scripts/repozo.py
View file @
8c6abda3
#!
python
#!
/usr/bin/env python2.3
# repozo.py -- incremental and full backups of a Data.fs file.
#
...
...
This diff is collapsed.
Click to expand it.
src/scripts/space.py
View file @
8c6abda3
#!
/usr/bin/env python
#!
/usr/bin/env python2.3
"""Report on the space used by objects in a storage.
...
...
This diff is collapsed.
Click to expand it.
src/scripts/timeout.py
View file @
8c6abda3
#!
python
#!
/usr/bin/env python2.3
"""Transaction timeout test script.
...
...
This diff is collapsed.
Click to expand it.
src/scripts/zeopack.py
View file @
8c6abda3
#!python
#!/usr/bin/env python2.3
"""Connect to a ZEO server and ask it to pack.
Usage: zeopack.py [options]
...
...
This diff is collapsed.
Click to expand it.
src/scripts/zeoqueue.py
View file @
8c6abda3
#!python
#!/usr/bin/env python2.3
"""Report on the number of currently waiting clients in the ZEO queue.
Usage: %(PROGRAM)s [options] logfile
...
...
This diff is collapsed.
Click to expand it.
src/scripts/zeoreplay.py
View file @
8c6abda3
#!python
#!/usr/bin/env python2.3
"""Parse the BLATHER logging generated by ZEO, and optionally replay it.
Usage: zeointervals.py [options]
...
...
This diff is collapsed.
Click to expand it.
src/scripts/zeoserverlog.py
View file @
8c6abda3
#!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
...
...
This diff is collapsed.
Click to expand it.
src/scripts/zeoup.py
View file @
8c6abda3
#!python
#!/usr/bin/env python2.3
"""Make sure a ZEO server is running.
usage: zeoup.py [options]
...
...
This diff is collapsed.
Click to expand it.
src/scripts/zodbload.py
View file @
8c6abda3
#!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
...
...
This diff is collapsed.
Click to expand it.
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