diff options
Diffstat (limited to 'src/js')
-rw-r--r-- | src/js/Botleagues.coffee | 18 | ||||
-rw-r--r-- | src/js/BotleaguesCallback.coffee | 18 | ||||
-rw-r--r-- | src/js/BotleaguesFrontend.coffee | 18 | ||||
-rw-r--r-- | src/js/forms.coffee | 18 | ||||
-rw-r--r-- | src/js/main.coffee | 18 | ||||
-rw-r--r-- | src/js/profile.coffee | 18 |
6 files changed, 108 insertions, 0 deletions
diff --git a/src/js/Botleagues.coffee b/src/js/Botleagues.coffee index 285248f..6be7a0e 100644 --- a/src/js/Botleagues.coffee +++ b/src/js/Botleagues.coffee @@ -1,3 +1,21 @@ +### +Web Frontend for Botleagues +Copyright (C) 2015 Camil Staps <info@camilstaps.nl> + +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 <http://www.gnu.org/licenses/>. +### + $.cookie.json = true @Botleagues = diff --git a/src/js/BotleaguesCallback.coffee b/src/js/BotleaguesCallback.coffee index d828b18..f35d03b 100644 --- a/src/js/BotleaguesCallback.coffee +++ b/src/js/BotleaguesCallback.coffee @@ -1,3 +1,21 @@ +### +Web Frontend for Botleagues +Copyright (C) 2015 Camil Staps <info@camilstaps.nl> + +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 <http://www.gnu.org/licenses/>. +### + @BotleaguesCallback = register: (data) -> diff --git a/src/js/BotleaguesFrontend.coffee b/src/js/BotleaguesFrontend.coffee index 5c2d116..471a230 100644 --- a/src/js/BotleaguesFrontend.coffee +++ b/src/js/BotleaguesFrontend.coffee @@ -1,3 +1,21 @@ +### +Web Frontend for Botleagues +Copyright (C) 2015 Camil Staps <info@camilstaps.nl> + +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 <http://www.gnu.org/licenses/>. +### + @BotleaguesFrontend = message: (user_options) -> diff --git a/src/js/forms.coffee b/src/js/forms.coffee index fe237c2..36b0b98 100644 --- a/src/js/forms.coffee +++ b/src/js/forms.coffee @@ -1,3 +1,21 @@ +### +Web Frontend for Botleagues +Copyright (C) 2015 Camil Staps <info@camilstaps.nl> + +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 <http://www.gnu.org/licenses/>. +### + # Request API for registering $ 'form.form-register' .submit -> diff --git a/src/js/main.coffee b/src/js/main.coffee index 5d21ede..10d6df8 100644 --- a/src/js/main.coffee +++ b/src/js/main.coffee @@ -1,3 +1,21 @@ +### +Web Frontend for Botleagues +Copyright (C) 2015 Camil Staps <info@camilstaps.nl> + +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 <http://www.gnu.org/licenses/>. +### + $ -> # Show extra links if user is logged in email = $.cookie Botleagues.cookie_login_email diff --git a/src/js/profile.coffee b/src/js/profile.coffee index 7942088..4bfb378 100644 --- a/src/js/profile.coffee +++ b/src/js/profile.coffee @@ -1,3 +1,21 @@ +### +Web Frontend for Botleagues +Copyright (C) 2015 Camil Staps <info@camilstaps.nl> + +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 <http://www.gnu.org/licenses/>. +### + $ -> # Show email address in page when logged in setupGreeter() |