From 2221ea0bc463350767b869759f3f867cb158639d Mon Sep 17 00:00:00 2001 From: Xuan Sang LE Date: Thu, 15 Mar 2018 11:00:24 +0100 Subject: [PATCH] add licence to source file --- src/antos.coffee | 17 +++++++++++++++++ src/core/BaseApplication.coffee | 17 +++++++++++++++++ src/core/BaseDialog.coffee | 17 +++++++++++++++++ src/core/BaseEvent.coffee | 17 +++++++++++++++++ src/core/BaseModel.coffee | 18 ++++++++++++++++++ src/core/BaseService.coffee | 18 ++++++++++++++++++ src/core/api.coffee | 17 +++++++++++++++++ src/core/core.coffee | 18 ++++++++++++++++++ src/core/db.coffee | 18 ++++++++++++++++++ src/core/gui.coffee | 18 ++++++++++++++++++ src/core/handlers/RemoteHandler.coffee | 17 +++++++++++++++++ src/core/handlers/TestHandler.coffee | 17 +++++++++++++++++ src/core/languages/gen.sh | 18 ++++++++++++++++++ src/core/settings.coffee | 17 +++++++++++++++++ src/core/vfs.coffee | 17 +++++++++++++++++ src/core/vfs/GoogleDriveHandler.coffee | 18 ++++++++++++++++++ src/index.html | 19 +++++++++++++++++++ src/packages/ActivityMonitor/main.coffee | 17 +++++++++++++++++ src/packages/Blogger/dialogs.coffee | 17 +++++++++++++++++ src/packages/Blogger/main.coffee | 17 +++++++++++++++++ src/packages/CodeBlock/main.coffee | 17 +++++++++++++++++ src/packages/CoreServices/Calendar.coffee | 17 +++++++++++++++++ .../CoreServices/PushNotification.coffee | 18 ++++++++++++++++++ src/packages/CoreServices/Spotlight.coffee | 18 ++++++++++++++++++ src/packages/CoreServices/UserService.coffee | 18 ++++++++++++++++++ src/packages/CoreServices/package.json | 2 +- src/packages/DotEditor/main.coffee | 17 +++++++++++++++++ src/packages/DotEditor/package.json | 2 +- src/packages/DummyApp/main.coffee | 18 ++++++++++++++++++ src/packages/DummyApp/package.json | 2 +- src/packages/Files/main.coffee | 18 ++++++++++++++++++ src/packages/MarkOn/main.coffee | 18 ++++++++++++++++++ src/packages/MarketPlace/dialog.coffee | 18 ++++++++++++++++++ src/packages/MarketPlace/main.coffee | 18 ++++++++++++++++++ src/packages/NotePad/main.coffee | 18 ++++++++++++++++++ src/packages/Preview/main.coffee | 18 ++++++++++++++++++ src/packages/Setting/AppearanceHandler.coffee | 18 ++++++++++++++++++ src/packages/Setting/LocaleHandler.coffee | 18 ++++++++++++++++++ src/packages/Setting/StartupHandler.coffee | 18 ++++++++++++++++++ src/packages/Setting/VFSHandler.coffee | 18 ++++++++++++++++++ src/packages/Setting/main.coffee | 18 ++++++++++++++++++ src/packages/wTerm/main.coffee | 18 ++++++++++++++++++ 42 files changed, 691 insertions(+), 3 deletions(-) diff --git a/src/antos.coffee b/src/antos.coffee index ae5ff72..f578a60 100644 --- a/src/antos.coffee +++ b/src/antos.coffee @@ -1,3 +1,20 @@ +# Copyright 2017-2018 Xuan Sang LE + +# AnTOS Web desktop is is licensed under the GNU General Public +# License v3.0, see the LICENCE file for more information + +# This program is free software: you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation, either version 3 of +# the License, or (at your option) any later version. + +# 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 +# General Public License for more details. + +# You should have received a copy of the GNU General Public License +#along with this program. If not, see https://www.gnu.org/licenses/. _GUI = self.OS.GUI _API = self.OS.API _PM = self.OS.PM diff --git a/src/core/BaseApplication.coffee b/src/core/BaseApplication.coffee index ffec812..2135cff 100644 --- a/src/core/BaseApplication.coffee +++ b/src/core/BaseApplication.coffee @@ -1,3 +1,20 @@ +# Copyright 2017-2018 Xuan Sang LE + +# AnTOS Web desktop is is licensed under the GNU General Public +# License v3.0, see the LICENCE file for more information + +# This program is free software: you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation, either version 3 of +# the License, or (at your option) any later version. + +# 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 +# General Public License for more details. + +# You should have received a copy of the GNU General Public License +#along with this program. If not, see https://www.gnu.org/licenses/. class BaseApplication extends this.OS.GUI.BaseModel constructor: (name, args) -> super name, args diff --git a/src/core/BaseDialog.coffee b/src/core/BaseDialog.coffee index fdb36fe..5981ca4 100644 --- a/src/core/BaseDialog.coffee +++ b/src/core/BaseDialog.coffee @@ -1,3 +1,20 @@ +# Copyright 2017-2018 Xuan Sang LE + +# AnTOS Web desktop is is licensed under the GNU General Public +# License v3.0, see the LICENCE file for more information + +# This program is free software: you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation, either version 3 of +# the License, or (at your option) any later version. + +# 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 +# General Public License for more details. + +# You should have received a copy of the GNU General Public License +#along with this program. If not, see https://www.gnu.org/licenses/. class SubWindow extends this.OS.GUI.BaseModel constructor: (name) -> super name, null diff --git a/src/core/BaseEvent.coffee b/src/core/BaseEvent.coffee index e1ee6db..5ef4310 100644 --- a/src/core/BaseEvent.coffee +++ b/src/core/BaseEvent.coffee @@ -1,3 +1,20 @@ +# Copyright 2017-2018 Xuan Sang LE + +# AnTOS Web desktop is is licensed under the GNU General Public +# License v3.0, see the LICENCE file for more information + +# This program is free software: you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation, either version 3 of +# the License, or (at your option) any later version. + +# 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 +# General Public License for more details. + +# You should have received a copy of the GNU General Public License +#along with this program. If not, see https://www.gnu.org/licenses/. class BaseEvent constructor: (@name) -> @prevent = false diff --git a/src/core/BaseModel.coffee b/src/core/BaseModel.coffee index b4f9a8b..267781f 100644 --- a/src/core/BaseModel.coffee +++ b/src/core/BaseModel.coffee @@ -1,3 +1,21 @@ +# Copyright 2017-2018 Xuan Sang LE + +# AnTOS Web desktop is is licensed under the GNU General Public +# License v3.0, see the LICENCE file for more information + +# This program is free software: you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation, either version 3 of +# the License, or (at your option) any later version. + +# 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 +# General Public License for more details. + +# You should have received a copy of the GNU General Public License +#along with this program. If not, see https://www.gnu.org/licenses/. + class BaseModel constructor: (@name, @args) -> me = @ diff --git a/src/core/BaseService.coffee b/src/core/BaseService.coffee index 98aaa1a..e1c1e44 100644 --- a/src/core/BaseService.coffee +++ b/src/core/BaseService.coffee @@ -1,3 +1,21 @@ +# Copyright 2017-2018 Xuan Sang LE + +# AnTOS Web desktop is is licensed under the GNU General Public +# License v3.0, see the LICENCE file for more information + +# This program is free software: you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation, either version 3 of +# the License, or (at your option) any later version. + +# 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 +# General Public License for more details. + +# You should have received a copy of the GNU General Public License +#along with this program. If not, see https://www.gnu.org/licenses/. + class BaseService extends this.OS.GUI.BaseModel constructor: (name, args) -> super name, args diff --git a/src/core/api.coffee b/src/core/api.coffee index 69809fd..4ceae75 100644 --- a/src/core/api.coffee +++ b/src/core/api.coffee @@ -1,3 +1,20 @@ +# Copyright 2017-2018 Xuan Sang LE + +# AnTOS Web desktop is is licensed under the GNU General Public +# License v3.0, see the LICENCE file for more information + +# This program is free software: you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation, either version 3 of +# the License, or (at your option) any later version. + +# 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 +# General Public License for more details. + +# You should have received a copy of the GNU General Public License +#along with this program. If not, see https://www.gnu.org/licenses/. class FormatedString constructor: (@fs, args) -> @values = [] diff --git a/src/core/core.coffee b/src/core/core.coffee index 8ba8136..f8214e8 100644 --- a/src/core/core.coffee +++ b/src/core/core.coffee @@ -1,3 +1,21 @@ +# Copyright 2017-2018 Xuan Sang LE + +# AnTOS Web desktop is is licensed under the GNU General Public +# License v3.0, see the LICENCE file for more information + +# This program is free software: you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation, either version 3 of +# the License, or (at your option) any later version. + +# 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 +# General Public License for more details. + +# You should have received a copy of the GNU General Public License +#along with this program. If not, see https://www.gnu.org/licenses/. + 'use strict' #define the OS object self = this diff --git a/src/core/db.coffee b/src/core/db.coffee index 3fe0c5a..abd5abe 100644 --- a/src/core/db.coffee +++ b/src/core/db.coffee @@ -1,3 +1,21 @@ +# Copyright 2017-2018 Xuan Sang LE + +# AnTOS Web desktop is is licensed under the GNU General Public +# License v3.0, see the LICENCE file for more information + +# This program is free software: you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation, either version 3 of +# the License, or (at your option) any later version. + +# 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 +# General Public License for more details. + +# You should have received a copy of the GNU General Public License +#along with this program. If not, see https://www.gnu.org/licenses/. + class DB constructor: (@table) -> diff --git a/src/core/gui.coffee b/src/core/gui.coffee index 4099366..6c0d568 100644 --- a/src/core/gui.coffee +++ b/src/core/gui.coffee @@ -1,3 +1,21 @@ +# Copyright 2017-2018 Xuan Sang LE + +# AnTOS Web desktop is is licensed under the GNU General Public +# License v3.0, see the LICENCE file for more information + +# This program is free software: you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation, either version 3 of +# the License, or (at your option) any later version. + +# 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 +# General Public License for more details. + +# You should have received a copy of the GNU General Public License +#along with this program. If not, see https://www.gnu.org/licenses/. + self.OS.GUI = subwindows: new Object() dialog: undefined diff --git a/src/core/handlers/RemoteHandler.coffee b/src/core/handlers/RemoteHandler.coffee index 12837dc..0ebc19a 100644 --- a/src/core/handlers/RemoteHandler.coffee +++ b/src/core/handlers/RemoteHandler.coffee @@ -1,3 +1,20 @@ +# Copyright 2017-2018 Xuan Sang LE + +# AnTOS Web desktop is is licensed under the GNU General Public +# License v3.0, see the LICENCE file for more information + +# This program is free software: you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation, either version 3 of +# the License, or (at your option) any later version. + +# 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 +# General Public License for more details. + +# You should have received a copy of the GNU General Public License +#along with this program. If not, see https://www.gnu.org/licenses/. self.OS.API.HOST = self.location.hostname+ (if self.location.port then":#{self.location.port}" else "") self.OS.API.REST = "#{self.location.protocol}//#{self.OS.API.HOST}/lua-api/os" diff --git a/src/core/handlers/TestHandler.coffee b/src/core/handlers/TestHandler.coffee index 54a1c37..63135af 100644 --- a/src/core/handlers/TestHandler.coffee +++ b/src/core/handlers/TestHandler.coffee @@ -1,3 +1,20 @@ +# Copyright 2017-2018 Xuan Sang LE + +# AnTOS Web desktop is is licensed under the GNU General Public +# License v3.0, see the LICENCE file for more information + +# This program is free software: you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation, either version 3 of +# the License, or (at your option) any later version. + +# 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 +# General Public License for more details. + +# You should have received a copy of the GNU General Public License +#along with this program. If not, see https://www.gnu.org/licenses/. self.OS.API.handler = scandir: (p, c ) -> path = 'resources/jsons/scandir.json' diff --git a/src/core/languages/gen.sh b/src/core/languages/gen.sh index 5ecda54..caffd09 100755 --- a/src/core/languages/gen.sh +++ b/src/core/languages/gen.sh @@ -1,4 +1,22 @@ #!/bin/bash +# Copyright 2017-2018 Xuan Sang LE + +# AnTOS Web desktop is is licensed under the GNU General Public +# License v3.0, see the LICENCE file for more information + +# This program is free software: you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation, either version 3 of +# the License, or (at your option) any later version. + +# 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 +# General Public License for more details. + +# You should have received a copy of the GNU General Public License +#along with this program. If not, see https://www.gnu.org/licenses/. + ord() { LC_CTYPE=C printf '%d' "'$1" } diff --git a/src/core/settings.coffee b/src/core/settings.coffee index de1f85b..1ac82b2 100644 --- a/src/core/settings.coffee +++ b/src/core/settings.coffee @@ -1,3 +1,20 @@ + # Copyright 2017-2018 Xuan Sang LE + +# AnTOS Web desktop is is licensed under the GNU General Public +# License v3.0, see the LICENCE file for more information + +# This program is free software: you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation, either version 3 of +# the License, or (at your option) any later version. + +# 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 +# General Public License for more details. + +# You should have received a copy of the GNU General Public License +#along with this program. If not, see https://www.gnu.org/licenses/. self.OS.systemSetting = (conf) -> _OS.setting.desktop = conf.desktop if conf.desktop _OS.setting.applications = conf.applications if conf.applications diff --git a/src/core/vfs.coffee b/src/core/vfs.coffee index fadc912..99e6665 100644 --- a/src/core/vfs.coffee +++ b/src/core/vfs.coffee @@ -1,3 +1,20 @@ +# Copyright 2017-2018 Xuan Sang LE + +# AnTOS Web desktop is is licensed under the GNU General Public +# License v3.0, see the LICENCE file for more information + +# This program is free software: you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation, either version 3 of +# the License, or (at your option) any later version. + +# 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 +# General Public License for more details. + +# You should have received a copy of the GNU General Public License +#along with this program. If not, see https://www.gnu.org/licenses/. String.prototype.asFileHandler = () -> list = @split "://" handlers = _API.VFS.findHandlers list[0] diff --git a/src/core/vfs/GoogleDriveHandler.coffee b/src/core/vfs/GoogleDriveHandler.coffee index e5736fe..dbb5e0a 100644 --- a/src/core/vfs/GoogleDriveHandler.coffee +++ b/src/core/vfs/GoogleDriveHandler.coffee @@ -1,4 +1,22 @@ +# Copyright 2017-2018 Xuan Sang LE + +# AnTOS Web desktop is is licensed under the GNU General Public +# License v3.0, see the LICENCE file for more information + +# This program is free software: you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation, either version 3 of +# the License, or (at your option) any later version. + +# 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 +# General Public License for more details. + +# You should have received a copy of the GNU General Public License +#along with this program. If not, see https://www.gnu.org/licenses/. + # GoogleDrive File Handler G_CACHE = {"gdv://":{ id: "root", mime: 'dir' } } diff --git a/src/index.html b/src/index.html index 3315282..91c9aaf 100644 --- a/src/index.html +++ b/src/index.html @@ -1,3 +1,22 @@ + diff --git a/src/packages/ActivityMonitor/main.coffee b/src/packages/ActivityMonitor/main.coffee index b598fa4..5dc66ea 100644 --- a/src/packages/ActivityMonitor/main.coffee +++ b/src/packages/ActivityMonitor/main.coffee @@ -1,3 +1,20 @@ +# Copyright 2017-2018 Xuan Sang LE + +# AnTOS Web desktop is is licensed under the GNU General Public +# License v3.0, see the LICENCE file for more information + +# This program is free software: you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation, either version 3 of +# the License, or (at your option) any later version. + +# 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 +# General Public License for more details. + +# You should have received a copy of the GNU General Public License +#along with this program. If not, see https://www.gnu.org/licenses/. _PM = this.OS.PM _APP = this.OS.APP class ActivityMonitor extends this.OS.GUI.BaseApplication diff --git a/src/packages/Blogger/dialogs.coffee b/src/packages/Blogger/dialogs.coffee index f5425f5..4b88a53 100644 --- a/src/packages/Blogger/dialogs.coffee +++ b/src/packages/Blogger/dialogs.coffee @@ -1,3 +1,20 @@ +# Copyright 2017-2018 Xuan Sang LE + +# AnTOS Web desktop is is licensed under the GNU General Public +# License v3.0, see the LICENCE file for more information + +# This program is free software: you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation, either version 3 of +# the License, or (at your option) any later version. + +# 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 +# General Public License for more details. + +# You should have received a copy of the GNU General Public License +#along with this program. If not, see https://www.gnu.org/licenses/. class BloggerCategoryDialog extends this.OS.GUI.BasicDialog constructor: () -> super "BloggerCategoryDialog", { diff --git a/src/packages/Blogger/main.coffee b/src/packages/Blogger/main.coffee index ff8d7c3..d69c8d4 100644 --- a/src/packages/Blogger/main.coffee +++ b/src/packages/Blogger/main.coffee @@ -1,3 +1,20 @@ +# Copyright 2017-2018 Xuan Sang LE + +# AnTOS Web desktop is is licensed under the GNU General Public +# License v3.0, see the LICENCE file for more information + +# This program is free software: you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation, either version 3 of +# the License, or (at your option) any later version. + +# 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 +# General Public License for more details. + +# You should have received a copy of the GNU General Public License +#along with this program. If not, see https://www.gnu.org/licenses/. class Blogger extends this.OS.GUI.BaseApplication constructor: (args) -> super "Blogger", args diff --git a/src/packages/CodeBlock/main.coffee b/src/packages/CodeBlock/main.coffee index 7ce50ad..6f58204 100644 --- a/src/packages/CodeBlock/main.coffee +++ b/src/packages/CodeBlock/main.coffee @@ -1,3 +1,20 @@ +# Copyright 2017-2018 Xuan Sang LE + +# AnTOS Web desktop is is licensed under the GNU General Public +# License v3.0, see the LICENCE file for more information + +# This program is free software: you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation, either version 3 of +# the License, or (at your option) any later version. + +# 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 +# General Public License for more details. + +# You should have received a copy of the GNU General Public License +#along with this program. If not, see https://www.gnu.org/licenses/. class CodeBlock extends this.OS.GUI.BaseApplication constructor: (args) -> super "CodeBlock", args diff --git a/src/packages/CoreServices/Calendar.coffee b/src/packages/CoreServices/Calendar.coffee index 54cde4c..8801e42 100644 --- a/src/packages/CoreServices/Calendar.coffee +++ b/src/packages/CoreServices/Calendar.coffee @@ -1,3 +1,20 @@ +# Copyright 2017-2018 Xuan Sang LE + +# AnTOS Web desktop is is licensed under the GNU General Public +# License v3.0, see the LICENCE file for more information + +# This program is free software: you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation, either version 3 of +# the License, or (at your option) any later version. + +# 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 +# General Public License for more details. + +# You should have received a copy of the GNU General Public License +#along with this program. If not, see https://www.gnu.org/licenses/. class Calendar extends this.OS.GUI.BaseService constructor: (args) -> super "Calendar", args diff --git a/src/packages/CoreServices/PushNotification.coffee b/src/packages/CoreServices/PushNotification.coffee index 961e029..f94a5ef 100644 --- a/src/packages/CoreServices/PushNotification.coffee +++ b/src/packages/CoreServices/PushNotification.coffee @@ -1,3 +1,21 @@ +# Copyright 2017-2018 Xuan Sang LE + +# AnTOS Web desktop is is licensed under the GNU General Public +# License v3.0, see the LICENCE file for more information + +# This program is free software: you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation, either version 3 of +# the License, or (at your option) any later version. + +# 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 +# General Public License for more details. + +# You should have received a copy of the GNU General Public License +#along with this program. If not, see https://www.gnu.org/licenses/. + class PushNotification extends this.OS.GUI.BaseService constructor: (args) -> super "PushNotification", args diff --git a/src/packages/CoreServices/Spotlight.coffee b/src/packages/CoreServices/Spotlight.coffee index 94585e6..24cd08d 100644 --- a/src/packages/CoreServices/Spotlight.coffee +++ b/src/packages/CoreServices/Spotlight.coffee @@ -1,3 +1,21 @@ +# Copyright 2017-2018 Xuan Sang LE + +# AnTOS Web desktop is is licensed under the GNU General Public +# License v3.0, see the LICENCE file for more information + +# This program is free software: you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation, either version 3 of +# the License, or (at your option) any later version. + +# 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 +# General Public License for more details. + +# You should have received a copy of the GNU General Public License +#along with this program. If not, see https://www.gnu.org/licenses/. + class SpotlightDialog extends this.OS.GUI.BaseDialog constructor: () -> super "SpotlightDialog" diff --git a/src/packages/CoreServices/UserService.coffee b/src/packages/CoreServices/UserService.coffee index 5e996ec..33b95eb 100644 --- a/src/packages/CoreServices/UserService.coffee +++ b/src/packages/CoreServices/UserService.coffee @@ -1,3 +1,21 @@ +# Copyright 2017-2018 Xuan Sang LE + +# AnTOS Web desktop is is licensed under the GNU General Public +# License v3.0, see the LICENCE file for more information + +# This program is free software: you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation, either version 3 of +# the License, or (at your option) any later version. + +# 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 +# General Public License for more details. + +# You should have received a copy of the GNU General Public License +#along with this program. If not, see https://www.gnu.org/licenses/. + class UserService extends this.OS.GUI.BaseService constructor: (args) -> super "UserService", args diff --git a/src/packages/CoreServices/package.json b/src/packages/CoreServices/package.json index 222eb85..5b71523 100644 --- a/src/packages/CoreServices/package.json +++ b/src/packages/CoreServices/package.json @@ -7,7 +7,7 @@ "author": "Xuan Sang LE", "email": "xsang.le@gmail.com", "credit": "dedicated to some one here", - "licences": "MIT" + "licences": "GPLv3" }, "version":"0.1a", "category":"System", diff --git a/src/packages/DotEditor/main.coffee b/src/packages/DotEditor/main.coffee index 6739a97..45f7a99 100644 --- a/src/packages/DotEditor/main.coffee +++ b/src/packages/DotEditor/main.coffee @@ -1,3 +1,20 @@ +# Copyright 2017-2018 Xuan Sang LE + +# AnTOS Web desktop is is licensed under the GNU General Public +# License v3.0, see the LICENCE file for more information + +# This program is free software: you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation, either version 3 of +# the License, or (at your option) any later version. + +# 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 +# General Public License for more details. + +# You should have received a copy of the GNU General Public License +#along with this program. If not, see https://www.gnu.org/licenses/. class DotEditor extends this.OS.GUI.BaseApplication constructor: ( args ) -> super "DotEditor", args diff --git a/src/packages/DotEditor/package.json b/src/packages/DotEditor/package.json index 65ae19a..be993e5 100644 --- a/src/packages/DotEditor/package.json +++ b/src/packages/DotEditor/package.json @@ -5,7 +5,7 @@ "info":{ "author": "Xuan Sang LE", "email": "xsang.le@gmail.com", - "licences": "MIT" + "licences": "GPLv3" }, "version":"0.1a", "category":"Office", diff --git a/src/packages/DummyApp/main.coffee b/src/packages/DummyApp/main.coffee index 42738a4..9ac18aa 100644 --- a/src/packages/DummyApp/main.coffee +++ b/src/packages/DummyApp/main.coffee @@ -1,3 +1,21 @@ +# Copyright 2017-2018 Xuan Sang LE + +# AnTOS Web desktop is is licensed under the GNU General Public +# License v3.0, see the LICENCE file for more information + +# This program is free software: you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation, either version 3 of +# the License, or (at your option) any later version. + +# 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 +# General Public License for more details. + +# You should have received a copy of the GNU General Public License +#along with this program. If not, see https://www.gnu.org/licenses/. + _GUI = this.OS.GUI class DummyApp extends this.OS.GUI.BaseApplication constructor: (args) -> diff --git a/src/packages/DummyApp/package.json b/src/packages/DummyApp/package.json index 291a41d..655ca4b 100644 --- a/src/packages/DummyApp/package.json +++ b/src/packages/DummyApp/package.json @@ -6,7 +6,7 @@ "author": "Xuan Sang LE", "email": "xsang.le@gmail.com", "credit": "dedicated to some one here", - "licences": "MIT" + "licences": "GPLv3" }, "version":"0.1a", "category":"System", diff --git a/src/packages/Files/main.coffee b/src/packages/Files/main.coffee index 8a839bf..389bf6a 100644 --- a/src/packages/Files/main.coffee +++ b/src/packages/Files/main.coffee @@ -1,3 +1,21 @@ +# Copyright 2017-2018 Xuan Sang LE + +# AnTOS Web desktop is is licensed under the GNU General Public +# License v3.0, see the LICENCE file for more information + +# This program is free software: you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation, either version 3 of +# the License, or (at your option) any later version. + +# 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 +# General Public License for more details. + +# You should have received a copy of the GNU General Public License +#along with this program. If not, see https://www.gnu.org/licenses/. + class Files extends this.OS.GUI.BaseApplication constructor: (args) -> super "Files", args diff --git a/src/packages/MarkOn/main.coffee b/src/packages/MarkOn/main.coffee index 19214d4..60dab06 100644 --- a/src/packages/MarkOn/main.coffee +++ b/src/packages/MarkOn/main.coffee @@ -1,3 +1,21 @@ +# Copyright 2017-2018 Xuan Sang LE + +# AnTOS Web desktop is is licensed under the GNU General Public +# License v3.0, see the LICENCE file for more information + +# This program is free software: you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation, either version 3 of +# the License, or (at your option) any later version. + +# 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 +# General Public License for more details. + +# You should have received a copy of the GNU General Public License +#along with this program. If not, see https://www.gnu.org/licenses/. + class MarkOn extends this.OS.GUI.BaseApplication constructor: (args) -> super "MarkOn", args diff --git a/src/packages/MarketPlace/dialog.coffee b/src/packages/MarketPlace/dialog.coffee index b3fd463..eb21f30 100644 --- a/src/packages/MarketPlace/dialog.coffee +++ b/src/packages/MarketPlace/dialog.coffee @@ -1,3 +1,21 @@ +# Copyright 2017-2018 Xuan Sang LE + +# AnTOS Web desktop is is licensed under the GNU General Public +# License v3.0, see the LICENCE file for more information + +# This program is free software: you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation, either version 3 of +# the License, or (at your option) any later version. + +# 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 +# General Public License for more details. + +# You should have received a copy of the GNU General Public License +#along with this program. If not, see https://www.gnu.org/licenses/. + class RepositoryDialog extends this.OS.GUI.BaseDialog constructor: () -> super "RepositoryDialog" diff --git a/src/packages/MarketPlace/main.coffee b/src/packages/MarketPlace/main.coffee index 169c25c..7a4855e 100644 --- a/src/packages/MarketPlace/main.coffee +++ b/src/packages/MarketPlace/main.coffee @@ -1,3 +1,21 @@ +# Copyright 2017-2018 Xuan Sang LE + +# AnTOS Web desktop is is licensed under the GNU General Public +# License v3.0, see the LICENCE file for more information + +# This program is free software: you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation, either version 3 of +# the License, or (at your option) any later version. + +# 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 +# General Public License for more details. + +# You should have received a copy of the GNU General Public License +#along with this program. If not, see https://www.gnu.org/licenses/. + self = this class MarketPlace extends this.OS.GUI.BaseApplication constructor: (args) -> diff --git a/src/packages/NotePad/main.coffee b/src/packages/NotePad/main.coffee index 52a699d..1d93702 100644 --- a/src/packages/NotePad/main.coffee +++ b/src/packages/NotePad/main.coffee @@ -1,3 +1,21 @@ +# Copyright 2017-2018 Xuan Sang LE + +# AnTOS Web desktop is is licensed under the GNU General Public +# License v3.0, see the LICENCE file for more information + +# This program is free software: you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation, either version 3 of +# the License, or (at your option) any later version. + +# 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 +# General Public License for more details. + +# You should have received a copy of the GNU General Public License +#along with this program. If not, see https://www.gnu.org/licenses/. + class NotePad extends this.OS.GUI.BaseApplication constructor: ( args ) -> super "NotePad", args diff --git a/src/packages/Preview/main.coffee b/src/packages/Preview/main.coffee index 1d7a2b0..ace6dc1 100644 --- a/src/packages/Preview/main.coffee +++ b/src/packages/Preview/main.coffee @@ -1,3 +1,21 @@ +# Copyright 2017-2018 Xuan Sang LE + +# AnTOS Web desktop is is licensed under the GNU General Public +# License v3.0, see the LICENCE file for more information + +# This program is free software: you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation, either version 3 of +# the License, or (at your option) any later version. + +# 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 +# General Public License for more details. + +# You should have received a copy of the GNU General Public License +#along with this program. If not, see https://www.gnu.org/licenses/. + class Preview extends this.OS.GUI.BaseApplication constructor: (args) -> super "Preview", args diff --git a/src/packages/Setting/AppearanceHandler.coffee b/src/packages/Setting/AppearanceHandler.coffee index 40368c8..41ec4a6 100644 --- a/src/packages/Setting/AppearanceHandler.coffee +++ b/src/packages/Setting/AppearanceHandler.coffee @@ -1,3 +1,21 @@ +# Copyright 2017-2018 Xuan Sang LE + +# AnTOS Web desktop is is licensed under the GNU General Public +# License v3.0, see the LICENCE file for more information + +# This program is free software: you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation, either version 3 of +# the License, or (at your option) any later version. + +# 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 +# General Public License for more details. + +# You should have received a copy of the GNU General Public License +#along with this program. If not, see https://www.gnu.org/licenses/. + class AppearanceHandler extends SettingHandler constructor:(scheme, parent) -> super(scheme, parent) diff --git a/src/packages/Setting/LocaleHandler.coffee b/src/packages/Setting/LocaleHandler.coffee index 7ca65cf..f8a3497 100644 --- a/src/packages/Setting/LocaleHandler.coffee +++ b/src/packages/Setting/LocaleHandler.coffee @@ -1,3 +1,21 @@ +# Copyright 2017-2018 Xuan Sang LE + +# AnTOS Web desktop is is licensed under the GNU General Public +# License v3.0, see the LICENCE file for more information + +# This program is free software: you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation, either version 3 of +# the License, or (at your option) any later version. + +# 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 +# General Public License for more details. + +# You should have received a copy of the GNU General Public License +#along with this program. If not, see https://www.gnu.org/licenses/. + class LocaleHandler extends SettingHandler constructor:(scheme, parent) -> super(scheme, parent) diff --git a/src/packages/Setting/StartupHandler.coffee b/src/packages/Setting/StartupHandler.coffee index 7f67a6c..f361914 100644 --- a/src/packages/Setting/StartupHandler.coffee +++ b/src/packages/Setting/StartupHandler.coffee @@ -1,3 +1,21 @@ +# Copyright 2017-2018 Xuan Sang LE + +# AnTOS Web desktop is is licensed under the GNU General Public +# License v3.0, see the LICENCE file for more information + +# This program is free software: you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation, either version 3 of +# the License, or (at your option) any later version. + +# 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 +# General Public License for more details. + +# You should have received a copy of the GNU General Public License +#along with this program. If not, see https://www.gnu.org/licenses/. + class StartupHandler extends SettingHandler constructor:(scheme, parent) -> super(scheme, parent) diff --git a/src/packages/Setting/VFSHandler.coffee b/src/packages/Setting/VFSHandler.coffee index d43f75d..c0c8189 100644 --- a/src/packages/Setting/VFSHandler.coffee +++ b/src/packages/Setting/VFSHandler.coffee @@ -1,3 +1,21 @@ +# Copyright 2017-2018 Xuan Sang LE + +# AnTOS Web desktop is is licensed under the GNU General Public +# License v3.0, see the LICENCE file for more information + +# This program is free software: you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation, either version 3 of +# the License, or (at your option) any later version. + +# 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 +# General Public License for more details. + +# You should have received a copy of the GNU General Public License +#along with this program. If not, see https://www.gnu.org/licenses/. + class VFSHandler extends SettingHandler constructor:(scheme, parent) -> super(scheme, parent) diff --git a/src/packages/Setting/main.coffee b/src/packages/Setting/main.coffee index faca527..831e608 100644 --- a/src/packages/Setting/main.coffee +++ b/src/packages/Setting/main.coffee @@ -1,3 +1,21 @@ +# Copyright 2017-2018 Xuan Sang LE + +# AnTOS Web desktop is is licensed under the GNU General Public +# License v3.0, see the LICENCE file for more information + +# This program is free software: you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation, either version 3 of +# the License, or (at your option) any later version. + +# 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 +# General Public License for more details. + +# You should have received a copy of the GNU General Public License +#along with this program. If not, see https://www.gnu.org/licenses/. + class SettingHandler constructor:(@scheme, @parent) -> diff --git a/src/packages/wTerm/main.coffee b/src/packages/wTerm/main.coffee index 4a3c1f7..cdd4e3d 100644 --- a/src/packages/wTerm/main.coffee +++ b/src/packages/wTerm/main.coffee @@ -1,3 +1,21 @@ +# Copyright 2017-2018 Xuan Sang LE + +# AnTOS Web desktop is is licensed under the GNU General Public +# License v3.0, see the LICENCE file for more information + +# This program is free software: you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation, either version 3 of +# the License, or (at your option) any later version. + +# 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 +# General Public License for more details. + +# You should have received a copy of the GNU General Public License +#along with this program. If not, see https://www.gnu.org/licenses/. + class wTerm extends this.OS.GUI.BaseApplication constructor: (args) -> super "wTerm", args