]> source.dussan.org Git - nextcloud-server.git/commitdiff
New folder: /docs
authorJakob Sack <kde@jakobsack.de>
Sat, 16 Apr 2011 07:48:49 +0000 (09:48 +0200)
committerJakob Sack <kde@jakobsack.de>
Sat, 16 Apr 2011 07:48:49 +0000 (09:48 +0200)
20 files changed:
TODO [deleted file]
docs/TODO [new file with mode: 0644]
docs/skeleton/admin.php [new file with mode: 0644]
docs/skeleton/appinfo/app.sample.php [new file with mode: 0644]
docs/skeleton/css/skeleton.css [new file with mode: 0644]
docs/skeleton/css/special.css [new file with mode: 0644]
docs/skeleton/img/put_images_here.txt [new file with mode: 0644]
docs/skeleton/index.php [new file with mode: 0644]
docs/skeleton/js/app.js [new file with mode: 0644]
docs/skeleton/templates/admin.php [new file with mode: 0644]
docs/skeleton/templates/index.php [new file with mode: 0644]
skeleton/admin.php [deleted file]
skeleton/appinfo/app.sample.php [deleted file]
skeleton/css/skeleton.css [deleted file]
skeleton/css/special.css [deleted file]
skeleton/img/put_images_here.txt [deleted file]
skeleton/index.php [deleted file]
skeleton/js/app.js [deleted file]
skeleton/templates/admin.php [deleted file]
skeleton/templates/index.php [deleted file]

