diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2001-09-01 21:37:20 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2001-09-01 21:37:20 +0000 |
commit | d1ceee18aeb81bd90e66efc87f2fe03deaeff6ad (patch) | |
tree | 8c06e954f9557347d99b27bf000b4bc8cdc48756 /devel/p4db/files | |
parent | - update to 0.6.0 (diff) |
Add devel/p4db, a Web/Perforce Browser which allows you to browse
Perforce depots via the web as CVSweb does for CVS.
Notes
Notes:
svn path=/head/; revision=47296
Diffstat (limited to 'devel/p4db/files')
-rw-r--r-- | devel/p4db/files/patch-P4CGI.pm | 11 | ||||
-rw-r--r-- | devel/p4db/files/patch-P4DB.conf.sample | 44 |
2 files changed, 55 insertions, 0 deletions
diff --git a/devel/p4db/files/patch-P4CGI.pm b/devel/p4db/files/patch-P4CGI.pm new file mode 100644 index 000000000000..70bd6c6c20d4 --- /dev/null +++ b/devel/p4db/files/patch-P4CGI.pm @@ -0,0 +1,11 @@ +--- www/P4CGI.pm.orig Wed Dec 13 08:30:28 2000 ++++ www/P4CGI.pm Sun Sep 2 04:17:42 2001 +@@ -13,7 +13,7 @@ + + sub ConfigFileName() + { +- return "./P4DB.conf" ; # Change here to rename configuration file ++ return "../P4DB.conf" ; # Change here to rename configuration file + } + + use CGI ; diff --git a/devel/p4db/files/patch-P4DB.conf.sample b/devel/p4db/files/patch-P4DB.conf.sample new file mode 100644 index 000000000000..d2217c2497a1 --- /dev/null +++ b/devel/p4db/files/patch-P4DB.conf.sample @@ -0,0 +1,44 @@ +--- P4DB.conf.sample.orig Wed Dec 13 08:08:37 2000 ++++ P4DB.conf.sample Sun Sep 2 04:22:55 2001 +@@ -16,7 +16,7 @@ + ### ### + + ### Specify path to p4 program +- P4PATH: /home/fredric/bin/p4 ++ P4PATH: !!PREFIX!!/bin/p4 + + ### Specify path to icons (well, icon for 2.0) + # If this is modified, be sure to move image as well +@@ -30,8 +30,7 @@ + ### Set administrator(s) for P4DB. + # Data Format: <email address> <full name> + # One or more administrators can be specified. +- P4DB_ADMIN: MrDDuck@disney.com Donald Duck +- P4DB_ADMIN: MrMMouse@disney.com M. Mouse ++ P4DB_ADMIN: !!PERFORCE_USER!!@!!FQDN!! P4 admin + + ### ### + ### Variables to facilitate ports ### +@@ -71,8 +70,8 @@ + # See README.html for details about shortcut files + + SHORTCUT_FILE: ; No shortcuts +- SHORTCUT_FILE: ./P4DB.shortcuts.txt ; Sample shortcuts +- SHORTCUT_FILE: ./P4DB.shortcuts2.txt; Sample shortcuts 2 ++ SHORTCUT_FILE: ../P4DB.shortcuts.txt ; Sample shortcuts ++ SHORTCUT_FILE: ../P4DB.shortcuts2.txt; Sample shortcuts 2 + + ### ### + ### Specify depots ### +@@ -82,10 +81,8 @@ + # (no spaces in password, user or client). + # For password: '*' equals no password + # One depot per line +- DEPOT: localhost:1666 fredric fredric_client * ; My local depot +- DEPOT: p4:1666 fredric fredric_client1 passwrd ; At work ++ DEPOT: localhost:!!PERFORCE_PORT!! fredric fredric_client * ; My local depot + DEPOT: public.perforce.com:1666 fredric none * ; Perforce Public Depot +- DEPOT: NoSuch:1666 Anyuser anyClient aPassword ; Nonexisting, for test + + ### ### + ### Color schemes ### |