Commit 82f923ae61e57ae5b99239f89308456592c058fc
1 parent
cc4db5ce
KTS-1729
"Copyright comments missing from rss plugin files" Fixed. Reviewed By: Conrad git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@6318 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
6 changed files
with
141 additions
and
25 deletions
plugins/rssplugin/KTrss.inc.php
| 1 | 1 | <?php |
| 2 | -/* | |
| 3 | - * Created on 08 Jan 2007 | |
| 2 | +/** | |
| 4 | 3 | * |
| 5 | - * To change the template for this generated file go to | |
| 6 | - * Window - Preferences - PHPeclipse - PHP - Code Templates | |
| 4 | + * Copyright (c) 2007 Jam Warehouse http://www.jamwarehouse.com | |
| 5 | + * | |
| 6 | + * This program is free software; you can redistribute it and/or modify | |
| 7 | + * it under the terms of the GNU General Public License as published by | |
| 8 | + * the Free Software Foundation; using version 2 of the License. | |
| 9 | + * | |
| 10 | + * This program is distributed in the hope that it will be useful, | |
| 11 | + * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 12 | + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 13 | + * GNU General Public License for more details. | |
| 14 | + * | |
| 15 | + * You should have received a copy of the GNU General Public License | |
| 16 | + * along with this program; if not, write to the Free Software | |
| 17 | + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
| 18 | + * | |
| 19 | + * ------------------------------------------------------------------------- | |
| 20 | + * | |
| 21 | + * You can contact the copyright owner regarding licensing via the contact | |
| 22 | + * details that can be found on the KnowledgeTree web site: | |
| 23 | + * | |
| 24 | + * http://www.knowledgetree.com/ | |
| 7 | 25 | */ |
| 8 | 26 | |
| 9 | 27 | // boilerplate. | ... | ... |
plugins/rssplugin/RSSDocumentLinkAction.php
| 1 | 1 | <?php |
| 2 | +/** | |
| 3 | + * | |
| 4 | + * Copyright (c) 2007 Jam Warehouse http://www.jamwarehouse.com | |
| 5 | + * | |
| 6 | + * This program is free software; you can redistribute it and/or modify | |
| 7 | + * it under the terms of the GNU General Public License as published by | |
| 8 | + * the Free Software Foundation; using version 2 of the License. | |
| 9 | + * | |
| 10 | + * This program is distributed in the hope that it will be useful, | |
| 11 | + * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 12 | + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 13 | + * GNU General Public License for more details. | |
| 14 | + * | |
| 15 | + * You should have received a copy of the GNU General Public License | |
| 16 | + * along with this program; if not, write to the Free Software | |
| 17 | + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
| 18 | + * | |
| 19 | + * ------------------------------------------------------------------------- | |
| 20 | + * | |
| 21 | + * You can contact the copyright owner regarding licensing via the contact | |
| 22 | + * details that can be found on the KnowledgeTree web site: | |
| 23 | + * | |
| 24 | + * http://www.knowledgetree.com/ | |
| 25 | + */ | |
| 26 | + | |
| 2 | 27 | require_once(KT_LIB_DIR . '/actions/documentaction.inc.php'); |
| 3 | 28 | require_once(KT_LIB_DIR . '/permissions/permission.inc.php'); |
| 4 | 29 | require_once(KT_LIB_DIR . '/permissions/permissionutil.inc.php'); | ... | ... |
plugins/rssplugin/RSSFolderLinkAction.php
| 1 | 1 | <?php |
| 2 | +/** | |
| 3 | + * | |
| 4 | + * Copyright (c) 2007 Jam Warehouse http://www.jamwarehouse.com | |
| 5 | + * | |
| 6 | + * This program is free software; you can redistribute it and/or modify | |
| 7 | + * it under the terms of the GNU General Public License as published by | |
| 8 | + * the Free Software Foundation; using version 2 of the License. | |
| 9 | + * | |
| 10 | + * This program is distributed in the hope that it will be useful, | |
| 11 | + * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 12 | + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 13 | + * GNU General Public License for more details. | |
| 14 | + * | |
| 15 | + * You should have received a copy of the GNU General Public License | |
| 16 | + * along with this program; if not, write to the Free Software | |
| 17 | + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
| 18 | + * | |
| 19 | + * ------------------------------------------------------------------------- | |
| 20 | + * | |
| 21 | + * You can contact the copyright owner regarding licensing via the contact | |
| 22 | + * details that can be found on the KnowledgeTree web site: | |
| 23 | + * | |
| 24 | + * http://www.knowledgetree.com/ | |
| 25 | + */ | |
| 26 | + | |
| 2 | 27 | require_once(KT_LIB_DIR . '/actions/folderaction.inc.php'); |
| 3 | 28 | require_once(KT_LIB_DIR . '/permissions/permission.inc.php'); |
| 4 | 29 | require_once(KT_LIB_DIR . '/permissions/permissionutil.inc.php'); | ... | ... |
plugins/rssplugin/RSSPlugin.php
| 1 | 1 | <?php |
| 2 | -/* | |
| 3 | - * Created on 03 Jan 2007 | |
| 2 | +/** | |
| 4 | 3 | * |
| 5 | - * To change the template for this generated file go to | |
| 6 | - * Window - Preferences - PHPeclipse - PHP - Code Templates | |
| 4 | + * Copyright (c) 2007 Jam Warehouse http://www.jamwarehouse.com | |
| 5 | + * | |
| 6 | + * This program is free software; you can redistribute it and/or modify | |
| 7 | + * it under the terms of the GNU General Public License as published by | |
| 8 | + * the Free Software Foundation; using version 2 of the License. | |
| 9 | + * | |
| 10 | + * This program is distributed in the hope that it will be useful, | |
| 11 | + * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 12 | + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 13 | + * GNU General Public License for more details. | |
| 14 | + * | |
| 15 | + * You should have received a copy of the GNU General Public License | |
| 16 | + * along with this program; if not, write to the Free Software | |
| 17 | + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
| 18 | + * | |
| 19 | + * ------------------------------------------------------------------------- | |
| 20 | + * | |
| 21 | + * You can contact the copyright owner regarding licensing via the contact | |
| 22 | + * details that can be found on the KnowledgeTree web site: | |
| 23 | + * | |
| 24 | + * http://www.knowledgetree.com/ | |
| 7 | 25 | */ |
| 8 | 26 | |
| 9 | 27 | require_once(KT_LIB_DIR . "/plugins/plugin.inc.php"); | ... | ... |
plugins/rssplugin/loadFeed.inc.php
| 1 | 1 | <?php |
| 2 | -/* | |
| 3 | - * Created on 10 Jan 2007 | |
| 2 | +/** | |
| 4 | 3 | * |
| 5 | - * To change the template for this generated file go to | |
| 6 | - * Window - Preferences - PHPeclipse - PHP - Code Templates | |
| 4 | + * Copyright (c) 2007 Jam Warehouse http://www.jamwarehouse.com | |
| 5 | + * | |
| 6 | + * This program is free software; you can redistribute it and/or modify | |
| 7 | + * it under the terms of the GNU General Public License as published by | |
| 8 | + * the Free Software Foundation; using version 2 of the License. | |
| 9 | + * | |
| 10 | + * This program is distributed in the hope that it will be useful, | |
| 11 | + * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 12 | + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 13 | + * GNU General Public License for more details. | |
| 14 | + * | |
| 15 | + * You should have received a copy of the GNU General Public License | |
| 16 | + * along with this program; if not, write to the Free Software | |
| 17 | + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
| 18 | + * | |
| 19 | + * ------------------------------------------------------------------------- | |
| 20 | + * | |
| 21 | + * You can contact the copyright owner regarding licensing via the contact | |
| 22 | + * details that can be found on the KnowledgeTree web site: | |
| 23 | + * | |
| 24 | + * http://www.knowledgetree.com/ | |
| 7 | 25 | */ |
| 8 | 26 | require_once('../../config/dmsDefaults.php'); |
| 9 | 27 | require_once(KT_DIR. '/plugins/rssplugin/rss2array.inc.php'); | ... | ... |
plugins/rssplugin/rss2array.inc.php
| 1 | 1 | <? |
| 2 | 2 | |
| 3 | - # | |
| 4 | - # rss2array | |
| 5 | - # | |
| 6 | - # example usage: | |
| 7 | - # | |
| 8 | - # require("inc.rss2array.php"); | |
| 9 | - # $rss_array = rss2array("http://news.bbc.co.uk/rss/newsonline_world_edition/front_page/rss.xml"); | |
| 10 | - # print "<pre>"; | |
| 11 | - # print_r($rss_array); | |
| 12 | - # print "</pre>"; | |
| 13 | - # | |
| 14 | - # author: dan@freelancers.net | |
| 15 | - # | |
| 3 | +/** | |
| 4 | + * | |
| 5 | + * Copyright (c) 2007 Jam Warehouse http://www.jamwarehouse.com | |
| 6 | + * | |
| 7 | + * This program is free software; you can redistribute it and/or modify | |
| 8 | + * it under the terms of the GNU General Public License as published by | |
| 9 | + * the Free Software Foundation; using version 2 of the License. | |
| 10 | + * | |
| 11 | + * This program is distributed in the hope that it will be useful, | |
| 12 | + * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 13 | + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 14 | + * GNU General Public License for more details. | |
| 15 | + * | |
| 16 | + * You should have received a copy of the GNU General Public License | |
| 17 | + * along with this program; if not, write to the Free Software | |
| 18 | + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
| 19 | + * | |
| 20 | + * ------------------------------------------------------------------------- | |
| 21 | + * | |
| 22 | + * You can contact the copyright owner regarding licensing via the contact | |
| 23 | + * details that can be found on the KnowledgeTree web site: | |
| 24 | + * | |
| 25 | + * http://www.knowledgetree.com/ | |
| 26 | + */ | |
| 27 | + | |
| 16 | 28 | |
| 17 | 29 | # |
| 18 | 30 | # global vars | ... | ... |