X Tutup
Skip to content

Commit 16f3bd4

Browse files
author
Frank Karlitschek
committed
commiting ownCloud 1.0 beta 1
1 parent ef20281 commit 16f3bd4

File tree

136 files changed

+54754
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

136 files changed

+54754
-0
lines changed

config/config.php

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<?php
2+
3+
4+
// Owner
5+
$CONFIG_FOOTEROWNERNAME = 'Frank Karlitschek';
6+
$CONFIG_FOOTEROWNEREMAIL = 'karlitschek@kde.org';
7+
8+
9+
// ADMIN ACCOUNT
10+
$CONFIG_ADMINLOGIN = 'frank';
11+
$CONFIG_ADMINPASSWORD = '123';
12+
13+
14+
// DB Config
15+
$CONFIG_DBHOST = 'localhost';
16+
$CONFIG_DBNAME = 'owncloud';
17+
$CONFIG_DBUSER = 'owncloud';
18+
$CONFIG_DBPWD = 'owncloud12345';
19+
20+
// directories
21+
$CONFIG_DATADIRECTORY = '/www/testy';
22+
$CONFIG_DOCUMENTROOT = '/www/owncloud/htdocs';
23+
24+
25+
// force SSL
26+
$CONFIG_HTTPFORCESSL = false;
27+
28+
29+
// other
30+
$CONFIG_DATEFORMAT = 'j M Y G:i';
31+
32+
// plugins
33+
//$CONFIG_LOADPLUGINS = 'music test';
34+
$CONFIG_LOADPLUGINS = '';
35+
36+
37+
// set the right include path
38+
// don´t change unless you know what you are doing
39+
set_include_path(get_include_path().PATH_SEPARATOR.$CONFIG_DOCUMENTROOT.PATH_SEPARATOR.$CONFIG_DOCUMENTROOT.'/inc');
40+
41+
require_once('lib_base.php');
42+
43+
?>

css/default.css

Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
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;}
2+
3+
.nametext a {color:#333333; font-size:8pt; font-weight:bold; text-decoration:none;}
4+
.highlighttext {color:#333333; font-size:9pt; font-weight:bold; text-decoration:none;}
5+
.datetext {color:#333333; font-size:7pt;}
6+
.sizetext {color:#333333; font-size:7pt;}
7+
.footer {color:#999999; text-align:center; font-size:9pt;}
8+
.hint {color:#AAAAAA; text-align:center; font-size:8pt;}
9+
.hint a{color:#AAAAAA; text-align:center; font-size:8pt;}
10+
11+
.formstyle {
12+
font-weight:normal;
13+
font-size: 8.0pt;
14+
color: #555555;
15+
background-color: #FFFFFF;
16+
border: 1px solid #DDDDDD;
17+
padding:0px;
18+
margin:0px;
19+
}
20+
21+
.loginform {
22+
background-color: #EEEEEE;
23+
}
24+
25+
.browser {
26+
background-color: #EEEEEE;
27+
}
28+
29+
.browserline {
30+
background-color: #EEEEEE;
31+
}
32+
33+
.browserline:hover {
34+
background-color: #DDDDDD;
35+
}
36+
37+
38+
.navigationitem1 {
39+
background-color: #EEEEEE;
40+
color:#555555;
41+
font-size:9pt;
42+
font-weight:bold;
43+
}
44+
45+
.navigationitem1 a{
46+
text-decoration:none;
47+
}
48+
49+
.navigationitem1:hover {
50+
background-color: #EEEEEE;
51+
}
52+
53+
.navigationitem {
54+
background-color: #EEEEEE;
55+
}
56+
57+
.navigationitem:hover {
58+
background-color: #DDDDDD;
59+
}
60+
61+
.navigationselected td {
62+
background-color: #DDDDDD;
63+
}
64+
65+
.navigationitem a {
66+
text-decoration:none;
67+
color: #333333;
68+
font-size: 8.0pt;
69+
}
70+
71+
.navigationitemselected a {
72+
text-decoration:none;
73+
color: #333333;
74+
font-size: 8.0pt;
75+
font-weight:bold;
76+
}
77+
78+
79+
80+

docs/INSTALL

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
nothing here yet
2+
3+
4+

docs/TODO

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
2+
- remove dependency on mysql. replace with sqlite to make it easier to install
3+
4+
- simplify installation
5+
6+
- write installation documentation
7+
8+
- better ajax web gui
9+
10+
- internationalizing of the web gui
11+
12+
- write support for web gui
13+
14+
- themed webgui to match plasma theme
15+
16+
- plugin system
17+
- store kde settings
18+
- store my music collection
19+
- integration with kolab server
20+
21+
- create a versioning backend
22+
23+
- create an automatic backup system to store files an a second device/server
24+
25+
- create a usermanagement to share data
26+
27+
28+
29+

docs/owncloud.sql

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
2+
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
3+
4+
CREATE TABLE IF NOT EXISTS `locks` (
5+
`token` varchar(255) NOT NULL DEFAULT '',
6+
`path` varchar(200) NOT NULL DEFAULT '',
7+
`expires` int(11) NOT NULL DEFAULT '0',
8+
`owner` varchar(200) DEFAULT NULL,
9+
`recursive` int(11) DEFAULT '0',
10+
`writelock` int(11) DEFAULT '0',
11+
`exclusivelock` int(11) NOT NULL DEFAULT '0',
12+
PRIMARY KEY (`token`),
13+
UNIQUE KEY `token` (`token`),
14+
KEY `path` (`path`),
15+
KEY `path_2` (`path`),
16+
KEY `path_3` (`path`,`token`),
17+
KEY `expires` (`expires`)
18+
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
19+
20+
CREATE TABLE IF NOT EXISTS `log` (
21+
`id` int(11) NOT NULL AUTO_INCREMENT,
22+
`timestamp` int(11) NOT NULL,
23+
`user` varchar(250) NOT NULL,
24+
`type` int(11) NOT NULL,
25+
`message` varchar(250) NOT NULL,
26+
PRIMARY KEY (`id`)
27+
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=15 ;
28+
29+
30+
CREATE TABLE IF NOT EXISTS `properties` (
31+
`path` varchar(255) NOT NULL DEFAULT '',
32+
`name` varchar(120) NOT NULL DEFAULT '',
33+
`ns` varchar(120) NOT NULL DEFAULT 'DAV:',
34+
`value` text,
35+
PRIMARY KEY (`path`,`name`,`ns`),
36+
KEY `path` (`path`)
37+
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
38+
39+

img/arrow.png

214 Bytes
Loading

img/dots.png

204 Bytes
Loading

img/icons/folder.png

386 Bytes
Loading

img/icons/other.png

431 Bytes
Loading

img/owncloud-logo-small.png

12.5 KB
Loading

0 commit comments

Comments
 (0)
X Tutup