gforge-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gforge-commits] gforge-plugin-scmcvs/include CVSPlugin.class, 1.8, 1.9


From: cbayle
Subject: [Gforge-commits] gforge-plugin-scmcvs/include CVSPlugin.class, 1.8, 1.9
Date: Wed, 28 Jul 2004 13:43:23 -0500

Update of /cvsroot/gforge/gforge-plugin-scmcvs/include
In directory db.perdue.net:/tmp/cvs-serv12938/include

Modified Files:
        CVSPlugin.class 
Log Message:
Use getSCMBox instead of plugin table


Index: CVSPlugin.class
===================================================================
RCS file: /cvsroot/gforge/gforge-plugin-scmcvs/include/CVSPlugin.class,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- CVSPlugin.class     26 Jul 2004 09:10:44 -0000      1.8
+++ CVSPlugin.class     28 Jul 2004 18:43:20 -0000      1.9
@@ -17,8 +17,8 @@
 
                 require_once('/etc/gforge/plugins/scmcvs/config.php') ;
                
-               $this->default_cvs_server = $default_cvs_server ;
-               $this->this_server = $this_server ;
+               //$this->default_cvs_server = $default_cvs_server ;
+               //$this->this_server = $this_server ;
                $this->enabled_by_default = $enabled_by_default ;
                
                $this->register () ;
@@ -44,9 +44,9 @@
                case "group_approved":
                        $this->group_approved ($params) ;
                        break;
-               case "groupmenu_scm":
-                       $this->display_groupmenu_scm ($params) ;
-                       break;
+//             case "groupmenu_scm":
+//                     $this->display_groupmenu_scm ($params) ;
+//                     break;
                case "cssstyle":
                        $this->cssstyle_scm ($params) ;
                        break;
@@ -281,8 +281,8 @@
        if ($project->enableAnonSCM()){
                echo $Language->getText('plugin_scmcvs', 'anoncvs');
                print " <p>
-                               <tt>cvs -d :pserver:anonymous@" . 
$this->GetGroupServer($group_id) . ":/cvsroot/".$project->getUnixName()." 
login</tt><br>
-                               <tt>cvs -d :pserver:anonymous@" . 
$this->GetGroupServer($group_id) . ":/cvsroot/".$project->getUnixName()." 
checkout <em>modulename</em></tt>
+                               <tt>cvs -d :pserver:anonymous@" . 
$project->getSCMBox() . ":/cvsroot/".$project->getUnixName()." login</tt><br>
+                               <tt>cvs -d :pserver:anonymous@" . 
$project->getSCMBox() . ":/cvsroot/".$project->getUnixName()." checkout 
<em>modulename</em></tt>
                         </p>" ;
         }
 
@@ -291,7 +291,7 @@
        echo $Language->getText('plugin_scmcvs', 'devcvs');
                print "<p>
                                 <tt>export CVS_RSH=ssh</tt><br>
-                               <tt>cvs -d :ext:<em>username</em>@" . 
$this->GetGroupServer($group_id) . ":/cvsroot/".$project->getUnixName()." 
checkout <em>modulename</em></tt>
+                               <tt>cvs -d :ext:<em>username</em>@" . 
$project->getSCMBox() . ":/cvsroot/".$project->getUnixName()." checkout 
<em>modulename</em></tt>
                                 </p>" ;
 
 ?>
@@ -430,15 +430,10 @@
         */
        function account_group_cvsweb_url($group_id) {
                $project =& group_get_object($group_id);
-               if ( $GLOBALS['sys_scm_single_host'] == '1' ) {
-                       $scm_server = $GLOBALS['sys_scm_host'];
-               } else {
-                       $scm_server = $this->GetGroupServer($group_id);
-               }
-               //return 
'http://'.$scm_server.'/cgi-bin/cvsweb?cvsroot=cvsroot/'.$project->getUnixName();
-               return 
'http://'.$scm_server.'/plugins/scmcvs/cvsweb.php/?cvsroot=cvsroot/'.$project->getUnixName();
+               return 
'http://'.$project->getSCMBox().'/plugins/scmcvs/cvsweb.php/?cvsroot=cvsroot/'.$project->getUnixName();
        }
 
+/*
        function display_groupmenu_scm($params) {
                $group_id = $params['group_id'] ;
                $project =& group_get_object($group_id);
@@ -454,6 +449,7 @@
                        (($params['toptab'] == $this->name) ? 
$params['selected']=(count($params['TITLES'])-1) : '' );
                }
        }
+*/
 
        function group_approved ($params) {
                $group_id = $params['group_id'] ;
@@ -467,6 +463,7 @@
                }
        }
 
+/*
        function GetDefaultServer () {
                return $this->default_cvs_server ;
        }
@@ -520,6 +517,7 @@
                $res = db_query($sql);
                db_commit () ;
        }
+*/
 
 }
 





reply via email to

[Prev in Thread] Current Thread [Next in Thread]