[Fusionforge-commits] r7252 - in branches/Branch_4_7/gforge: debian plugins/scmcvs/etc/plugins/scmcvs plugins/scmsvn/etc/plugins/scmsvn

Roland Mas lolando at libremir.placard.fr.eu.org
Thu Mar 26 17:01:13 CET 2009


Author: lolando
Date: 2009-03-26 17:01:12 +0100 (Thu, 26 Mar 2009)
New Revision: 7252

Modified:
   branches/Branch_4_7/gforge/debian/changelog
   branches/Branch_4_7/gforge/plugins/scmcvs/etc/plugins/scmcvs/config.php
   branches/Branch_4_7/gforge/plugins/scmsvn/etc/plugins/scmsvn/config.php
Log:
Fixed a few error messages appearing above wiki pages

Modified: branches/Branch_4_7/gforge/debian/changelog
===================================================================
--- branches/Branch_4_7/gforge/debian/changelog	2009-03-26 15:29:08 UTC (rev 7251)
+++ branches/Branch_4_7/gforge/debian/changelog	2009-03-26 16:01:12 UTC (rev 7252)
@@ -1,10 +1,12 @@
-gforge (4.7.2-1+1) experimental; urgency=low
+gforge (4.7.2-2) experimental; urgency=low
 
   * Removed automatic creation of the Mediawiki users on session opening
     (since it caused problems and users are authenticated on the fly when
     they access a MW page).
+  * Also removed a few error messages that were displayed above the wiki
+    pages.
 
- -- Roland Mas <lolando at debian.org>  Thu, 26 Mar 2009 16:25:50 +0100
+ -- Roland Mas <lolando at debian.org>  Thu, 26 Mar 2009 17:00:09 +0100
 
 gforge (4.7.2-1) experimental; urgency=low
 

Modified: branches/Branch_4_7/gforge/plugins/scmcvs/etc/plugins/scmcvs/config.php
===================================================================
--- branches/Branch_4_7/gforge/plugins/scmcvs/etc/plugins/scmcvs/config.php	2009-03-26 15:29:08 UTC (rev 7251)
+++ branches/Branch_4_7/gforge/plugins/scmcvs/etc/plugins/scmcvs/config.php	2009-03-26 16:01:12 UTC (rev 7252)
@@ -1,6 +1,10 @@
 <?php
  
-$default_cvs_server = "cvs." . $GLOBALS['sys_default_domain'];
+if (isset ($GLOBALS['sys_scm_host'])) {
+	$default_cvs_server = "cvs." . $GLOBALS['sys_default_domain'];
+} else {
+	$default_cvs_server = 'scm';
+}
 $enabled_by_default = true;
 $cvs_binary_version='1.12';
 $use_ssl=false;

Modified: branches/Branch_4_7/gforge/plugins/scmsvn/etc/plugins/scmsvn/config.php
===================================================================
--- branches/Branch_4_7/gforge/plugins/scmsvn/etc/plugins/scmsvn/config.php	2009-03-26 15:29:08 UTC (rev 7251)
+++ branches/Branch_4_7/gforge/plugins/scmsvn/etc/plugins/scmsvn/config.php	2009-03-26 16:01:12 UTC (rev 7252)
@@ -2,7 +2,11 @@
  
 //$default_svn_server = $GLOBALS['sys_default_domain'] ;
 //$default_svn_server = "svn." . $GLOBALS['sys_default_domain'] ;
-$default_svn_server = $GLOBALS['sys_scm_host'];
+if (isset ($GLOBALS['sys_scm_host'])) {
+	$default_svn_server = $GLOBALS['sys_scm_host'];
+} else {
+	$default_svn_server = 'scm';
+}
 $use_ssh = false;
 $use_dav = true;
 $use_ssl = true;




More information about the Fusionforge-commits mailing list