Name | Modified | Size |
---|---|---|
.. | ||
check_group.pl | 16 years ago | 301 B |
combine_views.py | 2 years ago | 13 KB |
deepimport.pl | 17 years ago | 4 KB |
downmove.pl | 11 years ago | 2 KB |
fstat2csv-out.csv | 3 years ago | 873 KB |
fstat2csv.py | 3 years ago | 837 B |
itest.pl | about a year ago | 17 KB |
itest.txt | 9 years ago | 18 KB |
jobmerge.rb | 12 years ago | 3 KB |
oneliners.txt | 17 years ago | 1 KB |
p4find.bat | 20 years ago | 175 B |
p4review.py | 17 years ago | 20 KB |
p4rollback.pl | 17 years ago | 7 KB |
p4rollbacktestdata.bat | 17 years ago | 902 B |
p4_protect.py | 7 years ago | 4 KB |
pd_cleanup.pl | 17 years ago | 3 KB |
protexp.pl | 16 years ago | 5 KB |
pw_cleanup.pl | 16 years ago | 901 B |
pw_group.pl | 16 years ago | 913 B |
speccomm.pl | 16 years ago | 6 KB |
Change | User | Description | Committed |
---|---|---|---|
29823 | Sam Stafford | Check for "tag" typos and exit immediately rather than swapping in a null value (which ju...st results in cryptic errors falling out of p4). « |
about a year ago |
29778 | Sam Stafford | Make tags work with @=CHANGE. | 2 years ago |
29769 | Sam Stafford | combine_views.py | 2 years ago |
28434 | Sam Stafford | Script to dump fstat metadata into CSV format, with sample output. | 3 years ago |
23840 | Sam Stafford | Fix up groups. | 7 years ago |
23839 | Sam Stafford | Rearrange things a bit so this is a bit more useful as a Python module. | 7 years ago |
23832 | Sam Stafford | Fix up some comments. | 7 years ago |
23831 | Sam Stafford | Toy script to simulate effects of a protection table client-side. | 7 years ago |
20091 | Sam Stafford | Fix up "tag" command to handle ranges. Tags must be all alphabetic, as this mad...e the regex easier. « |
9 years ago |
19970 | Sam Stafford | Add a "tag" command so we can run commands at the changelist level, which is extra useful... for stuff involving moves. This doesn't create a Perforce label/tag, just creates a named alias in memory for the latest changelist at that time. Tags are cleared by the "cd" command just like the internal edit counter. E.g.: add foo edit foo tag apple edit foo branch foo@apple bar branch foo#2 baz test equal bar baz « |
9 years ago |
18739 | Sam Stafford | A selection of itest scripts. | 9 years ago |
15893 | Sam Stafford | Add "test mbase" to test move base. Note that this will return an F on old server...s that don't support "integ -Or". « |
10 years ago |
15889 | Sam Stafford | Pull in Pascal's changes. | 10 years ago |
10209 | Sam Stafford | Tidying up output -- no [path] in the output if no path is set. | 11 years ago |
8643 | Sam Stafford | Include flags (if any) after test output -- very handy for comparing results with -2 vs -...3! « |
11 years ago |
8516 | Sam Stafford | Fix dbstat harvesting in "merge" command. | 11 years ago |
8515 | Sam Stafford | Add -dbstat option to add db.integed pos+scan numbers (for most recent merge/test integ c...ommand) to test output. « |
11 years ago |
8513 | Sam Stafford | Remove deliberate breakage used for testing purposes. | 11 years ago |
8512 | Sam Stafford | Sample trigger script for detecting inter-codeline renames and downgrading them to non-ato...mic add/deletes on the fly. « | 11 years ago |
8510 | Sam Stafford | Added 'p4 copy' to itest. | 11 years ago |
8281 | Sam Stafford | A script I use for testing integrate. Probably not of interest to too many other... people, but I wanted a quick way to link to it. « |
12 years ago |
8250 | Sam Stafford | Report "warnings" if no "errors" given. If "p4 print" fails because there's no fi...le, that's a "warning", and that's something worth bubbling up since it usually indicates a configuration error in the script. « |
12 years ago |
8249 | Sam Stafford | Remove debug code. | 12 years ago |
8248 | Sam Stafford | Jobmerge trigger script. | 12 years ago |
7416 | Sam Stafford | Trigger to check for group membership before deletion. | 16 years ago |
7415 | Sam Stafford | Add option to limit trigger to a particular group. | 16 years ago |
7414 | Sam Stafford | Couple of scripts to enforce password rules. | 16 years ago |
7389 | Sam Stafford | Quote the "p4 dirs" argument just in case it has spaces. | 16 years ago |
7386 | Sam Stafford | Add $dirs variable to protexp.pl trigger. This is to reduce multiple wildcard usa...ge in protections tables; a line like: write group * //depot/*/bin/... can be rewritten as: write group * $dirs(//depot/*)/bin/... and expanded by the trigger to: write group * //depot/A/bin/... write group * //depot/B/bin/... write group * //depot/C/bin/... « |
16 years ago |
7342 | Sam Stafford | A little bit of rearranging to open the possibility of adding new variables to expand.&nb...sp; No functional change. « |
16 years ago |
7290 | Sam Stafford | Fix typo in comments. | 16 years ago |
7289 | Sam Stafford | Inspired by a thread on perforce-user the other day, here is a trigger that enables varia...ble expansion in the protection table. If we were to install this in the Public Depot and it worked correctly, we could replace about 95% of our (user-visible) protection table with the single line: write user $user(registered) * //guest/$user/... In my limited testing so far it seems to work pretty nicely, but I wouldn't put it in production just yet. « |
16 years ago |
7230 | Sam Stafford | Improved debugging. Commands executed and their output now get written to a log... file in the script root if there are any unexpected problems, so along with the terse error message the user sees the admin has more detailed info to try to debug the problem with. « |
16 years ago |
7228 | Sam Stafford | Catch forms that are updated with comments only; now you don't need to make trivial "real..." changes to a form to get comment changes to be saved. Also made change descriptions a little nicer and redid how the workspace is managed (no more +w files, now there's a 'p4 edit' during the form-in). « |
16 years ago |
7226 | Sam Stafford | Experimental trigger for preserving comments and whitespace in forms. Seems to work... pretty well on clients and protections; haven't tested much on other spec types. « |
16 years ago |
6443 | Sam Stafford | Fix a bug with running rollback while there are already files in the default changelist.&...nbsp; The regex I was using to clear the files from the "change -o" output was malformed. Seems to work now. Thanks go to Doreen for finding the bug, and to Matt for his superior regex skillz. « |
17 years ago |
6378 | Sam Stafford | Fix the P4Web URL. | 17 years ago |
6377 | Sam Stafford | Testing review daemon change. | 17 years ago |
6369 | Sam Stafford |
Attempt to modify review daemon to add P4Web link to emails. Needs testing. |
17 years ago |
6347 | Sam Stafford | User/client cleanup script. | 17 years ago |
6324 | Sam Stafford | Update deepimport to not require "admin" access; the description is now copied in on subm...it rather than set after the fact, and the user/client/date info is also copied into the description. « |
17 years ago |
6323 | Sam Stafford | A little script to import history from a remote depot. | 17 years ago |
6296 | Sam Stafford | Add pointer to rollback in p4rollback.pl comments, replacing the exhortation for other use...rs to come up with their own API-based implementations. « | 17 years ago |
6258 | Sam Stafford | Added a new oneliner. | 17 years ago |
6255 | Sam Stafford | Fixing up the comments a bit. Had some annoying typos, and the -D options needed so...me clarification. « |
17 years ago |
6228 | Sam Stafford | Fix limit check to make sure only one email is sent in trigger mode. | 17 years ago |
6227 | Sam Stafford | Review daemon/trigger, working. | 17 years ago |
6226 | Sam Stafford | Fixes. | 17 years ago |
6225 | Sam Stafford | Modifying the review daemon to work as a commit trigger. | 17 years ago |
6224 | Sam Stafford | Branching review daemon for tweaking. | 17 years ago |