From f0d3215bccb60b1f91468d4812944e4f26ee139c Mon Sep 17 00:00:00 2001 From: paulr Date: Mon, 28 Mar 2011 09:08:59 +1100 Subject: [PATCH] initial commit --- .project | 11 +++++++++++ doc/README | 4 ++++ lib/lib.php | 21 +++++++++++++++++++++ lib/plugins/packages.php | 3 +++ 4 files changed, 39 insertions(+), 0 deletions(-) create mode 100644 .project create mode 100644 doc/README create mode 100644 lib/lib.php create mode 100644 lib/plugins/packages.php create mode 100644 www/index.php diff --git a/.project b/.project new file mode 100644 index 0000000..5975073 --- /dev/null +++ b/.project @@ -0,0 +1,11 @@ + + + glcas + + + + + + + + diff --git a/doc/README b/doc/README new file mode 100644 index 0000000..f4eb95f --- /dev/null +++ b/doc/README @@ -0,0 +1,4 @@ +GLCAS +===== + +Generic Linux Central Administration System diff --git a/lib/lib.php b/lib/lib.php new file mode 100644 index 0000000..5e7cf40 --- /dev/null +++ b/lib/lib.php @@ -0,0 +1,21 @@ + 0) { + require_once("$basedir/plugins/$file"); + //echo "required $basedir/plugins/$file\n"; + } + } + } +} else { + echo "No plugins dir ($basedir/plugins), continuing without\n"; +} + + +?> \ No newline at end of file diff --git a/lib/plugins/packages.php b/lib/plugins/packages.php new file mode 100644 index 0000000..15c5adc --- /dev/null +++ b/lib/plugins/packages.php @@ -0,0 +1,3 @@ + \ No newline at end of file diff --git a/www/index.php b/www/index.php new file mode 100644 index 0000000..e69de29 -- 1.7.0.4