summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: f26ba86)
raw | patch | inline | side by side (parent: f26ba86)
author | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 18 Sep 2007 16:45:02 +0000 (16:45 +0000) | ||
committer | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 18 Sep 2007 16:45:02 +0000 (16:45 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@7317 594d385d-05f5-0310-b6e9-bd551577e9d8
debian/rules | patch | blob | history | |
gen_function_list.php | [deleted file] | patch | blob | history |
diff --git a/debian/rules b/debian/rules
index 8f0f654320fb42ae73ac8817c76354257b052194..23bcd0f62f3b31d0d9f5ce5bcb2d07232224a437 100755 (executable)
--- a/debian/rules
+++ b/debian/rules
-rm -rf debian/gosa/usr/share/gosa/gen_pdf_help.sh
-rm -rf debian/gosa/usr/share/gosa/patch-stamp
-rm -rf debian/gosa/usr/share/gosa/gen_online_help.sh
- -rm -rf debian/gosa/usr/share/gosa/gen_function_list.php
-rm -rf debian/gosa/usr/share/gosa/update.sh
-rm -rf debian/gosa/usr/share/doc/gosa/guide*
sed 's%"CONFIG_TEMPLATE_DIR", "../contrib/"%"CONFIG_TEMPLATE_DIR", "/usr/share/doc/gosa/contrib/"%g' debian/gosa/usr/share/gosa/include/functions.inc > debian/gosa/usr/share/gosa/include/functions.inc.new; \
diff --git a/gen_function_list.php b/gen_function_list.php
--- a/gen_function_list.php
+++ /dev/null
@@ -1,46 +0,0 @@
-#!/usr/bin/php -q
-<?php
-/*
-/*
- * This code is part of GOsa (https://gosa.gonicus.de)
- * Copyright (C) 2005 Jan Wenzel
- *
- * This program 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.
- *
- * This program 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 this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
-
-$current_dir=trim(`pwd`);
-include($current_dir.'/include/functions_test.inc');
-
-// Build Array of called functions
-$array= test_defined_functions();
-
-// Write List to file
-$file= $current_dir.'/include/functions_list.inc';
-
-// If file does not exist, create it
-if(!file_exists($file)) {
- touch($file);
-}
-
-// Write Array to file
-if(is_writable($file)) {
- // Open filehandle
- $fh= fopen($file,'w');
- if($fh != null) {
- fwrite($fh,"return(\n".var_export($array,true).");");
- fclose($fh);
- }
-}
-?>