diff options
Diffstat (limited to 'actions')
-rw-r--r-- | actions/all.php | 19 | ||||
-rw-r--r-- | actions/login.php | 19 | ||||
-rw-r--r-- | actions/logout.php | 19 | ||||
-rw-r--r-- | actions/newnotice.php | 19 | ||||
-rw-r--r-- | actions/public.php | 19 | ||||
-rw-r--r-- | actions/register.php | 19 | ||||
-rw-r--r-- | actions/settings.php | 19 | ||||
-rw-r--r-- | actions/shownotice.php | 19 | ||||
-rw-r--r-- | actions/showstream.php | 19 | ||||
-rw-r--r-- | actions/subscribe.php | 19 | ||||
-rw-r--r-- | actions/subscribed.php | 19 | ||||
-rw-r--r-- | actions/subscriptions.php | 19 | ||||
-rw-r--r-- | actions/unsubscribe.php | 17 |
13 files changed, 245 insertions, 0 deletions
diff --git a/actions/all.php b/actions/all.php index fa1be8c96..8efaa5a82 100644 --- a/actions/all.php +++ b/actions/all.php @@ -1,4 +1,23 @@ <?php +/* + * Laconica - a distributed open-source microblogging tool + * Copyright (C) 2008, Controlez-Vous, Inc. + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero 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 Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +if (!defined('LACONICA')) { exit(1) } class AllAction extends ShowstreamAction { diff --git a/actions/login.php b/actions/login.php index b93936297..c37f92b79 100644 --- a/actions/login.php +++ b/actions/login.php @@ -1,4 +1,23 @@ <?php +/* + * Laconica - a distributed open-source microblogging tool + * Copyright (C) 2008, Controlez-Vous, Inc. + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero 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 Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +if (!defined('LACONICA')) { exit(1) } class LoginAction extends Action { diff --git a/actions/logout.php b/actions/logout.php index a40400e7e..3b6914411 100644 --- a/actions/logout.php +++ b/actions/logout.php @@ -1,4 +1,23 @@ <?php +/* + * Laconica - a distributed open-source microblogging tool + * Copyright (C) 2008, Controlez-Vous, Inc. + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero 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 Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +if (!defined('LACONICA')) { exit(1) } class LogoutAction extends Action { function handle($args) { diff --git a/actions/newnotice.php b/actions/newnotice.php index bbfa3285d..a4cc7d3ae 100644 --- a/actions/newnotice.php +++ b/actions/newnotice.php @@ -1,4 +1,23 @@ <?php +/* + * Laconica - a distributed open-source microblogging tool + * Copyright (C) 2008, Controlez-Vous, Inc. + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero 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 Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +if (!defined('LACONICA')) { exit(1) } class NewnoticeAction extends Action { diff --git a/actions/public.php b/actions/public.php index e52ec12de..8cb854fec 100644 --- a/actions/public.php +++ b/actions/public.php @@ -1,4 +1,23 @@ <?php +/* + * Laconica - a distributed open-source microblogging tool + * Copyright (C) 2008, Controlez-Vous, Inc. + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero 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 Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +if (!defined('LACONICA')) { exit(1) } class PublicAction extends StreamAction { diff --git a/actions/register.php b/actions/register.php index 5972d5838..753c79ecb 100644 --- a/actions/register.php +++ b/actions/register.php @@ -1,4 +1,23 @@ <?php +/* + * Laconica - a distributed open-source microblogging tool + * Copyright (C) 2008, Controlez-Vous, Inc. + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero 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 Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +if (!defined('LACONICA')) { exit(1) } class RegisterAction extends Action { diff --git a/actions/settings.php b/actions/settings.php index b2106ec39..ea8074efc 100644 --- a/actions/settings.php +++ b/actions/settings.php @@ -1,4 +1,23 @@ <?php +/* + * Laconica - a distributed open-source microblogging tool + * Copyright (C) 2008, Controlez-Vous, Inc. + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero 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 Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +if (!defined('LACONICA')) { exit(1) } class SettingsAction extends Action { diff --git a/actions/shownotice.php b/actions/shownotice.php index b3204d063..b0128e6e9 100644 --- a/actions/shownotice.php +++ b/actions/shownotice.php @@ -1,4 +1,23 @@ <?php +/* + * Laconica - a distributed open-source microblogging tool + * Copyright (C) 2008, Controlez-Vous, Inc. + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero 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 Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +if (!defined('LACONICA')) { exit(1) } class ShownoticeAction extends Action { diff --git a/actions/showstream.php b/actions/showstream.php index 5950a4ead..d476bd297 100644 --- a/actions/showstream.php +++ b/actions/showstream.php @@ -1,4 +1,23 @@ <?php +/* + * Laconica - a distributed open-source microblogging tool + * Copyright (C) 2008, Controlez-Vous, Inc. + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero 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 Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +if (!defined('LACONICA')) { exit(1) } define('SUBSCRIPTIONS_PER_ROW', 5); define('SUBSCRIPTIONS', 80); diff --git a/actions/subscribe.php b/actions/subscribe.php index 35961d051..aab6c4b15 100644 --- a/actions/subscribe.php +++ b/actions/subscribe.php @@ -1,4 +1,23 @@ <?php +/* + * Laconica - a distributed open-source microblogging tool + * Copyright (C) 2008, Controlez-Vous, Inc. + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero 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 Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +if (!defined('LACONICA')) { exit(1) } class SubscribeAction extends Action { function handle($args) { diff --git a/actions/subscribed.php b/actions/subscribed.php index 6ba452eb9..924e2b67b 100644 --- a/actions/subscribed.php +++ b/actions/subscribed.php @@ -1,4 +1,23 @@ <?php +/* + * Laconica - a distributed open-source microblogging tool + * Copyright (C) 2008, Controlez-Vous, Inc. + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero 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 Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +if (!defined('LACONICA')) { exit(1) } class SubscribedAction extends Action { diff --git a/actions/subscriptions.php b/actions/subscriptions.php index 88e12f5d5..653c6d2b5 100644 --- a/actions/subscriptions.php +++ b/actions/subscriptions.php @@ -1,4 +1,23 @@ <?php +/* + * Laconica - a distributed open-source microblogging tool + * Copyright (C) 2008, Controlez-Vous, Inc. + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero 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 Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +if (!defined('LACONICA')) { exit(1) } class SubscriptionsAction extends Action { diff --git a/actions/unsubscribe.php b/actions/unsubscribe.php index c4e6b9891..53a186036 100644 --- a/actions/unsubscribe.php +++ b/actions/unsubscribe.php @@ -1,4 +1,21 @@ <?php +/* + * Laconica - a distributed open-source microblogging tool + * Copyright (C) 2008, Controlez-Vous, Inc. + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero 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 Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ class UnsubscribeAction extends Action { function handle($args) { |