#!/usr/bin/env python #============================================================================== # Copyright and license info is available in the LICENSE file included with # the Server Deployment Package (SDP), and also available online: # https://swarm.workshop.perforce.com/projects/perforce-software-sdp/view/main/LICENSE #------------------------------------------------------------------------------ """ Usage: SetCFOpts form-in change "python /p4/common/bin/triggers/SetCFOptions-forced.py %formfile%" This script is designed to run as a form in trigger on a change form. It changes the 'Type:' field from 'public' to 'restricted', thus making changelist metadata (description, etc.) available only to users who have at least list access on files affected by any given changelist. It requires a p4d 2010.2+ server. Side Effects: This might have an impact on performance of 'p4 changes' commands. It is intended for environments that value security of changelist- related metadata. """ import os import re import string import sys import random import shutil tempfile = str(random.random()) input = open(sys.argv[1], "r") output = open(tempfile, "w") restricted = 0 for line in input.readlines(): if re.search ("^Type:\s+restricted", line): input.close() output.close() os.remove(tempfile) sys.exit(0) if re.search ("^Type:\s+public", line): line = re.sub ("public", "restricted", line) restricted = 1 if re.search ("^Description:", line): if not restricted: line = re.sub ("^Description:", "Type:\trestricted\n\nDescription:", line) output.write(line) input.close() output.close() os.remove(sys.argv[1]) shutil.copy(tempfile, sys.argv[1]) os.remove(tempfile) sys.exit(0)
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#2 | 26681 | Robert Cowham |
Removing Deprecated folder - if people want it they can look at past history! All functions have been replaced with standard functionality such as built in LDAP, or default change type. Documentation added for the contents of Unsupported folder. Changes to scripts/triggers are usually to insert tags for inclusion in ASCII Doctor docs. |
||
#1 | 26652 | Robert Cowham |
This is Tom's change: Introduced new 'Unsupported' directory to clarify that some files in the SDP are not officially supported. These files are samples for illustration, to provide examples, or are deprecated but not yet ready for removal from the package. The Maintenance and many SDP triggers have been moved under here, along with other SDP scripts and triggers. Added comments to p4_vars indicating that it should not be edited directly. Added reference to an optional site_global_vars file that, if it exists, will be sourced to provide global user settings without needing to edit p4_vars. As an exception to the refactoring, the totalusers.py Maintenance script will be moved to indicate that it is supported. Removed settings to support long-sunset P4Web from supported structure. Structure under new .../Unsupported folder is: Samples/bin Sample scripts. Samples/triggers Sample trigger scripts. Samples/triggers/tests Sample trigger script tests. Samples/broker Sample broker filter scripts. Deprecated/triggers Deprecated triggers. To Do in a subsequent change: Make corresponding doc changes. |
||
//guest/perforce_software/sdp/dev/Server/Unix/p4/common/bin/triggers/deprecated/SetCFOptions-forced.py | |||||
#1 | 18936 | C. Thomas Tyler |
De-emphasizing changeType=restricted, including deprecating associated triggers. |
||
//guest/perforce_software/sdp/dev/Server/Unix/p4/common/bin/triggers/SetCFOptions-forced.py | |||||
#4 | 16029 | C. Thomas Tyler |
Routine merge to dev from main using: p4 merge -b perforce_software-sdp-dev |
||
#3 | 13586 | C. Thomas Tyler |
Routine merge down from main -> dev. Trivial merges, all resolved with 'p4 resolve -as.' |
||
#2 | 12107 | C. Thomas Tyler |
Routine merge down from 'main' to 'dev', resolved with 'p4 resolve -as'. |
||
#1 | 10638 | C. Thomas Tyler | Populate perforce_software-sdp-dev. | ||
//guest/perforce_software/sdp/main/Server/Unix/p4/common/bin/triggers/SetCFOptions-forced.py | |||||
#1 | 10148 | C. Thomas Tyler | Promoted the Perforce Server Deployment Package to The Workshop. |