diff --git a/TODO b/TODO
deleted file mode 100644 (file)
index 1165ed7..0000000
--- a/TODO
+++ /dev/null
@@ -1,2 +0,0 @@
-Database:
-    - Stored procedures!
diff --git a/docs/TODO b/docs/TODO
new file mode 100644 (file)
index 0000000..1165ed7
--- /dev/null
+++ b/docs/TODO
@@ -0,0 +1,2 @@
+Database:
+    - Stored procedures!
diff --git a/docs/skeleton/admin.php b/docs/skeleton/admin.php
new file mode 100644 (file)
index 0000000..f237e84
--- /dev/null
@@ -0,0 +1,56 @@
+<?php
+
+/**
+* ownCloud - Sample application
+*
+* @author Jakob Sack
+* @copyright 2011 Jakob Sack kde@jakobsack.de
+*
+* This library is free software; you can redistribute it and/or
+* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
+* License as published by the Free Software Foundation; either
+* version 3 of the License, or any later version.
+*
+* This library 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 AFFERO GENERAL PUBLIC LICENSE for more details.
+*
+* You should have received a copy of the GNU Affero General Public
+* License along with this library.  If not, see <http://www.gnu.org/licenses/>.
+*
+*/
+
+// Do not prepare the file system (for demonstration purpose)
+// We HAVE TO set this var before including base.php
+$RUNTIME_NOSETUPFS = true;
+
+// Init owncloud
+require_once('../lib/base.php');
+
+// We need the file system although we said do not load it! Do it by hand now
+OC_UTIL::setupFS();
+
+// We load OC_TEMPLATE, too. This one is not loaded by base
+oc_require( 'template.php' );
+
+// The user should have admin rights. This is an admin page!
+if( !OC_USER::isLoggedIn() || !OC_USER::ingroup( $_SESSION['username'], 'admin' )){
+       // Bad boy! Go to the very first page of owncloud
+       header( "Location: ".OC_HELPER::linkTo( "index.php" ));
+       exit();
+}
+
+// Do some crazy Stuff over here
+$myvar = 2;
+$myarray = array( "foo" => array( 0, 1, 2 ), "bar" => "baz" );
+
+// Preparing for output!
+$tmpl = new OC_TEMPLATE( "skeleton", "admin", "admin" ); // Programname, template, mode
+// Assign the vars
+$tmpl->assign( "var", $myvar );
+$tmpl->assign( "array", $myarray );
+// Print page
+$tmpl->printPage();
+
+?>
diff --git a/docs/skeleton/appinfo/app.sample.php b/docs/skeleton/appinfo/app.sample.php
new file mode 100644 (file)
index 0000000..12db715
--- /dev/null
@@ -0,0 +1,15 @@
+<?php
+/*
+ * This file is required. It makes owncloud aware of the app.
+ */
+
+// Hello, we are here
+OC_APP::register( array( "id" => "skeleton", "name" => "Files", "order" => 1000 ));
+
+// Add application to navigation
+OC_UTIL::addNavigationEntry( array( "id" => "skeleton_index", "order" => 1000, "href" => OC_HELPER::linkTo( "skeleton", "index.php" ), "icon" => OC_HELPER::imagePath( "skeleton", "app.png" ), "name" => "Example app" ));
+
+// Add an admin page
+OC_UTIL::addAdminPage( array( "order" => 1, "href" => OC_HELPER::linkTo( "skeleton", "admin.php" ), "name" => "Example app options" ));
+
+?>
diff --git a/docs/skeleton/css/skeleton.css b/docs/skeleton/css/skeleton.css
new file mode 100644 (file)
index 0000000..aa68a8b
--- /dev/null
@@ -0,0 +1,4 @@
+/*
+ * To include this css file, call "OC_UTIL::addStyle( "skeleton", "skeleton" )"
+ * in your app.                                       (appname)   (cssname)
+ */
\ No newline at end of file
diff --git a/docs/skeleton/css/special.css b/docs/skeleton/css/special.css
new file mode 100644 (file)
index 0000000..8fd7591
--- /dev/null
@@ -0,0 +1,3 @@
+/*
+ * If you want to you can use more css files ...
+ */
diff --git a/docs/skeleton/img/put_images_here.txt b/docs/skeleton/img/put_images_here.txt
new file mode 100644 (file)
index 0000000..8d1c8b6
--- /dev/null
@@ -0,0 +1 @@
diff --git a/docs/skeleton/index.php b/docs/skeleton/index.php
new file mode 100644 (file)
index 0000000..25a9f02
--- /dev/null
@@ -0,0 +1,64 @@
+<?php
+
+/**
+* ownCloud - ajax frontend
+*
+* @author Robin Appelman
+* @copyright 2010 Robin Appelman icewind1991@gmail.com
+*
+* This library is free software; you can redistribute it and/or
+* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
+* License as published by the Free Software Foundation; either
+* version 3 of the License, or any later version.
+*
+* This library 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 AFFERO GENERAL PUBLIC LICENSE for more details.
+*
+* You should have received a copy of the GNU Affero General Public
+* License along with this library.  If not, see <http://www.gnu.org/licenses/>.
+*
+*/
+
+
+// Init owncloud
+require_once('../lib/base.php');
+oc_require( 'template.php' );
+
+// Check if we are a user
+if( !OC_USER::isLoggedIn()){
+       header( "Location: ".OC_HELPER::linkTo( "index.php" ));
+       exit();
+}
+
+// Load the files we need
+OC_UTIL::addStyle( "files", "files" );
+OC_UTIL::addScript( "files", "files" );
+
+// Load the files
+$dir = isset( $_GET['dir'] ) ? $_GET['dir'] : '';
+
+$files = array();
+foreach( OC_FILES::getdirectorycontent( $dir ) as $i ){
+       $i["date"] = date( $CONFIG_DATEFORMAT, $i["mtime"] );
+       $files[] = $i;
+}
+
+// Make breadcrumb
+$breadcrumb = array();
+$pathtohere = "/";
+foreach( explode( "/", $dir ) as $i ){
+       if( $i != "" ){
+               $pathtohere .= "$i/";
+               $breadcrumb[] = array( "dir" => $pathtohere, "name" => $i );
+       }
+}
+
+// return template
+$tmpl = new OC_TEMPLATE( "files", "index", "user" );
+$tmpl->assign( "files", $files );
+$tmpl->assign( "breadcrumb", $breadcrumb );
+$tmpl->printPage();
+
+?>
diff --git a/docs/skeleton/js/app.js b/docs/skeleton/js/app.js
new file mode 100644 (file)
index 0000000..5d5b668
--- /dev/null
@@ -0,0 +1,3 @@
+// Include this file whenever you need it. A simple
+// "OC_UTIL::addScript( "skeleton", "app" )" will do this.
+// Put your jquery-Stuff here
diff --git a/docs/skeleton/templates/admin.php b/docs/skeleton/templates/admin.php
new file mode 100644 (file)
index 0000000..63fcd5c
--- /dev/null
@@ -0,0 +1,8 @@
+<?php
+/*
+ * Template for files admin page
+ *
+ * See index.php for details
+ */
+?>
+<h1>Admin</h1>
diff --git a/docs/skeleton/templates/index.php b/docs/skeleton/templates/index.php
new file mode 100644 (file)
index 0000000..fb0544e
--- /dev/null
@@ -0,0 +1,12 @@
+<?php
+/*
+ * Template for files
+ */
+?>
+<h1>Skeleton</h1>
+
+<?php foreach($_["array"] as $item): ?>
+       <p><?php echo $item; ?></p>
+<?php endforeach; ?>
+
+<?php echo $_["anothervar"]; ?>
diff --git a/skeleton/admin.php b/skeleton/admin.php
deleted file mode 100644 (file)
index f237e84..0000000
+++ /dev/null
@@ -1,56 +0,0 @@
-<?php
-
-/**
-* ownCloud - Sample application
-*
-* @author Jakob Sack
-* @copyright 2011 Jakob Sack kde@jakobsack.de
-*
-* This library is free software; you can redistribute it and/or
-* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
-* License as published by the Free Software Foundation; either
-* version 3 of the License, or any later version.
-*
-* This library 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 AFFERO GENERAL PUBLIC LICENSE for more details.
-*
-* You should have received a copy of the GNU Affero General Public
-* License along with this library.  If not, see <http://www.gnu.org/licenses/>.
-*
-*/
-
-// Do not prepare the file system (for demonstration purpose)
-// We HAVE TO set this var before including base.php
-$RUNTIME_NOSETUPFS = true;
-
-// Init owncloud
-require_once('../lib/base.php');
-
-// We need the file system although we said do not load it! Do it by hand now
-OC_UTIL::setupFS();
-
-// We load OC_TEMPLATE, too. This one is not loaded by base
-oc_require( 'template.php' );
-
-// The user should have admin rights. This is an admin page!
-if( !OC_USER::isLoggedIn() || !OC_USER::ingroup( $_SESSION['username'], 'admin' )){
-       // Bad boy! Go to the very first page of owncloud
-       header( "Location: ".OC_HELPER::linkTo( "index.php" ));
-       exit();
-}
-
-// Do some crazy Stuff over here
-$myvar = 2;
-$myarray = array( "foo" => array( 0, 1, 2 ), "bar" => "baz" );
-
-// Preparing for output!
-$tmpl = new OC_TEMPLATE( "skeleton", "admin", "admin" ); // Programname, template, mode
-// Assign the vars
-$tmpl->assign( "var", $myvar );
-$tmpl->assign( "array", $myarray );
-// Print page
-$tmpl->printPage();
-
-?>
diff --git a/skeleton/appinfo/app.sample.php b/skeleton/appinfo/app.sample.php
deleted file mode 100644 (file)
index 12db715..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-<?php
-/*
- * This file is required. It makes owncloud aware of the app.
- */
-
-// Hello, we are here
-OC_APP::register( array( "id" => "skeleton", "name" => "Files", "order" => 1000 ));
-
-// Add application to navigation
-OC_UTIL::addNavigationEntry( array( "id" => "skeleton_index", "order" => 1000, "href" => OC_HELPER::linkTo( "skeleton", "index.php" ), "icon" => OC_HELPER::imagePath( "skeleton", "app.png" ), "name" => "Example app" ));
-
-// Add an admin page
-OC_UTIL::addAdminPage( array( "order" => 1, "href" => OC_HELPER::linkTo( "skeleton", "admin.php" ), "name" => "Example app options" ));
-
-?>
diff --git a/skeleton/css/skeleton.css b/skeleton/css/skeleton.css
deleted file mode 100644 (file)
index aa68a8b..0000000
+++ /dev/null
@@ -1,4 +0,0 @@
-/*
- * To include this css file, call "OC_UTIL::addStyle( "skeleton", "skeleton" )"
- * in your app.                                       (appname)   (cssname)
- */
\ No newline at end of file
diff --git a/skeleton/css/special.css b/skeleton/css/special.css
deleted file mode 100644 (file)
index 8fd7591..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-/*
- * If you want to you can use more css files ...
- */
diff --git a/skeleton/img/put_images_here.txt b/skeleton/img/put_images_here.txt
deleted file mode 100644 (file)
index 8d1c8b6..0000000
+++ /dev/null
@@ -1 +0,0 @@
diff --git a/skeleton/index.php b/skeleton/index.php
deleted file mode 100644 (file)
index 25a9f02..0000000
+++ /dev/null
@@ -1,64 +0,0 @@
-<?php
-
-/**
-* ownCloud - ajax frontend
-*
-* @author Robin Appelman
-* @copyright 2010 Robin Appelman icewind1991@gmail.com
-*
-* This library is free software; you can redistribute it and/or
-* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
-* License as published by the Free Software Foundation; either
-* version 3 of the License, or any later version.
-*
-* This library 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 AFFERO GENERAL PUBLIC LICENSE for more details.
-*
-* You should have received a copy of the GNU Affero General Public
-* License along with this library.  If not, see <http://www.gnu.org/licenses/>.
-*
-*/
-
-
-// Init owncloud
-require_once('../lib/base.php');
-oc_require( 'template.php' );
-
-// Check if we are a user
-if( !OC_USER::isLoggedIn()){
-       header( "Location: ".OC_HELPER::linkTo( "index.php" ));
-       exit();
-}
-
-// Load the files we need
-OC_UTIL::addStyle( "files", "files" );
-OC_UTIL::addScript( "files", "files" );
-
-// Load the files
-$dir = isset( $_GET['dir'] ) ? $_GET['dir'] : '';
-
-$files = array();
-foreach( OC_FILES::getdirectorycontent( $dir ) as $i ){
-       $i["date"] = date( $CONFIG_DATEFORMAT, $i["mtime"] );
-       $files[] = $i;
-}
-
-// Make breadcrumb
-$breadcrumb = array();
-$pathtohere = "/";
-foreach( explode( "/", $dir ) as $i ){
-       if( $i != "" ){
-               $pathtohere .= "$i/";
-               $breadcrumb[] = array( "dir" => $pathtohere, "name" => $i );
-       }
-}
-
-// return template
-$tmpl = new OC_TEMPLATE( "files", "index", "user" );
-$tmpl->assign( "files", $files );
-$tmpl->assign( "breadcrumb", $breadcrumb );
-$tmpl->printPage();
-
-?>
diff --git a/skeleton/js/app.js b/skeleton/js/app.js
deleted file mode 100644 (file)
index 5d5b668..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-// Include this file whenever you need it. A simple
-// "OC_UTIL::addScript( "skeleton", "app" )" will do this.
-// Put your jquery-Stuff here
diff --git a/skeleton/templates/admin.php b/skeleton/templates/admin.php
deleted file mode 100644 (file)
index 63fcd5c..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-<?php
-/*
- * Template for files admin page
- *
- * See index.php for details
- */
-?>
-<h1>Admin</h1>
diff --git a/skeleton/templates/index.php b/skeleton/templates/index.php
deleted file mode 100644 (file)
index fb0544e..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-<?php
-/*
- * Template for files
- */
-?>
-<h1>Skeleton</h1>
-
-<?php foreach($_["array"] as $item): ?>
-       <p><?php echo $item; ?></p>
-<?php endforeach; ?>
-
-<?php echo $_["anothervar"]; ?>