Skip to content

Commit

Permalink
Merge pull request #1 from dhamaniasad/devel
Browse files Browse the repository at this point in the history
Devel
  • Loading branch information
dhamaniasad committed Mar 2, 2014
2 parents aa8a5a3 + c6bb815 commit 092f752
Show file tree
Hide file tree
Showing 7,888 changed files with 287,046 additions and 2 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
13 changes: 11 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,11 @@
eyeos
=====
### eyeOS

##### Version 2.5

###### Published under GNU Affero General Public License, version 3

eyeOS is a web desktop following the cloud computing concept that seeks to enable collaboration and communication among users. It is mainly written in PHP, XML, and JavaScript. It is a private-cloud application platform with a web-based desktop interface. Commonly called a cloud desktop because of its unique user interface, eyeOS delivers a whole desktop from the cloud with file management, personal management information tools, collaborative tools and with the integration of the client’s applications.

eyeOS released version 2.5 on May 17,2011, which was the last release of the product under an open source license.

I am attempting to fix the bugs left behind by the eyeOS team in this release as I find them, and then later add to it.
1 change: 1 addition & 0 deletions eyeos/.htaccess
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
deny from all
37 changes: 37 additions & 0 deletions eyeos/apps/about/about.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<?php
/*
* eyeos - The Open Source Cloud's Web Desktop
* Version 2.0
* Copyright (C) 2007 - 2010 eyeos Team
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU Affero General Public License version 3 as published by the
* Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
* details.
*
* You should have received a copy of the GNU Affero General Public License
* version 3 along with this program in the file "LICENSE". If not, see
* <http://www.gnu.org/licenses/agpl-3.0.txt>.
*
* See www.eyeos.org for more details. All requests should be sent to [email protected]
*
* The interactive user interfaces in modified source and object code versions
* of this program must display Appropriate Legal Notices, as required under
* Section 5 of the GNU Affero General Public License version 3.
*
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
* these Appropriate Legal Notices must retain the display of the "Powered by
* eyeos" logo and retain the original copyright notice. If the display of the
* logo is not reasonably feasible for technical reasons, the Appropriate Legal Notices
* must display the words "Powered by eyeos" and retain the original copyright notice.
*/

abstract class AboutApplication extends EyeosApplicationExecutable {

}

?>
17 changes: 17 additions & 0 deletions eyeos/apps/about/info.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?xml version="1.0"?>
<meta>
<entry key="eyeos.application.name">about</entry>
<entry key="eyeos.application.author">eyeOS Team</entry>
<entry key="eyeos.application.version">1.0</entry>
<entry key="eyeos.application.description">About eyeOS</entry>
<entry key="eyeos.application.license">AGPL</entry>
<entry key="eyeos.application.category">Dev</entry>
<entry key="eyeos.application.systemParameters" type="array">
<entry key="listable">false</entry>
<entry key="owner">root</entry>
<entry key="group">users</entry>
<entry key="permissions">---x--x--x</entry>
<entry key="anonymous">false</entry>
<entry key="suid">false</entry>
</entry>
</meta>
42 changes: 42 additions & 0 deletions eyeos/apps/addressbook/addressbook.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<?php
/*
* eyeos - The Open Source Cloud's Web Desktop
* Version 2.0
* Copyright (C) 2007 - 2010 eyeos Team
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU Affero General Public License version 3 as published by the
* Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
* details.
*
* You should have received a copy of the GNU Affero General Public License
* version 3 along with this program in the file "LICENSE". If not, see
* <http://www.gnu.org/licenses/agpl-3.0.txt>.
*
* See www.eyeos.org for more details. All requests should be sent to [email protected]
*
* The interactive user interfaces in modified source and object code versions
* of this program must display Appropriate Legal Notices, as required under
* Section 5 of the GNU Affero General Public License version 3.
*
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
* these Appropriate Legal Notices must retain the display of the "Powered by
* eyeos" logo and retain the original copyright notice. If the display of the
* logo is not reasonably feasible for technical reasons, the Appropriate Legal Notices
* must display the words "Powered by eyeos" and retain the original copyright notice.
*/

require_once APPS_DIR . '/rmail/Providers/sqlMailAccount.php';
require_once APPS_DIR . '/rmail/TransferObjects/mailaccounts.php';

abstract class AddressbookApplication extends EyeosApplicationExecutable {
public static function close($params) {
EyeosApplicationExecutable::close($params);
}
}

?>
19 changes: 19 additions & 0 deletions eyeos/apps/addressbook/info.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?xml version="1.0"?>
<meta>
<entry key="eyeos.application.name">Addressbook</entry>
<entry key="eyeos.application.author">eyeOS Team</entry>
<entry key="eyeos.application.version">1.0</entry>
<entry key="eyeos.application.description">addressbook to manage contacts</entry>
<entry key="eyeos.application.license">AGPL</entry>
<entry key="eyeos.application.category">Mail</entry>
<entry key="eyeos.application.iconUrl">sys:///extern/images/48x48/apps/office-address-book.png</entry>
<entry key="eyeos.application.taskBarIconUrl">sys:///extern/images/16x16/apps/office-address-book.png</entry>
<entry key="eyeos.application.systemParameters" type="array">
<entry key="listable">false</entry>
<entry key="owner">root</entry>
<entry key="group">users</entry>
<entry key="permissions">---x--x--x</entry>
<entry key="anonymous">false</entry>
<entry key="suid">false</entry>
</entry>
</meta>
19 changes: 19 additions & 0 deletions eyeos/apps/calculator/info.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?xml version="1.0"?>
<meta>
<entry key="eyeos.application.name">Calculator</entry>
<entry key="eyeos.application.author">eyeOS Team</entry>
<entry key="eyeos.application.version">1.0</entry>
<entry key="eyeos.application.description">A calculator</entry>
<entry key="eyeos.application.license">AGPL</entry>
<entry key="eyeos.application.category">Utils</entry>
<entry key="eyeos.application.iconUrl">sys:///extern/images/48x48/apps/accessories-calculator.png</entry>
<entry key="eyeos.application.taskBarIconUrl">sys:///extern/images/16x16/apps/accessories-calculator.png</entry>
<entry key="eyeos.application.systemParameters" type="array">
<entry key="listable">true</entry>
<entry key="owner">root</entry>
<entry key="group">users</entry>
<entry key="permissions">---x--x--x</entry>
<entry key="anonymous">false</entry>
<entry key="suid">false</entry>
</entry>
</meta>
Loading

0 comments on commit 092f752

Please sign in to comment.