|
From: <re...@us...> - 2008-08-22 16:19:32
|
Revision: 617
http://sciret.svn.sourceforge.net/sciret/?rev=617&view=rev
Author: reinerj
Date: 2008-08-22 16:19:26 +0000 (Fri, 22 Aug 2008)
Log Message:
-----------
Siret have a new owner, Keyboard Monkeys
Modified Paths:
--------------
trunk/actions/Action.php
trunk/actions/AddCommentAndRating.php
trunk/actions/AddLink.php
trunk/actions/AddQuestion.php
trunk/actions/AddRelatedArticles.php
trunk/actions/ArticleToPdf.php
trunk/actions/CompleteTodo.php
trunk/actions/DeleteArticle.php
trunk/actions/DeleteCategory.php
trunk/actions/DeleteComment.php
trunk/actions/DeleteFile.php
trunk/actions/DeleteLink.php
trunk/actions/DeleteQuestion.php
trunk/actions/DeleteRelatedArticle.php
trunk/actions/DeleteTodo.php
trunk/actions/DeleteUser.php
trunk/actions/EditUser.php
trunk/actions/GetFile.php
trunk/actions/HideCategory.php
trunk/actions/Install.php
trunk/actions/Login.php
trunk/actions/Logout.php
trunk/actions/MailArticle.php
trunk/actions/MarkArticle.php
trunk/actions/MarkArticleFinal.php
trunk/actions/MarkLocation.php
trunk/actions/MarkSearchResults.php
trunk/actions/PublishArticle.php
trunk/actions/PublishComment.php
trunk/actions/PublishQuestion.php
trunk/actions/SaveArticle.php
trunk/actions/SaveBookmark.php
trunk/actions/SaveCategory.php
trunk/actions/SavePreferences.php
trunk/actions/SaveTodo.php
trunk/actions/ShowCategory.php
Modified: trunk/actions/Action.php
===================================================================
--- trunk/actions/Action.php 2008-08-20 15:31:30 UTC (rev 616)
+++ trunk/actions/Action.php 2008-08-22 16:19:26 UTC (rev 617)
@@ -1,12 +1,12 @@
<?php
/*
-* @copyright Copyright (C) 2005-2007 TheGang http://www.the-gang.net
+* @copyright Copyright (C) 2005-2008 Keyboard Monkeys Ltd. http://www.kb-m.com
* @license http://www.fsf.org/copyleft/lgpl.html GNU Lesser General Public License
* @author Alejandro Pedraza
-* @since Sciret 1.0
+* @since Sciret 1.2
* @package Sciret
-* @packager TheGang
+* @packager Keyboard Monkeys
*/
class Action {
Modified: trunk/actions/AddCommentAndRating.php
===================================================================
--- trunk/actions/AddCommentAndRating.php 2008-08-20 15:31:30 UTC (rev 616)
+++ trunk/actions/AddCommentAndRating.php 2008-08-22 16:19:26 UTC (rev 617)
@@ -1,12 +1,12 @@
<?php
/*
-* @copyright Copyright (C) 2005-2007 TheGang http://www.the-gang.net
+* @copyright Copyright (C) 2005-2008 Keyboard Monkeys Ltd. http://www.kb-m.com
* @license http://www.fsf.org/copyleft/lgpl.html GNU Lesser General Public License
* @author Alejandro Pedraza
-* @since Sciret 1.0
+* @since Sciret 1.2
* @package Sciret
-* @packager TheGang
+* @packager Keyboard Monkeys
*/
require 'actions/Action.php';
Modified: trunk/actions/AddLink.php
===================================================================
--- trunk/actions/AddLink.php 2008-08-20 15:31:30 UTC (rev 616)
+++ trunk/actions/AddLink.php 2008-08-22 16:19:26 UTC (rev 617)
@@ -1,12 +1,12 @@
<?php
/*
-* @copyright Copyright (C) 2005-2007 TheGang http://www.the-gang.net
+* @copyright Copyright (C) 2005-2008 Keyboard Monkeys Ltd. http://www.kb-m.com
* @license http://www.fsf.org/copyleft/lgpl.html GNU Lesser General Public License
* @author Alejandro Pedraza
-* @since Sciret 1.0
+* @since Sciret 1.2
* @package Sciret
-* @packager TheGang
+* @packager Keyboard Monkeys
*/
require 'actions/Action.php';
Modified: trunk/actions/AddQuestion.php
===================================================================
--- trunk/actions/AddQuestion.php 2008-08-20 15:31:30 UTC (rev 616)
+++ trunk/actions/AddQuestion.php 2008-08-22 16:19:26 UTC (rev 617)
@@ -1,12 +1,12 @@
<?php
/*
-* @copyright Copyright (C) 2005-2007 TheGang http://www.the-gang.net
+* @copyright Copyright (C) 2005-2008 Keyboard Monkeys Ltd. http://www.kb-m.com
* @license http://www.fsf.org/copyleft/lgpl.html GNU Lesser General Public License
* @author Alejandro Pedraza
-* @since Sciret 1.0
+* @since Sciret 1.2
* @package Sciret
-* @packager TheGang
+* @packager Keyboard Monkeys
*/
require 'actions/Action.php';
Modified: trunk/actions/AddRelatedArticles.php
===================================================================
--- trunk/actions/AddRelatedArticles.php 2008-08-20 15:31:30 UTC (rev 616)
+++ trunk/actions/AddRelatedArticles.php 2008-08-22 16:19:26 UTC (rev 617)
@@ -1,12 +1,12 @@
<?php
/*
-* @copyright Copyright (C) 2005-2007 TheGang http://www.the-gang.net
+* @copyright Copyright (C) 2005-2008 Keyboard Monkeys Ltd. http://www.kb-m.com
* @license http://www.fsf.org/copyleft/lgpl.html GNU Lesser General Public License
* @author Alejandro Pedraza
-* @since Sciret 1.0
+* @since Sciret 1.2
* @package Sciret
-* @packager TheGang
+* @packager Keyboard Monkeys
*/
require 'actions/Action.php';
Modified: trunk/actions/ArticleToPdf.php
===================================================================
--- trunk/actions/ArticleToPdf.php 2008-08-20 15:31:30 UTC (rev 616)
+++ trunk/actions/ArticleToPdf.php 2008-08-22 16:19:26 UTC (rev 617)
@@ -1,5 +1,14 @@
<?php
+/*
+* @copyright Copyright (C) 2005-2008 Keyboard Monkeys Ltd. http://www.kb-m.com
+* @license http://www.fsf.org/copyleft/lgpl.html GNU Lesser General Public License
+* @author Alejandro Pedraza
+* @since Sciret 1.2
+* @package Sciret
+* @packager Keyboard Monkeys
+*/
+
require_once 'actions/Action.php';
require_once 'models/Article.php';
require_once 'tcpdf/tcpdf.php';
Modified: trunk/actions/CompleteTodo.php
===================================================================
--- trunk/actions/CompleteTodo.php 2008-08-20 15:31:30 UTC (rev 616)
+++ trunk/actions/CompleteTodo.php 2008-08-22 16:19:26 UTC (rev 617)
@@ -1,12 +1,12 @@
<?php
/*
-* @copyright Copyright (C) 2005-2007 TheGang http://www.the-gang.net
+* @copyright Copyright (C) 2005-2008 Keyboard Monkeys Ltd. http://www.kb-m.com
* @license http://www.fsf.org/copyleft/lgpl.html GNU Lesser General Public License
* @author Alejandro Pedraza
-* @since Sciret 1.1
+* @since Sciret 1.2
* @package Sciret
-* @packager TheGang
+* @packager Keyboard Monkeys
*/
require 'actions/Action.php';
Modified: trunk/actions/DeleteArticle.php
===================================================================
--- trunk/actions/DeleteArticle.php 2008-08-20 15:31:30 UTC (rev 616)
+++ trunk/actions/DeleteArticle.php 2008-08-22 16:19:26 UTC (rev 617)
@@ -1,12 +1,12 @@
<?php
/*
-* @copyright Copyright (C) 2005-2007 TheGang http://www.the-gang.net
+* @copyright Copyright (C) 2005-2008 Keyboard Monkeys Ltd. http://www.kb-m.com
* @license http://www.fsf.org/copyleft/lgpl.html GNU Lesser General Public License
* @author Alejandro Pedraza
-* @since Sciret 1.0
+* @since Sciret 1.2
* @package Sciret
-* @packager TheGang
+* @packager Keyboard Monkeys
*/
require 'actions/Action.php';
Modified: trunk/actions/DeleteCategory.php
===================================================================
--- trunk/actions/DeleteCategory.php 2008-08-20 15:31:30 UTC (rev 616)
+++ trunk/actions/DeleteCategory.php 2008-08-22 16:19:26 UTC (rev 617)
@@ -1,12 +1,12 @@
<?php
/*
-* @copyright Copyright (C) 2005-2007 TheGang http://www.the-gang.net
+* @copyright Copyright (C) 2005-2008 Keyboard Monkeys Ltd. http://www.kb-m.com
* @license http://www.fsf.org/copyleft/lgpl.html GNU Lesser General Public License
* @author Alejandro Pedraza
-* @since Sciret 1.0
+* @since Sciret 1.2
* @package Sciret
-* @packager TheGang
+* @packager Keyboard Monkeys
*/
require 'actions/Action.php';
Modified: trunk/actions/DeleteComment.php
===================================================================
--- trunk/actions/DeleteComment.php 2008-08-20 15:31:30 UTC (rev 616)
+++ trunk/actions/DeleteComment.php 2008-08-22 16:19:26 UTC (rev 617)
@@ -1,12 +1,12 @@
<?php
/*
-* @copyright Copyright (C) 2005-2007 TheGang http://www.the-gang.net
+* @copyright Copyright (C) 2005-2008 Keyboard Monkeys Ltd. http://www.kb-m.com
* @license http://www.fsf.org/copyleft/lgpl.html GNU Lesser General Public License
* @author Alejandro Pedraza
-* @since Sciret 1.0
+* @since Sciret 1.2
* @package Sciret
-* @packager TheGang
+* @packager Keyboard Monkeys
*/
require 'actions/Action.php';
Modified: trunk/actions/DeleteFile.php
===================================================================
--- trunk/actions/DeleteFile.php 2008-08-20 15:31:30 UTC (rev 616)
+++ trunk/actions/DeleteFile.php 2008-08-22 16:19:26 UTC (rev 617)
@@ -1,12 +1,12 @@
<?php
/*
-* @copyright Copyright (C) 2005-2007 TheGang http://www.the-gang.net
+* @copyright Copyright (C) 2005-2008 Keyboard Monkeys Ltd. http://www.kb-m.com
* @license http://www.fsf.org/copyleft/lgpl.html GNU Lesser General Public License
* @author Alejandro Pedraza
-* @since Sciret 1.0
+* @since Sciret 1.2
* @package Sciret
-* @packager TheGang
+* @packager Keyboard Monkeys
*/
require 'actions/Action.php';
Modified: trunk/actions/DeleteLink.php
===================================================================
--- trunk/actions/DeleteLink.php 2008-08-20 15:31:30 UTC (rev 616)
+++ trunk/actions/DeleteLink.php 2008-08-22 16:19:26 UTC (rev 617)
@@ -1,12 +1,12 @@
<?php
/*
-* @copyright Copyright (C) 2005-2007 TheGang http://www.the-gang.net
+* @copyright Copyright (C) 2005-2008 Keyboard Monkeys Ltd. http://www.kb-m.com
* @license http://www.fsf.org/copyleft/lgpl.html GNU Lesser General Public License
* @author Alejandro Pedraza
-* @since Sciret 1.0
+* @since Sciret 1.2
* @package Sciret
-* @packager TheGang
+* @packager Keyboard Monkeys
*/
require 'actions/Action.php';
Modified: trunk/actions/DeleteQuestion.php
===================================================================
--- trunk/actions/DeleteQuestion.php 2008-08-20 15:31:30 UTC (rev 616)
+++ trunk/actions/DeleteQuestion.php 2008-08-22 16:19:26 UTC (rev 617)
@@ -1,12 +1,12 @@
<?php
/*
-* @copyright Copyright (C) 2005-2007 TheGang http://www.the-gang.net
+* @copyright Copyright (C) 2005-2008 Keyboard Monkeys Ltd. http://www.kb-m.com
* @license http://www.fsf.org/copyleft/lgpl.html GNU Lesser General Public License
* @author Alejandro Pedraza
-* @since Sciret 1.0
+* @since Sciret 1.2
* @package Sciret
-* @packager TheGang
+* @packager Keyboard Monkeys
*/
require 'actions/Action.php';
Modified: trunk/actions/DeleteRelatedArticle.php
===================================================================
--- trunk/actions/DeleteRelatedArticle.php 2008-08-20 15:31:30 UTC (rev 616)
+++ trunk/actions/DeleteRelatedArticle.php 2008-08-22 16:19:26 UTC (rev 617)
@@ -1,12 +1,12 @@
<?php
/*
-* @copyright Copyright (C) 2005-2007 TheGang http://www.the-gang.net
+* @copyright Copyright (C) 2005-2008 Keyboard Monkeys Ltd. http://www.kb-m.com
* @license http://www.fsf.org/copyleft/lgpl.html GNU Lesser General Public License
* @author Alejandro Pedraza
-* @since Sciret 1.0
+* @since Sciret 1.2
* @package Sciret
-* @packager TheGang
+* @packager Keyboard Monkeys
*/
require 'actions/Action.php';
Modified: trunk/actions/DeleteTodo.php
===================================================================
--- trunk/actions/DeleteTodo.php 2008-08-20 15:31:30 UTC (rev 616)
+++ trunk/actions/DeleteTodo.php 2008-08-22 16:19:26 UTC (rev 617)
@@ -1,12 +1,12 @@
<?php
/*
-* @copyright Copyright (C) 2005-2007 TheGang http://www.the-gang.net
+* @copyright Copyright (C) 2005-2008 Keyboard Monkeys Ltd. http://www.kb-m.com
* @license http://www.fsf.org/copyleft/lgpl.html GNU Lesser General Public License
* @author Alejandro Pedraza
-* @since Sciret 1.1
+* @since Sciret 1.2
* @package Sciret
-* @packager TheGang
+* @packager Keyboard Monkeys
*/
require 'actions/Action.php';
Modified: trunk/actions/DeleteUser.php
===================================================================
--- trunk/actions/DeleteUser.php 2008-08-20 15:31:30 UTC (rev 616)
+++ trunk/actions/DeleteUser.php 2008-08-22 16:19:26 UTC (rev 617)
@@ -1,12 +1,12 @@
<?php
/*
-* @copyright Copyright (C) 2005-2007 TheGang http://www.the-gang.net
+* @copyright Copyright (C) 2005-2008 Keyboard Monkeys Ltd. http://www.kb-m.com
* @license http://www.fsf.org/copyleft/lgpl.html GNU Lesser General Public License
* @author Alejandro Pedraza
-* @since Sciret 1.0
+* @since Sciret 1.2
* @package Sciret
-* @packager TheGang
+* @packager Keyboard Monkeys
*/
require 'actions/Action.php';
Modified: trunk/actions/EditUser.php
===================================================================
--- trunk/actions/EditUser.php 2008-08-20 15:31:30 UTC (rev 616)
+++ trunk/actions/EditUser.php 2008-08-22 16:19:26 UTC (rev 617)
@@ -1,12 +1,12 @@
<?php
/*
-* @copyright Copyright (C) 2005-2007 TheGang http://www.the-gang.net
+* @copyright Copyright (C) 2005-2008 Keyboard Monkeys Ltd. http://www.kb-m.com
* @license http://www.fsf.org/copyleft/lgpl.html GNU Lesser General Public License
* @author Alejandro Pedraza
-* @since Sciret 1.0
+* @since Sciret 1.2
* @package Sciret
-* @packager TheGang
+* @packager Keyboard Monkeys
*/
require 'actions/Action.php';
Modified: trunk/actions/GetFile.php
===================================================================
--- trunk/actions/GetFile.php 2008-08-20 15:31:30 UTC (rev 616)
+++ trunk/actions/GetFile.php 2008-08-22 16:19:26 UTC (rev 617)
@@ -1,12 +1,12 @@
<?php
/*
-* @copyright Copyright (C) 2005-2007 TheGang http://www.the-gang.net
+* @copyright Copyright (C) 2005-2008 Keyboard Monkeys Ltd. http://www.kb-m.com
* @license http://www.fsf.org/copyleft/lgpl.html GNU Lesser General Public License
* @author Alejandro Pedraza
-* @since Sciret 1.0
+* @since Sciret 1.2
* @package Sciret
-* @packager TheGang
+* @packager Keyboard Monkeys
*/
require 'actions/Action.php';
Modified: trunk/actions/HideCategory.php
===================================================================
--- trunk/actions/HideCategory.php 2008-08-20 15:31:30 UTC (rev 616)
+++ trunk/actions/HideCategory.php 2008-08-22 16:19:26 UTC (rev 617)
@@ -1,5 +1,14 @@
<?php
+/*
+* @copyright Copyright (C) 2005-2008 Keyboard Monkeys Ltd. http://www.kb-m.com
+* @license http://www.fsf.org/copyleft/lgpl.html GNU Lesser General Public License
+* @author Alejandro Pedraza
+* @since Sciret 1.2
+* @package Sciret
+* @packager Keyboard Monkeys
+*/
+
require 'actions/Action.php';
class HideCategory extends Action {
Modified: trunk/actions/Install.php
===================================================================
--- trunk/actions/Install.php 2008-08-20 15:31:30 UTC (rev 616)
+++ trunk/actions/Install.php 2008-08-22 16:19:26 UTC (rev 617)
@@ -1,12 +1,12 @@
<?php
/*
-* @copyright Copyright (C) 2005-2007 TheGang http://www.the-gang.net
+* @copyright Copyright (C) 2005-2008 Keyboard Monkeys Ltd. http://www.kb-m.com
* @license http://www.fsf.org/copyleft/lgpl.html GNU Lesser General Public License
* @author Alejandro Pedraza
-* @since Sciret 1.0
+* @since Sciret 1.2
* @package Sciret
-* @packager TheGang
+* @packager Keyboard Monkeys
*/
class Install extends Action {
Modified: trunk/actions/Login.php
===================================================================
--- trunk/actions/Login.php 2008-08-20 15:31:30 UTC (rev 616)
+++ trunk/actions/Login.php 2008-08-22 16:19:26 UTC (rev 617)
@@ -1,12 +1,12 @@
<?php
/*
-* @copyright Copyright (C) 2005-2007 TheGang http://www.the-gang.net
+* @copyright Copyright (C) 2005-2008 Keyboard Monkeys Ltd. http://www.kb-m.com
* @license http://www.fsf.org/copyleft/lgpl.html GNU Lesser General Public License
* @author Alejandro Pedraza
-* @since Sciret 1.0
+* @since Sciret 1.2
* @package Sciret
-* @packager TheGang
+* @packager Keyboard Monkeys
*/
class Login extends Action {
Modified: trunk/actions/Logout.php
===================================================================
--- trunk/actions/Logout.php 2008-08-20 15:31:30 UTC (rev 616)
+++ trunk/actions/Logout.php 2008-08-22 16:19:26 UTC (rev 617)
@@ -1,12 +1,12 @@
<?php
/*
-* @copyright Copyright (C) 2005-2007 TheGang http://www.the-gang.net
+* @copyright Copyright (C) 2005-2008 Keyboard Monkeys Ltd. http://www.kb-m.com
* @license http://www.fsf.org/copyleft/lgpl.html GNU Lesser General Public License
* @author Alejandro Pedraza
-* @since Sciret 1.0
+* @since Sciret 1.2
* @package Sciret
-* @packager TheGang
+* @packager Keyboard Monkeys
*/
require 'actions/Action.php';
Modified: trunk/actions/MailArticle.php
===================================================================
--- trunk/actions/MailArticle.php 2008-08-20 15:31:30 UTC (rev 616)
+++ trunk/actions/MailArticle.php 2008-08-22 16:19:26 UTC (rev 617)
@@ -1,12 +1,12 @@
<?php
/*
-* @copyright Copyright (C) 2005-2007 TheGang http://www.the-gang.net
+* @copyright Copyright (C) 2005-2008 Keyboard Monkeys Ltd. http://www.kb-m.com
* @license http://www.fsf.org/copyleft/lgpl.html GNU Lesser General Public License
* @author Alejandro Pedraza
-* @since Sciret 1.0
+* @since Sciret 1.2
* @package Sciret
-* @packager TheGang
+* @packager Keyboard Monkeys
*/
require 'actions/Action.php';
Modified: trunk/actions/MarkArticle.php
===================================================================
--- trunk/actions/MarkArticle.php 2008-08-20 15:31:30 UTC (rev 616)
+++ trunk/actions/MarkArticle.php 2008-08-22 16:19:26 UTC (rev 617)
@@ -1,12 +1,12 @@
<?php
/*
-* @copyright Copyright (C) 2005-2007 TheGang http://www.the-gang.net
+* @copyright Copyright (C) 2005-2008 Keyboard Monkeys Ltd. http://www.kb-m.com
* @license http://www.fsf.org/copyleft/lgpl.html GNU Lesser General Public License
* @author Alejandro Pedraza
-* @since Sciret 1.0
+* @since Sciret 1.2
* @package Sciret
-* @packager TheGang
+* @packager Keyboard Monkeys
*/
require 'actions/Action.php';
Modified: trunk/actions/MarkArticleFinal.php
===================================================================
--- trunk/actions/MarkArticleFinal.php 2008-08-20 15:31:30 UTC (rev 616)
+++ trunk/actions/MarkArticleFinal.php 2008-08-22 16:19:26 UTC (rev 617)
@@ -1,12 +1,12 @@
<?php
/*
-* @copyright Copyright (C) 2005-2007 TheGang http://www.the-gang.net
+* @copyright Copyright (C) 2005-2008 Keyboard Monkeys Ltd. http://www.kb-m.com
* @license http://www.fsf.org/copyleft/lgpl.html GNU Lesser General Public License
* @author Alejandro Pedraza
-* @since Sciret 1.0
+* @since Sciret 1.2
* @package Sciret
-* @packager TheGang
+* @packager Keyboard Monkeys
*/
require 'actions/Action.php';
Modified: trunk/actions/MarkLocation.php
===================================================================
--- trunk/actions/MarkLocation.php 2008-08-20 15:31:30 UTC (rev 616)
+++ trunk/actions/MarkLocation.php 2008-08-22 16:19:26 UTC (rev 617)
@@ -1,12 +1,12 @@
<?php
/*
-* @copyright Copyright (C) 2005-2007 TheGang http://www.the-gang.net
+* @copyright Copyright (C) 2005-2008 Keyboard Monkeys Ltd. http://www.kb-m.com
* @license http://www.fsf.org/copyleft/lgpl.html GNU Lesser General Public License
* @author Alejandro Pedraza
-* @since Sciret 1.0
+* @since Sciret 1.2
* @package Sciret
-* @packager TheGang
+* @packager Keyboard Monkeys
*/
require 'actions/Action.php';
Modified: trunk/actions/MarkSearchResults.php
===================================================================
--- trunk/actions/MarkSearchResults.php 2008-08-20 15:31:30 UTC (rev 616)
+++ trunk/actions/MarkSearchResults.php 2008-08-22 16:19:26 UTC (rev 617)
@@ -1,12 +1,12 @@
<?php
/*
-* @copyright Copyright (C) 2005-2007 TheGang http://www.the-gang.net
+* @copyright Copyright (C) 2005-2008 Keyboard Monkeys Ltd. http://www.kb-m.com
* @license http://www.fsf.org/copyleft/lgpl.html GNU Lesser General Public License
* @author Alejandro Pedraza
-* @since Sciret 1.0
+* @since Sciret 1.2
* @package Sciret
-* @packager TheGang
+* @packager Keyboard Monkeys
*/
require 'actions/Action.php';
Modified: trunk/actions/PublishArticle.php
===================================================================
--- trunk/actions/PublishArticle.php 2008-08-20 15:31:30 UTC (rev 616)
+++ trunk/actions/PublishArticle.php 2008-08-22 16:19:26 UTC (rev 617)
@@ -1,12 +1,12 @@
<?php
/*
-* @copyright Copyright (C) 2005-2007 TheGang http://www.the-gang.net
+* @copyright Copyright (C) 2005-2008 Keyboard Monkeys Ltd. http://www.kb-m.com
* @license http://www.fsf.org/copyleft/lgpl.html GNU Lesser General Public License
* @author Alejandro Pedraza
-* @since Sciret 1.0
+* @since Sciret 1.2
* @package Sciret
-* @packager TheGang
+* @packager Keyboard Monkeys
*/
require 'actions/Action.php';
Modified: trunk/actions/PublishComment.php
===================================================================
--- trunk/actions/PublishComment.php 2008-08-20 15:31:30 UTC (rev 616)
+++ trunk/actions/PublishComment.php 2008-08-22 16:19:26 UTC (rev 617)
@@ -1,12 +1,12 @@
<?php
/*
-* @copyright Copyright (C) 2005-2007 TheGang http://www.the-gang.net
+* @copyright Copyright (C) 2005-2008 Keyboard Monkeys Ltd. http://www.kb-m.com
* @license http://www.fsf.org/copyleft/lgpl.html GNU Lesser General Public License
* @author Alejandro Pedraza
-* @since Sciret 1.0
+* @since Sciret 1.2
* @package Sciret
-* @packager TheGang
+* @packager Keyboard Monkeys
*/
require 'actions/Action.php';
Modified: trunk/actions/PublishQuestion.php
===================================================================
--- trunk/actions/PublishQuestion.php 2008-08-20 15:31:30 UTC (rev 616)
+++ trunk/actions/PublishQuestion.php 2008-08-22 16:19:26 UTC (rev 617)
@@ -1,12 +1,12 @@
<?php
/*
-* @copyright Copyright (C) 2005-2007 TheGang http://www.the-gang.net
+* @copyright Copyright (C) 2005-2008 Keyboard Monkeys Ltd. http://www.kb-m.com
* @license http://www.fsf.org/copyleft/lgpl.html GNU Lesser General Public License
* @author Alejandro Pedraza
-* @since Sciret 1.0
+* @since Sciret 1.2
* @package Sciret
-* @packager TheGang
+* @packager Keyboard Monkeys
*/
require 'actions/Action.php';
Modified: trunk/actions/SaveArticle.php
===================================================================
--- trunk/actions/SaveArticle.php 2008-08-20 15:31:30 UTC (rev 616)
+++ trunk/actions/SaveArticle.php 2008-08-22 16:19:26 UTC (rev 617)
@@ -1,12 +1,12 @@
<?php
/*
-* @copyright Copyright (C) 2005-2007 TheGang http://www.the-gang.net
+* @copyright Copyright (C) 2005-2008 Keyboard Monkeys Ltd. http://www.kb-m.com
* @license http://www.fsf.org/copyleft/lgpl.html GNU Lesser General Public License
* @author Alejandro Pedraza
-* @since Sciret 1.0.4
+* @since Sciret 1.2
* @package Sciret
-* @packager TheGang
+* @packager Keyboard Monkeys
*/
require 'actions/Action.php';
Modified: trunk/actions/SaveBookmark.php
===================================================================
--- trunk/actions/SaveBookmark.php 2008-08-20 15:31:30 UTC (rev 616)
+++ trunk/actions/SaveBookmark.php 2008-08-22 16:19:26 UTC (rev 617)
@@ -1,12 +1,12 @@
<?php
/*
-* @copyright Copyright (C) 2005-2007 TheGang http://www.the-gang.net
+* @copyright Copyright (C) 2005-2008 Keyboard Monkeys Ltd. http://www.kb-m.com
* @license http://www.fsf.org/copyleft/lgpl.html GNU Lesser General Public License
* @author Alejandro Pedraza
-* @since Sciret 1.0.4
+* @since Sciret 1.2
* @package Sciret
-* @packager TheGang
+* @packager Keyboard Monkeys
*/
require 'actions/Action.php';
Modified: trunk/actions/SaveCategory.php
===================================================================
--- trunk/actions/SaveCategory.php 2008-08-20 15:31:30 UTC (rev 616)
+++ trunk/actions/SaveCategory.php 2008-08-22 16:19:26 UTC (rev 617)
@@ -1,12 +1,12 @@
<?php
/*
-* @copyright Copyright (C) 2005-2007 TheGang http://www.the-gang.net
+* @copyright Copyright (C) 2005-2008 Keyboard Monkeys Ltd. http://www.kb-m.com
* @license http://www.fsf.org/copyleft/lgpl.html GNU Lesser General Public License
* @author Alejandro Pedraza
-* @since Sciret 1.0
+* @since Sciret 1.2
* @package Sciret
-* @packager TheGang
+* @packager Keyboard Monkeys
*/
require 'actions/Action.php';
Modified: trunk/actions/SavePreferences.php
===================================================================
--- trunk/actions/SavePreferences.php 2008-08-20 15:31:30 UTC (rev 616)
+++ trunk/actions/SavePreferences.php 2008-08-22 16:19:26 UTC (rev 617)
@@ -1,12 +1,12 @@
<?php
/*
-* @copyright Copyright (C) 2005-2007 TheGang http://www.the-gang.net
+* @copyright Copyright (C) 2005-2008 Keyboard Monkeys Ltd. http://www.kb-m.com
* @license http://www.fsf.org/copyleft/lgpl.html GNU Lesser General Public License
* @author Alejandro Pedraza
-* @since Sciret 1.0
+* @since Sciret 1.2
* @package Sciret
-* @packager TheGang
+* @packager Keyboard Monkeys
*/
require 'actions/Action.php';
Modified: trunk/actions/SaveTodo.php
===================================================================
--- trunk/actions/SaveTodo.php 2008-08-20 15:31:30 UTC (rev 616)
+++ trunk/actions/SaveTodo.php 2008-08-22 16:19:26 UTC (rev 617)
@@ -1,12 +1,12 @@
<?php
/*
-* @copyright Copyright (C) 2005-2007 TheGang http://www.the-gang.net
+* @copyright Copyright (C) 2005-2008 Keyboard Monkeys Ltd. http://www.kb-m.com
* @license http://www.fsf.org/copyleft/lgpl.html GNU Lesser General Public License
* @author Alejandro Pedraza
-* @since Sciret 1.1
+* @since Sciret 1.2
* @package Sciret
-* @packager TheGang
+* @packager Keyboard Monkeys
*/
require 'actions/Action.php';
Modified: trunk/actions/ShowCategory.php
===================================================================
--- trunk/actions/ShowCategory.php 2008-08-20 15:31:30 UTC (rev 616)
+++ trunk/actions/ShowCategory.php 2008-08-22 16:19:26 UTC (rev 617)
@@ -1,5 +1,14 @@
<?php
+/*
+* @copyright Copyright (C) 2005-2008 Keyboard Monkeys Ltd. http://www.kb-m.com
+* @license http://www.fsf.org/copyleft/lgpl.html GNU Lesser General Public License
+* @author Alejandro Pedraza
+* @since Sciret 1.2
+* @package Sciret
+* @packager Keyboard Monkeys
+*/
+
require 'actions/Action.php';
class ShowCategory extends Action {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|