Skip to content

Commit

Permalink
commiting ownCloud 1.0 beta 1
Browse files Browse the repository at this point in the history
  • Loading branch information
Frank Karlitschek committed Mar 10, 2010
1 parent ef20281 commit 16f3bd4
Show file tree
Hide file tree
Showing 136 changed files with 54,754 additions and 0 deletions.
43 changes: 43 additions & 0 deletions config/config.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<?php


// Owner
$CONFIG_FOOTEROWNERNAME = 'Frank Karlitschek';
$CONFIG_FOOTEROWNEREMAIL = 'karlitschek@kde.org';


// ADMIN ACCOUNT
$CONFIG_ADMINLOGIN = 'frank';
$CONFIG_ADMINPASSWORD = '123';


// DB Config
$CONFIG_DBHOST = 'localhost';
$CONFIG_DBNAME = 'owncloud';
$CONFIG_DBUSER = 'owncloud';
$CONFIG_DBPWD = 'owncloud12345';

// directories
$CONFIG_DATADIRECTORY = '/www/testy';
$CONFIG_DOCUMENTROOT = '/www/owncloud/htdocs';


// force SSL
$CONFIG_HTTPFORCESSL = false;


// other
$CONFIG_DATEFORMAT = 'j M Y G:i';

// plugins
//$CONFIG_LOADPLUGINS = 'music test';
$CONFIG_LOADPLUGINS = '';


// set the right include path
// don´t change unless you know what you are doing
set_include_path(get_include_path().PATH_SEPARATOR.$CONFIG_DOCUMENTROOT.PATH_SEPARATOR.$CONFIG_DOCUMENTROOT.'/inc');

require_once('lib_base.php');

?>
80 changes: 80 additions & 0 deletions css/default.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
body,th,td,ul,li,a,div,p,pre {color:#333333; font-family:Verdana,"Bitstream Vera Sans",Arial,Helvetica,Sans,"Bitstream Vera Serif"; font-size:9.0pt;}

.nametext a {color:#333333; font-size:8pt; font-weight:bold; text-decoration:none;}
.highlighttext {color:#333333; font-size:9pt; font-weight:bold; text-decoration:none;}
.datetext {color:#333333; font-size:7pt;}
.sizetext {color:#333333; font-size:7pt;}
.footer {color:#999999; text-align:center; font-size:9pt;}
.hint {color:#AAAAAA; text-align:center; font-size:8pt;}
.hint a{color:#AAAAAA; text-align:center; font-size:8pt;}

.formstyle {
font-weight:normal;
font-size: 8.0pt;
color: #555555;
background-color: #FFFFFF;
border: 1px solid #DDDDDD;
padding:0px;
margin:0px;
}

.loginform {
background-color: #EEEEEE;
}

.browser {
background-color: #EEEEEE;
}

.browserline {
background-color: #EEEEEE;
}

.browserline:hover {
background-color: #DDDDDD;
}


.navigationitem1 {
background-color: #EEEEEE;
color:#555555;
font-size:9pt;
font-weight:bold;
}

.navigationitem1 a{
text-decoration:none;
}

.navigationitem1:hover {
background-color: #EEEEEE;
}

.navigationitem {
background-color: #EEEEEE;
}

.navigationitem:hover {
background-color: #DDDDDD;
}

.navigationselected td {
background-color: #DDDDDD;
}

.navigationitem a {
text-decoration:none;
color: #333333;
font-size: 8.0pt;
}

.navigationitemselected a {
text-decoration:none;
color: #333333;
font-size: 8.0pt;
font-weight:bold;
}




4 changes: 4 additions & 0 deletions docs/INSTALL
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
nothing here yet



29 changes: 29 additions & 0 deletions docs/TODO
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@

- remove dependency on mysql. replace with sqlite to make it easier to install

- simplify installation

- write installation documentation

- better ajax web gui

- internationalizing of the web gui

- write support for 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 an automatic backup system to store files an a second device/server

- create a usermanagement to share data




39 changes: 39 additions & 0 deletions docs/owncloud.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@

SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";

CREATE TABLE IF NOT EXISTS `locks` (
`token` varchar(255) NOT NULL DEFAULT '',
`path` varchar(200) NOT NULL DEFAULT '',
`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`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

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`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=15 ;


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`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;


Binary file added img/arrow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/dots.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/icons/folder.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/icons/other.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/owncloud-logo-small.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/owncloud-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 16f3bd4

Please sign in to comment.