From: Jakob Sack Date: Sat, 16 Apr 2011 07:48:49 +0000 (+0200) Subject: New folder: /docs X-Git-Tag: v3.0~267^2~558^2~156 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=abe09d25ce6229f9b5e3084d650eb24d585a72ea;p=nextcloud-server.git New folder: /docs --- diff --git a/TODO b/TODO deleted file mode 100644 index 1165ed7e72a..00000000000 --- a/TODO +++ /dev/null @@ -1,2 +0,0 @@ -Database: - - Stored procedures! diff --git a/docs/TODO b/docs/TODO new file mode 100644 index 00000000000..1165ed7e72a --- /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 index 00000000000..f237e84d852 --- /dev/null +++ b/docs/skeleton/admin.php @@ -0,0 +1,56 @@ +. +* +*/ + +// 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 index 00000000000..12db7154c2b --- /dev/null +++ b/docs/skeleton/appinfo/app.sample.php @@ -0,0 +1,15 @@ + "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 index 00000000000..aa68a8be867 --- /dev/null +++ b/docs/skeleton/css/skeleton.css @@ -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 index 00000000000..8fd75917bf2 --- /dev/null +++ b/docs/skeleton/css/special.css @@ -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 index 00000000000..8d1c8b69c3f --- /dev/null +++ b/docs/skeleton/img/put_images_here.txt @@ -0,0 +1 @@ + diff --git a/docs/skeleton/index.php b/docs/skeleton/index.php new file mode 100644 index 00000000000..25a9f0297dc --- /dev/null +++ b/docs/skeleton/index.php @@ -0,0 +1,64 @@ +. +* +*/ + + +// 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 index 00000000000..5d5b668eeb5 --- /dev/null +++ b/docs/skeleton/js/app.js @@ -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 index 00000000000..63fcd5cd39f --- /dev/null +++ b/docs/skeleton/templates/admin.php @@ -0,0 +1,8 @@ + +

Admin

diff --git a/docs/skeleton/templates/index.php b/docs/skeleton/templates/index.php new file mode 100644 index 00000000000..fb0544e76ed --- /dev/null +++ b/docs/skeleton/templates/index.php @@ -0,0 +1,12 @@ + +

Skeleton

+ + +

+ + + diff --git a/skeleton/admin.php b/skeleton/admin.php deleted file mode 100644 index f237e84d852..00000000000 --- a/skeleton/admin.php +++ /dev/null @@ -1,56 +0,0 @@ -. -* -*/ - -// 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 index 12db7154c2b..00000000000 --- a/skeleton/appinfo/app.sample.php +++ /dev/null @@ -1,15 +0,0 @@ - "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 index aa68a8be867..00000000000 --- a/skeleton/css/skeleton.css +++ /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 index 8fd75917bf2..00000000000 --- a/skeleton/css/special.css +++ /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 index 8d1c8b69c3f..00000000000 --- a/skeleton/img/put_images_here.txt +++ /dev/null @@ -1 +0,0 @@ - diff --git a/skeleton/index.php b/skeleton/index.php deleted file mode 100644 index 25a9f0297dc..00000000000 --- a/skeleton/index.php +++ /dev/null @@ -1,64 +0,0 @@ -. -* -*/ - - -// 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 index 5d5b668eeb5..00000000000 --- a/skeleton/js/app.js +++ /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 index 63fcd5cd39f..00000000000 --- a/skeleton/templates/admin.php +++ /dev/null @@ -1,8 +0,0 @@ - -

Admin

diff --git a/skeleton/templates/index.php b/skeleton/templates/index.php deleted file mode 100644 index fb0544e76ed..00000000000 --- a/skeleton/templates/index.php +++ /dev/null @@ -1,12 +0,0 @@ - -

Skeleton

- - -

- - -