[evolvis-commits] r10045: *** empty log message ***↵

mirabilos at evolvis.org mirabilos at evolvis.org
Thu Feb 24 17:36:39 CET 2011


Author: mirabilos
Date: 2011-02-24 17:36:39 +0100 (Thu, 24 Feb 2011)
New Revision: 10045

Removed:
   trunk/gforge_base/evolvisforge-5.1/gforge/www/tracker/add-fields.php
   trunk/gforge_base/evolvisforge-5.1/gforge/www/tracker/search-fields.php
Log:
*** empty log message ***


Deleted: trunk/gforge_base/evolvisforge-5.1/gforge/www/tracker/add-fields.php
===================================================================
--- trunk/gforge_base/evolvisforge-5.1/gforge/www/tracker/add-fields.php	2011-02-24 16:36:38 UTC (rev 10044)
+++ trunk/gforge_base/evolvisforge-5.1/gforge/www/tracker/add-fields.php	2011-02-24 16:36:39 UTC (rev 10045)
@@ -1,40 +0,0 @@
-<?php
-/**
- * add-fields.php - extra_fields code to submit a new artifact with fields 
- * defined by admin
- *
- * Copyright 2004 (c) Anthony J. Pugliese
- *
- * @version   $Id$
- *
- * This file is part of GForge.
- *
- * GForge is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * GForge is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with GForge; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  US
- */
-$result=$ath->getSelectionBoxes();
-$rows=db_numrows($result);
-if($result &&$rows > 0) {
-	foreach($_POST as$KEY=>$post_value){
-	$value_array[]=$post_value;
-	}
-$post_value=implode(",",$value_array);
-}
-$post_value=explode(",",$post_value);
-	for ($i=0; $i < $rows; $i++){
-	$value[$i]=$post_value[$i+4];
-	$ah->createExtraFields($value[$i]);
-	}
-?>
-

Deleted: trunk/gforge_base/evolvisforge-5.1/gforge/www/tracker/search-fields.php
===================================================================
--- trunk/gforge_base/evolvisforge-5.1/gforge/www/tracker/search-fields.php	2011-02-24 16:36:38 UTC (rev 10044)
+++ trunk/gforge_base/evolvisforge-5.1/gforge/www/tracker/search-fields.php	2011-02-24 16:36:39 UTC (rev 10045)
@@ -1,44 +0,0 @@
-<?php
-/**
- * search-fields.php - code to handle browsing with fields configured by admin
- *
- * Copyright 2004 (c) Anthony J. Pugliese
- *
- * @version   $Id$
- *
- * This file is part of GForge.
- *
- * GForge is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * GForge is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with GForge; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  US
- */
-$result=$ath->getSelectionBoxes();
-$rows=db_numrows($result);
-if($result &&$rows > 0)  {
-	foreach($_POST as $KEY=>$post_value){
-	$value_array[]=$post_value;
-	}
-	if (!empty($post_value)) {
-		$post_value=implode(",",$value_array);
-		$post_value=explode(",",$post_value);
-		$source=$post_value[0];
-		if ($source == 'custom'){
-		for ($i=0; $i < $rows; $i++) {
-			$value[$i]=$post_value[$i+6];
-		}
-		}
-	
-	}
-}
-?>
-



More information about the evolvis-commits mailing list