- #!/usr/bin/perl -w
- # -*- perl -*-
- use P4CGI ;
- use strict ;
- #
- #################################################################
- # CONFIGURATION INFORMATION
- # All config info should be in P4CGI.pm
- #
- #################################################################
- #
- # List all branches
- #
- #################################################################
-
- my $SORTBY=&P4CGI::cgi()->param("SORTBY") ;
- $SORTBY="DATE" unless defined $SORTBY ;
-
- my $otherSort ;
- if($SORTBY eq "NAME") {
- $otherSort = &P4CGI::ahref("SORTBY=DATE",
- "Sort by date") ;
- }
- else {
- $otherSort = &P4CGI::ahref("SORTBY=NAME",
- "Sort by name") ;
- } ;
-
- # Print header
- print "",
- &P4CGI::start_page("List of branches",
- &P4CGI::ul_list("<b>Name</b> -- view branch info",
- $otherSort)) ;
-
- # Get list of all brances
-
- local *P4 ;
- print "",
- &P4CGI::start_table(""),
- &P4CGI::table_header("Name/view branch","Updated","Description") ;
-
- &P4CGI::p4call(*P4, "branches" );
- my %rows ;
- while(<P4>) {
- if(/^Branch (\S+)\s+(\S+)\s+\'([^\']*)\'/) {
- my ($name,$cdate,$desc) = ($1,$2,$3) ;
- $name = &P4CGI::ahref(-url => "branchView.cgi" ,
- "BRANCH=$name",
- $name) ;
- my $s = $SORTBY eq "NAME"? uc("$name $cdate") : "$cdate $name" ;
- $rows{$s} = &P4CGI::table_row($name,$cdate,$desc) ;
- }
- }
- my $s ;
- if($SORTBY eq "NAME") {
- foreach $s (sort keys %rows) {
- print $rows{$s} ;
- }
- }
- else {
- foreach $s (sort { $b cmp $a } keys %rows) {
- print $rows{$s} ;
- }
- } ;
- print "",
- &P4CGI::end_table(""),
- &P4CGI::end_page("") ;
- #
- # That's all folks
- #
# |
Change |
User |
Description |
Committed |
|
#1
|
3624 |
Mitch Stuart |
Branch //public/perforce/utils to //guest/mitch_stuart/perforce/utils |
22 years ago
|
|
//guest/perforce_software/utils/p4db/P4DB_2.01/branchList.cgi |
#1
|
1884 |
rmg |
Update to the current (2.01) P4DB. |
23 years ago
|
|