From 04116cc5dabb951023fb511fda0dc36956d6a84a Mon Sep 17 00:00:00 2001 From: Robert Kaiser Date: Fri, 18 Nov 2016 05:01:38 +0100 Subject: [PATCH] move actual application into a subdirectory so we can deliver other things in the same repository --- .gitignore | 1 + .htaccess => app/.htaccess | 0 KaiRoLogo-100x62.png => app/KaiRoLogo-100x62.png | Bin api.php => app/api.php | 0 authorize.php => app/authorize.php | 0 authsystem.css => app/authsystem.css | 0 authsystem.inc.php => app/authsystem.inc.php | 0 authsystem.js => app/authsystem.js | 0 authutils.php-class => app/authutils.php-class | 0 check.png => app/check.png | Bin index.php => app/index.php | 0 server.inc.php => app/server.inc.php | 0 token.php => app/token.php | 0 13 files changed, 1 insertion(+) create mode 100644 .gitignore rename .htaccess => app/.htaccess (100%) rename KaiRoLogo-100x62.png => app/KaiRoLogo-100x62.png (100%) rename api.php => app/api.php (100%) rename authorize.php => app/authorize.php (100%) rename authsystem.css => app/authsystem.css (100%) rename authsystem.inc.php => app/authsystem.inc.php (100%) rename authsystem.js => app/authsystem.js (100%) rename authutils.php-class => app/authutils.php-class (100%) rename check.png => app/check.png (100%) rename index.php => app/index.php (100%) rename server.inc.php => app/server.inc.php (100%) rename token.php => app/token.php (100%) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8d1c8b6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ + diff --git a/.htaccess b/app/.htaccess similarity index 100% rename from .htaccess rename to app/.htaccess diff --git a/KaiRoLogo-100x62.png b/app/KaiRoLogo-100x62.png similarity index 100% rename from KaiRoLogo-100x62.png rename to app/KaiRoLogo-100x62.png diff --git a/api.php b/app/api.php similarity index 100% rename from api.php rename to app/api.php diff --git a/authorize.php b/app/authorize.php similarity index 100% rename from authorize.php rename to app/authorize.php diff --git a/authsystem.css b/app/authsystem.css similarity index 100% rename from authsystem.css rename to app/authsystem.css diff --git a/authsystem.inc.php b/app/authsystem.inc.php similarity index 100% rename from authsystem.inc.php rename to app/authsystem.inc.php diff --git a/authsystem.js b/app/authsystem.js similarity index 100% rename from authsystem.js rename to app/authsystem.js diff --git a/authutils.php-class b/app/authutils.php-class similarity index 100% rename from authutils.php-class rename to app/authutils.php-class diff --git a/check.png b/app/check.png similarity index 100% rename from check.png rename to app/check.png diff --git a/index.php b/app/index.php similarity index 100% rename from index.php rename to app/index.php diff --git a/server.inc.php b/app/server.inc.php similarity index 100% rename from server.inc.php rename to app/server.inc.php diff --git a/token.php b/app/token.php similarity index 100% rename from token.php rename to app/token.php -- 2.35.3