aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorJakob Sack <mail@jakobsack.de>2011-03-01 23:20:16 +0100
committerJakob Sack <mail@jakobsack.de>2011-03-01 23:20:16 +0100
commit132695ceb1d7ab0e4bfbb141e9e9639111dd25b5 (patch)
treef53fabcefd89a1e5bbeda9a2c2d2fff6683139d4 /docs
parent1fd39a52fa750878e7d70fba63c099f252095762 (diff)
downloadnextcloud-server-132695ceb1d7ab0e4bfbb141e9e9639111dd25b5.tar.gz
nextcloud-server-132695ceb1d7ab0e4bfbb141e9e9639111dd25b5.zip
Start of the refactoring. Commit is quite big because I forgot to use git right from the beginning. Sorry.
Diffstat (limited to 'docs')
-rw-r--r--docs/FAQs8
-rw-r--r--docs/INSTALL30
-rw-r--r--docs/TODO16
-rw-r--r--docs/owncloud.sql61
4 files changed, 0 insertions, 115 deletions
diff --git a/docs/FAQs b/docs/FAQs
deleted file mode 100644
index f1e6149c48c..00000000000
--- a/docs/FAQs
+++ /dev/null
@@ -1,8 +0,0 @@
-1. I am not able to upload large files. Is that not supported by ownCloud?
- Ofcourse it is supported. The problem lies with the PHP configuration. If you have access to php.ini file (which resides in /etc/php5/apache2 folder) then you can fix this issue by changing the following lines :
- ; Maximum allowed size for uploaded files.
- upload_max_filesize = 2M
-
- Also look for the following line:
- post_max_size= 2M
- In place of 2M write the maximum size you want to be allowed. \ No newline at end of file
diff --git a/docs/INSTALL b/docs/INSTALL
deleted file mode 100644
index 970af77574c..00000000000
--- a/docs/INSTALL
+++ /dev/null
@@ -1,30 +0,0 @@
-also see http://owncloud.org/index.php/Installation
-
-== PREREQUISITS ==
-php5
-sqlite or mysql
-
-== SETUP ==
-Place owncloud in a subdirectory of your web server. Go to that directory with
-a web browser and the first run wizard should take it from there.
-Check out config/config.sample.php for details if you want to set config.php manually.
-
-== Database ==
---SQLite--
-When sqlite is chosen. If you are having trouble make sure that the line
-
-extension=sqlite.so
-
-appears in your php.ini
-
---MySQL--
-when mysql is chosen, you can let ownCloud create the database and user when you have administrator credentials for mysql.
-
-
-Please help improving this documentation!
-Create merge requests at gitorious.org/owncloud .
-
-Read the FAQs for some common problems.
-For support check out our IRC at Freenode : Channel #owncloud
-Mailing list at https://mail.kde.org/mailman/listinfo/owncloud
-
diff --git a/docs/TODO b/docs/TODO
deleted file mode 100644
index 0bbca7c2dab..00000000000
--- a/docs/TODO
+++ /dev/null
@@ -1,16 +0,0 @@
-- internationalizing of the web gui
-
-- themed webgui to match plasma theme
-
-- plugin system
- - store kde settings
- - store my music collection
- - integration with kolab server
-
-- create a versioning backend
-
-- create a usermanagement to share data
-
-
-
-
diff --git a/docs/owncloud.sql b/docs/owncloud.sql
deleted file mode 100644
index 94e500bf004..00000000000
--- a/docs/owncloud.sql
+++ /dev/null
@@ -1,61 +0,0 @@
-CREATE TABLE IF NOT EXISTS `locks` (
- `token` varchar(255) NOT NULL DEFAULT '',
- `path` varchar(200) NOT NULL DEFAULT '',
- `created` int(11) NOT NULL DEFAULT '0',
- `modified` int(11) NOT NULL DEFAULT '0',
- `expires` int(11) NOT NULL DEFAULT '0',
- `owner` varchar(200) DEFAULT NULL,
- `recursive` int(11) DEFAULT '0',
- `writelock` int(11) DEFAULT '0',
- `exclusivelock` int(11) NOT NULL DEFAULT '0',
- PRIMARY KEY (`token`),
- UNIQUE KEY `token` (`token`),
- KEY `path` (`path`),
- KEY `path_2` (`path`),
- KEY `path_3` (`path`,`token`),
- KEY `expires` (`expires`)
-);
-
-CREATE TABLE IF NOT EXISTS `log` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `timestamp` int(11) NOT NULL,
- `user` varchar(250) NOT NULL,
- `type` int(11) NOT NULL,
- `message` varchar(250) NOT NULL,
- PRIMARY KEY (`id`)
-);
-
-
-CREATE TABLE IF NOT EXISTS `properties` (
- `path` varchar(255) NOT NULL DEFAULT '',
- `name` varchar(120) NOT NULL DEFAULT '',
- `ns` varchar(120) NOT NULL DEFAULT 'DAV:',
- `value` text,
- PRIMARY KEY (`path`,`name`,`ns`),
- KEY `path` (`path`)
-);
-
-CREATE TABLE IF NOT EXISTS `users` (
-`user_id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY ,
-`user_name` VARCHAR( 64 ) NOT NULL ,
-`user_name_clean` VARCHAR( 64 ) NOT NULL ,
-`user_password` VARCHAR( 340) NOT NULL ,
-UNIQUE (
-`user_name` ,
-`user_name_clean`
-)
-);
-
-CREATE TABLE IF NOT EXISTS `groups` (
-`group_id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY ,
-`group_name` VARCHAR( 64 ) NOT NULL ,
-UNIQUE (
-`group_name`
-)
-);
-
-CREATE TABLE IF NOT EXISTS `user_group` (
-`user_group_id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY ,
-`user_id` VARCHAR( 64 ) NOT NULL ,
-`group_id` VARCHAR( 64 ) NOT NULL
-) \ No newline at end of file