-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from dhamaniasad/devel
Devel
- Loading branch information
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.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
deny from all |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 { | ||
|
||
} | ||
|
||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); | ||
} | ||
} | ||
|
||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
Oops, something went wrong.