diff --git a/bin/openoffice/pdfgen.py b/bin/openoffice/pdfgen.py index 0fee1ce..9638212 100755 --- a/bin/openoffice/pdfgen.py +++ b/bin/openoffice/pdfgen.py @@ -5,7 +5,7 @@ # KnowledgeTree Community Edition # Document Management Made Simple # Copyright (C) 2008, 2009 KnowledgeTree Inc. -# Portions copyright The Jam Warehouse Software (Pty) Limited +# # # This program is free software; you can redistribute it and/or modify it under # the terms of the GNU General Public License version 3 as published by the diff --git a/config/siteMap.inc b/config/siteMap.inc index cec4c44..7c395df 100644 --- a/config/siteMap.inc +++ b/config/siteMap.inc @@ -7,7 +7,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/config/tableMappings.inc b/config/tableMappings.inc index ed311f6..0a78d93 100644 --- a/config/tableMappings.inc +++ b/config/tableMappings.inc @@ -7,7 +7,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/dmsctl.bat b/dmsctl.bat index 01b49fa..2b1660e 100644 --- a/dmsctl.bat +++ b/dmsctl.bat @@ -17,29 +17,34 @@ set SOFFICE_PORT=8100 set OpenofficeServiceName=KTOpenoffice set SchedulerServiceName=KTScheduler set LuceneServiceName=KTLucene +set MySQLServiceName=MySQL_ZendServer51 rem ============= MAIN ============== -if NOT ""%1"" == ""help"" IF NOT ""%1"" == ""start"" IF NOT ""%1"" == ""path"" IF NOT ""%1"" == ""stop"" IF NOT ""%1"" == ""restart"" IF NOT ""%1"" == ""install"" IF NOT ""%1"" == ""uninstall"" goto help +IF NOT ""%1"" == ""start"" IF NOT ""%1"" == ""path"" IF NOT ""%1"" == ""stop"" IF NOT ""%1"" == ""restart"" IF NOT ""%1"" == ""install"" IF NOT ""%1"" == ""uninstall"" goto help goto %1 :help echo USAGE: echo. -echo dmsctl.bat ^ +echo dmsctl.bat ^ [servicename] echo. -echo help - this screen +echo help - this screen echo. -echo start - start the services -echo stop - stop the services -echo restart - restart the services +echo start - start the services +echo stop - stop the services +echo restart - restart the services echo. -echo install - install the services +echo install - install the services echo uninstall - uninstall the services echo. +echo servicename - optional service name to start/stop only that service. +echo only mysql is supported for individual control at this time. +echo. goto end :start +IF ""%2"" == ""mysql"" goto start_mysql echo Starting services sc start %OpenofficeServiceName% sc start %LuceneServiceName% @@ -48,6 +53,7 @@ sc start %SchedulerServiceName% goto end :stop +IF ""%2"" == ""mysql"" goto stop_mysql echo Stopping services sc stop %LuceneServiceName% sc stop %SchedulerServiceName% @@ -56,6 +62,16 @@ ping -n 7 127.0.0.1 > null IF ""%1"" == ""restart"" goto start goto end +:start_mysql +echo Starting MySQL Service +sc start %MySQLServiceName% +goto end + +:stop_mysql +echo Stopping MySQL Service +sc stop %MySQLServiceName% +goto end + :restart goto stop diff --git a/dmsctl.sh b/dmsctl.sh index b571fd9..30f402e 100755 --- a/dmsctl.sh +++ b/dmsctl.sh @@ -1,5 +1,3 @@ -#!/bin/bash - # Boot KnowledgeTree services # chkconfig: 2345 55 25 # description: KnowledgeTree Services @@ -40,6 +38,7 @@ LUCENE_PIDFILE=$INSTALL_PATH/var/log/lucene.pid LUCENE_PID="" LUCENE="$JAVABIN -Xms512M -Xmx512M -jar ktlucene.jar" LUCENE_STATUS="" +:q # Scheduler SCHEDULER_PATH="$INSTALL_PATH/bin/" @@ -49,6 +48,13 @@ SCHEDULERBIN="$INSTALL_PATH/var/bin/schedulerTask.sh" SCHEDULER="$SCHEDULERBIN" SCHEDULER_STATUS="" +# MySQL: modify if needed for your installation +MYSQL_PATH=/etc/init.d +MYSQLBIN=mysql +MYSQL_PIDFILE=/var/run/mysqld/mysqld.pid +MYSQL_PID="" +MYSQL_STATUS="" + get_pid() { PID="" PIDFILE=$1 @@ -92,6 +98,16 @@ get_scheduler_pid() { fi } +get_mysql_pid() { + get_pid $MYSQL_PIDFILE + if [ ! $PID ]; then + return + fi + if [ $PID -gt 0 ]; then + MYSQL_PID=$PID + fi +} + is_service_running() { PID=$1 if [ "x$PID" != "x" ] && kill -0 $PID 2>/dev/null ; then @@ -138,6 +154,18 @@ is_scheduler_running() { return $RUNNING } +is_mysql_running() { + get_mysql_pid + is_service_running $MYSQL_PID + RUNNING=$? + if [ $RUNNING -eq 0 ]; then + MYSQL_STATUS="mysql not running" + else + MYSQL_STATUS="mysql already running" + fi + return $RUNNING +} + start_soffice() { is_soffice_running RUNNING=$? @@ -272,12 +300,54 @@ stop_scheduler() { fi } +start_mysql() { + is_mysql_running + RUNNING=$? + + if [ $RUNNING -eq 1 ]; then + echo "$0 $ARG: mysql (pid $MYSQL_PID) already running" + else + nohup $MYSQL_PATH/$MYSQLBIN start &> $INSTALL_PATH/var/log/dmsctl.log & + if [ $? -eq 0 ]; then + echo "$0 $ARG: mysql started" + ps ax | grep $MYSQLBIN | awk {'print $1'} > $MYSQL_PIDFILE + sleep 2 + else + echo "$0 $ARG: mysql could not be started" + ERROR=3 + fi + fi +} + +stop_mysql() { + NO_EXIT_ON_ERROR=$1 + is_mysql_running + RUNNING=$? + + if [ $RUNNING -eq 0 ]; then + echo "$0 $ARG: $MYSQL_STATUS" + if [ "x$NO_EXIT_ON_ERROR" != "xno_exit" ]; then + exit + else + return + fi + fi + get_mysql_pid + if kill $MYSQL_PID ; then + echo "$0 $ARG: mysql stopped" + else + echo "$0 $ARG: mysql could not be stopped" + ERROR=4 + fi +} + help() { echo "usage: $0 help" echo " $0 (start|stop|restart)" echo " $0 (start|stop|restart) scheduler" echo " $0 (start|stop|restart) soffice" echo " $0 (start|stop|restart) lucene" + echo " $0 (start|stop|restart) mysql" cat <KnowledgeT gettext("All rights reserved."); /* ./templates/ktcore/principals/about.smarty */ -gettext("Portions copyright The Jam Warehouse Software (Pty) Limited."); +gettext("."); /* ./templates/ktcore/principals/about.smarty */ gettext("This program is free software and published under the GNU General Public License version 3"); diff --git a/ktwebdav/index.php b/ktwebdav/index.php index 2f017e6..e40fd98 100644 --- a/ktwebdav/index.php +++ b/ktwebdav/index.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/ktwebdav/ktwebdav.php b/ktwebdav/ktwebdav.php index 0c1bb56..8b42235 100644 --- a/ktwebdav/ktwebdav.php +++ b/ktwebdav/ktwebdav.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/ktwebdav/lib/KTWebDAVServer.inc.php b/ktwebdav/lib/KTWebDAVServer.inc.php index a11450b..cb4d796 100644 --- a/ktwebdav/lib/KTWebDAVServer.inc.php +++ b/ktwebdav/lib/KTWebDAVServer.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/alert/delivery/EmailAlert.inc b/lib/alert/delivery/EmailAlert.inc index 6dc0328..9d5df8a 100644 --- a/lib/alert/delivery/EmailAlert.inc +++ b/lib/alert/delivery/EmailAlert.inc @@ -7,7 +7,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/alert/delivery/SMSAlert.inc b/lib/alert/delivery/SMSAlert.inc index 905d540..978db71 100644 --- a/lib/alert/delivery/SMSAlert.inc +++ b/lib/alert/delivery/SMSAlert.inc @@ -7,7 +7,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/api/ktcmis/classes/CMISDocumentPropertyCollection.inc.php b/lib/api/ktcmis/classes/CMISDocumentPropertyCollection.inc.php index 87c9498..a6b9127 100644 --- a/lib/api/ktcmis/classes/CMISDocumentPropertyCollection.inc.php +++ b/lib/api/ktcmis/classes/CMISDocumentPropertyCollection.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008,2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/api/ktcmis/classes/CMISFolderPropertyCollection.inc.php b/lib/api/ktcmis/classes/CMISFolderPropertyCollection.inc.php index 9154917..be8cf23 100644 --- a/lib/api/ktcmis/classes/CMISFolderPropertyCollection.inc.php +++ b/lib/api/ktcmis/classes/CMISFolderPropertyCollection.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008,2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/api/ktcmis/classes/CMISObject.inc.php b/lib/api/ktcmis/classes/CMISObject.inc.php index 3ed2bc6..fd18b78 100644 --- a/lib/api/ktcmis/classes/CMISObject.inc.php +++ b/lib/api/ktcmis/classes/CMISObject.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008,2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/api/ktcmis/classes/CMISPropertyCollection.inc.php b/lib/api/ktcmis/classes/CMISPropertyCollection.inc.php index 3ab27e4..1f93815 100644 --- a/lib/api/ktcmis/classes/CMISPropertyCollection.inc.php +++ b/lib/api/ktcmis/classes/CMISPropertyCollection.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008,2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/api/ktcmis/classes/CMISRepository.inc.php b/lib/api/ktcmis/classes/CMISRepository.inc.php index ea66a06..db4390f 100644 --- a/lib/api/ktcmis/classes/CMISRepository.inc.php +++ b/lib/api/ktcmis/classes/CMISRepository.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008,2009 KnowledgeTree Inc. -* Portions copyright The Jam Warehouse Software (Pty) Limited +* * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/api/ktcmis/classes/CMISRepositoryCapabilities.inc.php b/lib/api/ktcmis/classes/CMISRepositoryCapabilities.inc.php index 75e685b..7d23077 100644 --- a/lib/api/ktcmis/classes/CMISRepositoryCapabilities.inc.php +++ b/lib/api/ktcmis/classes/CMISRepositoryCapabilities.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008,2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/api/ktcmis/classes/CMISRepositoryInfo.inc.php b/lib/api/ktcmis/classes/CMISRepositoryInfo.inc.php index 69b665e..dd715d0 100644 --- a/lib/api/ktcmis/classes/CMISRepositoryInfo.inc.php +++ b/lib/api/ktcmis/classes/CMISRepositoryInfo.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008,2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/api/ktcmis/ktNavigationService.inc.php b/lib/api/ktcmis/ktNavigationService.inc.php index d247442..e094895 100644 --- a/lib/api/ktcmis/ktNavigationService.inc.php +++ b/lib/api/ktcmis/ktNavigationService.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008,2009 KnowledgeTree Inc. -* Portions copyright The Jam Warehouse Software (Pty) Limited +* * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/api/ktcmis/ktObjectService.inc.php b/lib/api/ktcmis/ktObjectService.inc.php index a7c5fcd..1f6ba70 100644 --- a/lib/api/ktcmis/ktObjectService.inc.php +++ b/lib/api/ktcmis/ktObjectService.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008,2009 KnowledgeTree Inc. -* Portions copyright The Jam Warehouse Software (Pty) Limited +* * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/api/ktcmis/ktRepositoryService.inc.php b/lib/api/ktcmis/ktRepositoryService.inc.php index 4b5423c..664e708 100644 --- a/lib/api/ktcmis/ktRepositoryService.inc.php +++ b/lib/api/ktcmis/ktRepositoryService.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008,2009 KnowledgeTree Inc. -* Portions copyright The Jam Warehouse Software (Pty) Limited +* * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/api/ktcmis/ktService.inc.php b/lib/api/ktcmis/ktService.inc.php index e3d33da..f7a4659 100644 --- a/lib/api/ktcmis/ktService.inc.php +++ b/lib/api/ktcmis/ktService.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008,2009 KnowledgeTree Inc. -* Portions copyright The Jam Warehouse Software (Pty) Limited +* * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/api/ktcmis/ktVersioningService.inc.php b/lib/api/ktcmis/ktVersioningService.inc.php index cc45c39..4d97e64 100644 --- a/lib/api/ktcmis/ktVersioningService.inc.php +++ b/lib/api/ktcmis/ktVersioningService.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008,2009 KnowledgeTree Inc. -* Portions copyright The Jam Warehouse Software (Pty) Limited +* * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/api/ktcmis/objecttypes/CMISDocumentObject.inc.php b/lib/api/ktcmis/objecttypes/CMISDocumentObject.inc.php index f80a50e..6debc34 100644 --- a/lib/api/ktcmis/objecttypes/CMISDocumentObject.inc.php +++ b/lib/api/ktcmis/objecttypes/CMISDocumentObject.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008,2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/api/ktcmis/objecttypes/CMISFolderObject.inc.php b/lib/api/ktcmis/objecttypes/CMISFolderObject.inc.php index d97f53a..bc281e2 100644 --- a/lib/api/ktcmis/objecttypes/CMISFolderObject.inc.php +++ b/lib/api/ktcmis/objecttypes/CMISFolderObject.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008,2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/api/ktcmis/services/CMISNavigationService.inc.php b/lib/api/ktcmis/services/CMISNavigationService.inc.php index 60610e7..1847ecb 100644 --- a/lib/api/ktcmis/services/CMISNavigationService.inc.php +++ b/lib/api/ktcmis/services/CMISNavigationService.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008,2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/api/ktcmis/services/CMISRepositoryService.inc.php b/lib/api/ktcmis/services/CMISRepositoryService.inc.php index fdc38ed..78c8401 100644 --- a/lib/api/ktcmis/services/CMISRepositoryService.inc.php +++ b/lib/api/ktcmis/services/CMISRepositoryService.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008,2009 KnowledgeTree Inc. -* Portions copyright The Jam Warehouse Software (Pty) Limited +* * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/api/ktcmis/util/CMISUtil.inc.php b/lib/api/ktcmis/util/CMISUtil.inc.php index 765b7c0..4678dd8 100644 --- a/lib/api/ktcmis/util/CMISUtil.inc.php +++ b/lib/api/ktcmis/util/CMISUtil.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008,2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/authentication/Authenticator.inc b/lib/authentication/Authenticator.inc index b83246f..13c7c41 100644 --- a/lib/authentication/Authenticator.inc +++ b/lib/authentication/Authenticator.inc @@ -7,7 +7,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/authentication/DBAuthenticator.inc b/lib/authentication/DBAuthenticator.inc index 56ee20b..d438bd2 100644 --- a/lib/authentication/DBAuthenticator.inc +++ b/lib/authentication/DBAuthenticator.inc @@ -7,7 +7,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/authentication/authenticationprovider.inc.php b/lib/authentication/authenticationprovider.inc.php index 35ea290..ae5366e 100644 --- a/lib/authentication/authenticationprovider.inc.php +++ b/lib/authentication/authenticationprovider.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/authentication/authenticationproviderregistry.inc.php b/lib/authentication/authenticationproviderregistry.inc.php index af3d785..e777d6e 100644 --- a/lib/authentication/authenticationproviderregistry.inc.php +++ b/lib/authentication/authenticationproviderregistry.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/authentication/authenticationsource.inc.php b/lib/authentication/authenticationsource.inc.php index d36a807..672d55e 100644 --- a/lib/authentication/authenticationsource.inc.php +++ b/lib/authentication/authenticationsource.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/authentication/authenticationutil.inc.php b/lib/authentication/authenticationutil.inc.php index 1519e23..a3caea5 100644 --- a/lib/authentication/authenticationutil.inc.php +++ b/lib/authentication/authenticationutil.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/authentication/builtinauthenticationprovider.inc.php b/lib/authentication/builtinauthenticationprovider.inc.php index 5a1e0ab..1f2fcc3 100644 --- a/lib/authentication/builtinauthenticationprovider.inc.php +++ b/lib/authentication/builtinauthenticationprovider.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/authentication/interceptor.inc.php b/lib/authentication/interceptor.inc.php index 0561664..8f6253f 100644 --- a/lib/authentication/interceptor.inc.php +++ b/lib/authentication/interceptor.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/authentication/interceptorinstances.inc.php b/lib/authentication/interceptorinstances.inc.php index 8f09279..0958408 100644 --- a/lib/authentication/interceptorinstances.inc.php +++ b/lib/authentication/interceptorinstances.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/authentication/interceptorregistry.inc.php b/lib/authentication/interceptorregistry.inc.php index 6a20bee..6da8f10 100644 --- a/lib/authentication/interceptorregistry.inc.php +++ b/lib/authentication/interceptorregistry.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/browse/BrowseColumns.inc.php b/lib/browse/BrowseColumns.inc.php index 4707397..a8ebf36 100644 --- a/lib/browse/BrowseColumns.inc.php +++ b/lib/browse/BrowseColumns.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/browse/Criteria.inc b/lib/browse/Criteria.inc index 2c64c4e..de369e3 100644 --- a/lib/browse/Criteria.inc +++ b/lib/browse/Criteria.inc @@ -7,7 +7,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/browse/DocumentCollection.inc.php b/lib/browse/DocumentCollection.inc.php index 7b244f4..3aa8a1a 100644 --- a/lib/browse/DocumentCollection.inc.php +++ b/lib/browse/DocumentCollection.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/browse/PartialQuery.inc.php b/lib/browse/PartialQuery.inc.php index e73c786..9ba677d 100644 --- a/lib/browse/PartialQuery.inc.php +++ b/lib/browse/PartialQuery.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/browse/browseutil.inc.php b/lib/browse/browseutil.inc.php index 60d369c..f51c46e 100644 --- a/lib/browse/browseutil.inc.php +++ b/lib/browse/browseutil.inc.php @@ -7,7 +7,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/browse/columnentry.inc.php b/lib/browse/columnentry.inc.php index ea8f369..1ac8ab4 100644 --- a/lib/browse/columnentry.inc.php +++ b/lib/browse/columnentry.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/browse/columnregistry.inc.php b/lib/browse/columnregistry.inc.php index 14197fd..661717f 100644 --- a/lib/browse/columnregistry.inc.php +++ b/lib/browse/columnregistry.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/browse/criteriaregistry.php b/lib/browse/criteriaregistry.php index 58e76d8..c6a9538 100644 --- a/lib/browse/criteriaregistry.php +++ b/lib/browse/criteriaregistry.php @@ -4,7 +4,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/cache/cache.inc.php b/lib/cache/cache.inc.php index ab80699..12c57c4 100644 --- a/lib/cache/cache.inc.php +++ b/lib/cache/cache.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/config/config.inc.php b/lib/config/config.inc.php index ecd552e..632aeeb 100644 --- a/lib/config/config.inc.php +++ b/lib/config/config.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/dashboard/DashletDisables.inc.php b/lib/dashboard/DashletDisables.inc.php index 5875803..9a063d2 100644 --- a/lib/dashboard/DashletDisables.inc.php +++ b/lib/dashboard/DashletDisables.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/dashboard/Notification.inc.php b/lib/dashboard/Notification.inc.php index 8644d02..fe74793 100644 --- a/lib/dashboard/Notification.inc.php +++ b/lib/dashboard/Notification.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/dashboard/NotificationRegistry.inc.php b/lib/dashboard/NotificationRegistry.inc.php index 3003ddb..72b10b2 100644 --- a/lib/dashboard/NotificationRegistry.inc.php +++ b/lib/dashboard/NotificationRegistry.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/dashboard/dashlet.inc.php b/lib/dashboard/dashlet.inc.php index 8ff1ed6..d309c1d 100644 --- a/lib/dashboard/dashlet.inc.php +++ b/lib/dashboard/dashlet.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/dashboard/dashletregistry.inc.php b/lib/dashboard/dashletregistry.inc.php index 835725b..11e8119 100644 --- a/lib/dashboard/dashletregistry.inc.php +++ b/lib/dashboard/dashletregistry.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/database/datetime.inc b/lib/database/datetime.inc index 6bcffd2..55d0109 100644 --- a/lib/database/datetime.inc +++ b/lib/database/datetime.inc @@ -7,7 +7,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/database/dbcompat.inc b/lib/database/dbcompat.inc index 60f373b..97d9463 100644 --- a/lib/database/dbcompat.inc +++ b/lib/database/dbcompat.inc @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/database/dbutil.inc b/lib/database/dbutil.inc index 0545916..fc1be9f 100644 --- a/lib/database/dbutil.inc +++ b/lib/database/dbutil.inc @@ -7,7 +7,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/database/lookup.inc b/lib/database/lookup.inc index ec3bcb5..ce5c4d3 100644 --- a/lib/database/lookup.inc +++ b/lib/database/lookup.inc @@ -7,7 +7,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/database/schema.inc.php b/lib/database/schema.inc.php index b538450..2c90699 100644 --- a/lib/database/schema.inc.php +++ b/lib/database/schema.inc.php @@ -8,7 +8,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/database/sqlfile.inc.php b/lib/database/sqlfile.inc.php index 9fb3ebc..57ac8ef 100644 --- a/lib/database/sqlfile.inc.php +++ b/lib/database/sqlfile.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/discussions/DiscussionComment.inc b/lib/discussions/DiscussionComment.inc index c5229ed..cddc425 100644 --- a/lib/discussions/DiscussionComment.inc +++ b/lib/discussions/DiscussionComment.inc @@ -7,7 +7,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/discussions/DiscussionThread.inc b/lib/discussions/DiscussionThread.inc index 87cb9b0..63e99e4 100644 --- a/lib/discussions/DiscussionThread.inc +++ b/lib/discussions/DiscussionThread.inc @@ -7,7 +7,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/dispatcher.inc.php b/lib/dispatcher.inc.php index 9b695da..ce0d362 100644 --- a/lib/dispatcher.inc.php +++ b/lib/dispatcher.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/documentmanagement/Document.inc b/lib/documentmanagement/Document.inc index c22fa3b..f17d087 100644 --- a/lib/documentmanagement/Document.inc +++ b/lib/documentmanagement/Document.inc @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/documentmanagement/DocumentField.inc b/lib/documentmanagement/DocumentField.inc index d35a244..51c34d2 100755 --- a/lib/documentmanagement/DocumentField.inc +++ b/lib/documentmanagement/DocumentField.inc @@ -7,7 +7,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/documentmanagement/DocumentFieldLink.inc b/lib/documentmanagement/DocumentFieldLink.inc index 349b29c..96baf14 100644 --- a/lib/documentmanagement/DocumentFieldLink.inc +++ b/lib/documentmanagement/DocumentFieldLink.inc @@ -7,7 +7,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/documentmanagement/DocumentLink.inc b/lib/documentmanagement/DocumentLink.inc index f42dc44..d17171b 100644 --- a/lib/documentmanagement/DocumentLink.inc +++ b/lib/documentmanagement/DocumentLink.inc @@ -8,7 +8,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/documentmanagement/DocumentTransaction.inc b/lib/documentmanagement/DocumentTransaction.inc index 1695fbe..ddfb055 100644 --- a/lib/documentmanagement/DocumentTransaction.inc +++ b/lib/documentmanagement/DocumentTransaction.inc @@ -9,7 +9,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/documentmanagement/DocumentTransactionType.inc.php b/lib/documentmanagement/DocumentTransactionType.inc.php index 314f9e0..bcfef2d 100644 --- a/lib/documentmanagement/DocumentTransactionType.inc.php +++ b/lib/documentmanagement/DocumentTransactionType.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/documentmanagement/DocumentType.inc b/lib/documentmanagement/DocumentType.inc index b7b50eb..8a312b7 100644 --- a/lib/documentmanagement/DocumentType.inc +++ b/lib/documentmanagement/DocumentType.inc @@ -7,7 +7,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/documentmanagement/LinkType.inc b/lib/documentmanagement/LinkType.inc index c16996a..19a9fca 100644 --- a/lib/documentmanagement/LinkType.inc +++ b/lib/documentmanagement/LinkType.inc @@ -7,7 +7,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/documentmanagement/MDTree.inc b/lib/documentmanagement/MDTree.inc index 920608a..ead3707 100644 --- a/lib/documentmanagement/MDTree.inc +++ b/lib/documentmanagement/MDTree.inc @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/documentmanagement/MetaData.inc b/lib/documentmanagement/MetaData.inc index 3166697..56ed4d6 100644 --- a/lib/documentmanagement/MetaData.inc +++ b/lib/documentmanagement/MetaData.inc @@ -7,7 +7,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/documentmanagement/PhysicalDocumentManager.inc b/lib/documentmanagement/PhysicalDocumentManager.inc index 498dfad..1528721 100644 --- a/lib/documentmanagement/PhysicalDocumentManager.inc +++ b/lib/documentmanagement/PhysicalDocumentManager.inc @@ -8,7 +8,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/documentmanagement/documentcontentversion.inc.php b/lib/documentmanagement/documentcontentversion.inc.php index 8eab155..de7b8ec 100644 --- a/lib/documentmanagement/documentcontentversion.inc.php +++ b/lib/documentmanagement/documentcontentversion.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/documentmanagement/documentcore.inc.php b/lib/documentmanagement/documentcore.inc.php index aa242c9..6feb086 100644 --- a/lib/documentmanagement/documentcore.inc.php +++ b/lib/documentmanagement/documentcore.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/documentmanagement/documentmetadataversion.inc.php b/lib/documentmanagement/documentmetadataversion.inc.php index bb00597..a599498 100644 --- a/lib/documentmanagement/documentmetadataversion.inc.php +++ b/lib/documentmanagement/documentmetadataversion.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/documentmanagement/documentutil.inc.php b/lib/documentmanagement/documentutil.inc.php index 7768c9b..edefb93 100644 --- a/lib/documentmanagement/documentutil.inc.php +++ b/lib/documentmanagement/documentutil.inc.php @@ -10,7 +10,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/documentmanagement/observers.inc.php b/lib/documentmanagement/observers.inc.php index 53a4e3c..48cfb02 100644 --- a/lib/documentmanagement/observers.inc.php +++ b/lib/documentmanagement/observers.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/email/Email.inc b/lib/email/Email.inc index ee34c33..52f686c 100644 --- a/lib/email/Email.inc +++ b/lib/email/Email.inc @@ -7,7 +7,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/filelike/filelike.inc.php b/lib/filelike/filelike.inc.php index e52634f..f001b79 100644 --- a/lib/filelike/filelike.inc.php +++ b/lib/filelike/filelike.inc.php @@ -8,7 +8,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/filelike/filelikeutil.inc.php b/lib/filelike/filelikeutil.inc.php index 87e082d..e3019cd 100644 --- a/lib/filelike/filelikeutil.inc.php +++ b/lib/filelike/filelikeutil.inc.php @@ -7,7 +7,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/filelike/fsfilelike.inc.php b/lib/filelike/fsfilelike.inc.php index cd134a3..3bcf912 100644 --- a/lib/filelike/fsfilelike.inc.php +++ b/lib/filelike/fsfilelike.inc.php @@ -7,7 +7,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/filelike/stringfilelike.inc.php b/lib/filelike/stringfilelike.inc.php index 66a8cea..e5f29d3 100644 --- a/lib/filelike/stringfilelike.inc.php +++ b/lib/filelike/stringfilelike.inc.php @@ -7,7 +7,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/foldermanagement/Folder.inc b/lib/foldermanagement/Folder.inc index 2a8e22f..95b2518 100644 --- a/lib/foldermanagement/Folder.inc +++ b/lib/foldermanagement/Folder.inc @@ -7,7 +7,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/foldermanagement/PhysicalFolderManagement.inc b/lib/foldermanagement/PhysicalFolderManagement.inc index 30275ac..1e06ef9 100644 --- a/lib/foldermanagement/PhysicalFolderManagement.inc +++ b/lib/foldermanagement/PhysicalFolderManagement.inc @@ -8,7 +8,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/foldermanagement/compressionArchiveUtil.inc.php b/lib/foldermanagement/compressionArchiveUtil.inc.php index db86b60..2732d20 100644 --- a/lib/foldermanagement/compressionArchiveUtil.inc.php +++ b/lib/foldermanagement/compressionArchiveUtil.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/foldermanagement/foldertransaction.inc.php b/lib/foldermanagement/foldertransaction.inc.php index 60e9aea..3c31e58 100644 --- a/lib/foldermanagement/foldertransaction.inc.php +++ b/lib/foldermanagement/foldertransaction.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/foldermanagement/folderutil.inc.php b/lib/foldermanagement/folderutil.inc.php index 57b3afb..00d25f8 100644 --- a/lib/foldermanagement/folderutil.inc.php +++ b/lib/foldermanagement/folderutil.inc.php @@ -7,7 +7,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/groups/Group.inc b/lib/groups/Group.inc index 6dd1962..a5304b8 100644 --- a/lib/groups/Group.inc +++ b/lib/groups/Group.inc @@ -7,7 +7,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/groups/GroupUtil.php b/lib/groups/GroupUtil.php index 9e3109f..4c8ae94 100644 --- a/lib/groups/GroupUtil.php +++ b/lib/groups/GroupUtil.php @@ -7,7 +7,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/help/help.inc.php b/lib/help/help.inc.php index 69621a5..669ab20 100644 --- a/lib/help/help.inc.php +++ b/lib/help/help.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/help/helpentity.inc.php b/lib/help/helpentity.inc.php index 402b547..8d0ef0c 100644 --- a/lib/help/helpentity.inc.php +++ b/lib/help/helpentity.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/help/helpreplacement.inc.php b/lib/help/helpreplacement.inc.php index c210a1c..3971336 100644 --- a/lib/help/helpreplacement.inc.php +++ b/lib/help/helpreplacement.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/i18n/i18n.inc.php b/lib/i18n/i18n.inc.php index 4e1ed39..73c94ab 100644 --- a/lib/i18n/i18n.inc.php +++ b/lib/i18n/i18n.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/i18n/i18nregistry.inc.php b/lib/i18n/i18nregistry.inc.php index db7f45f..74e9040 100644 --- a/lib/i18n/i18nregistry.inc.php +++ b/lib/i18n/i18nregistry.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/i18n/i18nutil.inc.php b/lib/i18n/i18nutil.inc.php index f712c5b..f2b7eca 100644 --- a/lib/i18n/i18nutil.inc.php +++ b/lib/i18n/i18nutil.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/import/bulkimport.inc.php b/lib/import/bulkimport.inc.php index 0f2dcfa..e73fc59 100644 --- a/lib/import/bulkimport.inc.php +++ b/lib/import/bulkimport.inc.php @@ -7,7 +7,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/import/fsimportstorage.inc.php b/lib/import/fsimportstorage.inc.php index 3c9c1bd..5781330 100644 --- a/lib/import/fsimportstorage.inc.php +++ b/lib/import/fsimportstorage.inc.php @@ -7,7 +7,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/import/importstorage.inc.php b/lib/import/importstorage.inc.php index d6ffab7..14ae589 100644 --- a/lib/import/importstorage.inc.php +++ b/lib/import/importstorage.inc.php @@ -8,7 +8,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/import/zipimportstorage.inc.php b/lib/import/zipimportstorage.inc.php index 6fe6f2d..362507f 100644 --- a/lib/import/zipimportstorage.inc.php +++ b/lib/import/zipimportstorage.inc.php @@ -7,7 +7,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/ktentity.inc b/lib/ktentity.inc index 1dc2f3f..866999c 100644 --- a/lib/ktentity.inc +++ b/lib/ktentity.inc @@ -7,7 +7,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/metadata/fieldbehaviour.inc.php b/lib/metadata/fieldbehaviour.inc.php index 75995a1..efccc43 100644 --- a/lib/metadata/fieldbehaviour.inc.php +++ b/lib/metadata/fieldbehaviour.inc.php @@ -9,7 +9,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/metadata/fieldset.inc.php b/lib/metadata/fieldset.inc.php index 9bc0bce..0ed95f3 100644 --- a/lib/metadata/fieldset.inc.php +++ b/lib/metadata/fieldset.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/metadata/fieldsetregistry.inc.php b/lib/metadata/fieldsetregistry.inc.php index 5fab0a0..f893459 100755 --- a/lib/metadata/fieldsetregistry.inc.php +++ b/lib/metadata/fieldsetregistry.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/metadata/metadatautil.inc.php b/lib/metadata/metadatautil.inc.php index 83217d1..e347092 100644 --- a/lib/metadata/metadatautil.inc.php +++ b/lib/metadata/metadatautil.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/metadata/valueinstance.inc.php b/lib/metadata/valueinstance.inc.php index 11dad5c..aaef5ab 100644 --- a/lib/metadata/valueinstance.inc.php +++ b/lib/metadata/valueinstance.inc.php @@ -9,7 +9,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/mime.inc.php b/lib/mime.inc.php index 40701e7..5f3d7a9 100644 --- a/lib/mime.inc.php +++ b/lib/mime.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/permissions/permission.inc.php b/lib/permissions/permission.inc.php index c6f2b32..9b434bc 100644 --- a/lib/permissions/permission.inc.php +++ b/lib/permissions/permission.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/permissions/permissionassignment.inc.php b/lib/permissions/permissionassignment.inc.php index 7adbe7d..7a4c8fa 100644 --- a/lib/permissions/permissionassignment.inc.php +++ b/lib/permissions/permissionassignment.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/permissions/permissiondescriptor.inc.php b/lib/permissions/permissiondescriptor.inc.php index b76bef5..7b65451 100644 --- a/lib/permissions/permissiondescriptor.inc.php +++ b/lib/permissions/permissiondescriptor.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/permissions/permissiondynamiccondition.inc.php b/lib/permissions/permissiondynamiccondition.inc.php index ebc75d9..2a1d67b 100644 --- a/lib/permissions/permissiondynamiccondition.inc.php +++ b/lib/permissions/permissiondynamiccondition.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/permissions/permissionlookup.inc.php b/lib/permissions/permissionlookup.inc.php index 6372b45..5934da2 100644 --- a/lib/permissions/permissionlookup.inc.php +++ b/lib/permissions/permissionlookup.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/permissions/permissionlookupassignment.inc.php b/lib/permissions/permissionlookupassignment.inc.php index 406dce5..9947b26 100644 --- a/lib/permissions/permissionlookupassignment.inc.php +++ b/lib/permissions/permissionlookupassignment.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/permissions/permissionobject.inc.php b/lib/permissions/permissionobject.inc.php index d00cae3..eca91fa 100644 --- a/lib/permissions/permissionobject.inc.php +++ b/lib/permissions/permissionobject.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/permissions/permissionutil.inc.php b/lib/permissions/permissionutil.inc.php index 892425d..0f0bf1f 100644 --- a/lib/permissions/permissionutil.inc.php +++ b/lib/permissions/permissionutil.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/plugins/KTAdminNavigation.php b/lib/plugins/KTAdminNavigation.php index cc60058..a1d8eed 100644 --- a/lib/plugins/KTAdminNavigation.php +++ b/lib/plugins/KTAdminNavigation.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/plugins/pageregistry.inc.php b/lib/plugins/pageregistry.inc.php index 053f9e6..e1bb37a 100644 --- a/lib/plugins/pageregistry.inc.php +++ b/lib/plugins/pageregistry.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/plugins/plugin.inc.php b/lib/plugins/plugin.inc.php index 189674e..132c1ca 100644 --- a/lib/plugins/plugin.inc.php +++ b/lib/plugins/plugin.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/plugins/pluginentity.inc.php b/lib/plugins/pluginentity.inc.php index e63afdb..fb3c91c 100644 --- a/lib/plugins/pluginentity.inc.php +++ b/lib/plugins/pluginentity.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/plugins/pluginregistry.inc.php b/lib/plugins/pluginregistry.inc.php index 3e867ad..72b3845 100644 --- a/lib/plugins/pluginregistry.inc.php +++ b/lib/plugins/pluginregistry.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/plugins/pluginutil.inc.php b/lib/plugins/pluginutil.inc.php index 350fc6c..f0460fb 100644 --- a/lib/plugins/pluginutil.inc.php +++ b/lib/plugins/pluginutil.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/roles/Role.inc b/lib/roles/Role.inc index 228164f..dc9a7ff 100644 --- a/lib/roles/Role.inc +++ b/lib/roles/Role.inc @@ -7,7 +7,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/roles/documentroleallocation.inc.php b/lib/roles/documentroleallocation.inc.php index 56ec1f0..a52f533 100644 --- a/lib/roles/documentroleallocation.inc.php +++ b/lib/roles/documentroleallocation.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/roles/roleallocation.inc.php b/lib/roles/roleallocation.inc.php index 23be2b6..7b741e4 100644 --- a/lib/roles/roleallocation.inc.php +++ b/lib/roles/roleallocation.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/search/savedsearch.inc.php b/lib/search/savedsearch.inc.php index 5f7819b..74665f1 100644 --- a/lib/search/savedsearch.inc.php +++ b/lib/search/savedsearch.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/search/searchutil.inc.php b/lib/search/searchutil.inc.php index 6317e13..851a5b4 100644 --- a/lib/search/searchutil.inc.php +++ b/lib/search/searchutil.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/security/Permission.inc b/lib/security/Permission.inc index 46b7ea0..63971bd 100644 --- a/lib/security/Permission.inc +++ b/lib/security/Permission.inc @@ -11,7 +11,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/session/Session.inc b/lib/session/Session.inc index f1d4758..91ac311 100644 --- a/lib/session/Session.inc +++ b/lib/session/Session.inc @@ -7,7 +7,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/session/SiteMap.inc b/lib/session/SiteMap.inc index c24be8c..5f8010a 100644 --- a/lib/session/SiteMap.inc +++ b/lib/session/SiteMap.inc @@ -7,7 +7,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/session/control.inc b/lib/session/control.inc index 6d678e8..4dda0df 100644 --- a/lib/session/control.inc +++ b/lib/session/control.inc @@ -7,7 +7,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/storage/ondiskhashedstoragemanager.inc.php b/lib/storage/ondiskhashedstoragemanager.inc.php index 1440b15..871f8ba 100644 --- a/lib/storage/ondiskhashedstoragemanager.inc.php +++ b/lib/storage/ondiskhashedstoragemanager.inc.php @@ -8,7 +8,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/storage/ondiskpathstoragemanager.inc.php b/lib/storage/ondiskpathstoragemanager.inc.php index a38a7b0..e4e92b8 100644 --- a/lib/storage/ondiskpathstoragemanager.inc.php +++ b/lib/storage/ondiskpathstoragemanager.inc.php @@ -15,7 +15,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/storage/storagemanager.inc.php b/lib/storage/storagemanager.inc.php index c346bec..2e0548a 100644 --- a/lib/storage/storagemanager.inc.php +++ b/lib/storage/storagemanager.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/subscriptions/Subscription.inc b/lib/subscriptions/Subscription.inc index 5a08127..c87f9ab 100644 --- a/lib/subscriptions/Subscription.inc +++ b/lib/subscriptions/Subscription.inc @@ -3,7 +3,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/subscriptions/SubscriptionConstants.inc b/lib/subscriptions/SubscriptionConstants.inc index 75ecb50..ae7b4c3 100644 --- a/lib/subscriptions/SubscriptionConstants.inc +++ b/lib/subscriptions/SubscriptionConstants.inc @@ -7,7 +7,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/subscriptions/SubscriptionManager.inc b/lib/subscriptions/SubscriptionManager.inc index ea54a64..be1b62a 100644 --- a/lib/subscriptions/SubscriptionManager.inc +++ b/lib/subscriptions/SubscriptionManager.inc @@ -7,7 +7,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/subscriptions/subscriptions.inc.php b/lib/subscriptions/subscriptions.inc.php index 3306b35..8633362 100644 --- a/lib/subscriptions/subscriptions.inc.php +++ b/lib/subscriptions/subscriptions.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/templating/kt3template.inc.php b/lib/templating/kt3template.inc.php index 581ffbb..d8978cb 100644 --- a/lib/templating/kt3template.inc.php +++ b/lib/templating/kt3template.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/templating/smartytemplate.inc.php b/lib/templating/smartytemplate.inc.php index 798cce1..45ffe9a 100644 --- a/lib/templating/smartytemplate.inc.php +++ b/lib/templating/smartytemplate.inc.php @@ -7,7 +7,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/templating/template.inc.php b/lib/templating/template.inc.php index 767a9c1..f0a1c50 100644 --- a/lib/templating/template.inc.php +++ b/lib/templating/template.inc.php @@ -7,7 +7,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/templating/templating.inc.php b/lib/templating/templating.inc.php index f2b7fc7..a51f49a 100644 --- a/lib/templating/templating.inc.php +++ b/lib/templating/templating.inc.php @@ -7,7 +7,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/triggers/triggerregistry.inc.php b/lib/triggers/triggerregistry.inc.php index d026f52..2a13feb 100644 --- a/lib/triggers/triggerregistry.inc.php +++ b/lib/triggers/triggerregistry.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/unitmanagement/Unit.inc b/lib/unitmanagement/Unit.inc index 3f4ce26..67a5649 100644 --- a/lib/unitmanagement/Unit.inc +++ b/lib/unitmanagement/Unit.inc @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/upgrades/Ini.inc.php b/lib/upgrades/Ini.inc.php index b631d67..ce2e7f2 100644 --- a/lib/upgrades/Ini.inc.php +++ b/lib/upgrades/Ini.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/upgrades/UpgradeFunctions.inc.php b/lib/upgrades/UpgradeFunctions.inc.php index 81808f3..629a80b 100644 --- a/lib/upgrades/UpgradeFunctions.inc.php +++ b/lib/upgrades/UpgradeFunctions.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/upgrades/UpgradeItems.inc.php b/lib/upgrades/UpgradeItems.inc.php index 8636935..1da6cd2 100644 --- a/lib/upgrades/UpgradeItems.inc.php +++ b/lib/upgrades/UpgradeItems.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/upgrades/upgrade.inc.php b/lib/upgrades/upgrade.inc.php index 93bbf5e..f130c26 100644 --- a/lib/upgrades/upgrade.inc.php +++ b/lib/upgrades/upgrade.inc.php @@ -8,7 +8,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/users/User.inc b/lib/users/User.inc index 2e64575..d4d68f2 100644 --- a/lib/users/User.inc +++ b/lib/users/User.inc @@ -7,7 +7,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/users/userhistory.inc.php b/lib/users/userhistory.inc.php index 01ab4d5..4f9a9f4 100644 --- a/lib/users/userhistory.inc.php +++ b/lib/users/userhistory.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/util/KTStopwords.php b/lib/util/KTStopwords.php index 16df4e8..1e9a276 100644 --- a/lib/util/KTStopwords.php +++ b/lib/util/KTStopwords.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/util/ktutil.inc b/lib/util/ktutil.inc index bc28fff..eec46f3 100644 --- a/lib/util/ktutil.inc +++ b/lib/util/ktutil.inc @@ -7,7 +7,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/util/legacy.inc b/lib/util/legacy.inc index d2cd49a..e9e7bba 100644 --- a/lib/util/legacy.inc +++ b/lib/util/legacy.inc @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/util/sanitize.inc b/lib/util/sanitize.inc index 20e8e6f..5e28dc3 100644 --- a/lib/util/sanitize.inc +++ b/lib/util/sanitize.inc @@ -7,7 +7,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/util/support.inc.php b/lib/util/support.inc.php index eb0ff7b..ba215df 100644 --- a/lib/util/support.inc.php +++ b/lib/util/support.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/validation/basevalidator.inc.php b/lib/validation/basevalidator.inc.php index 3a3cef6..a7aaaad 100644 --- a/lib/validation/basevalidator.inc.php +++ b/lib/validation/basevalidator.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/validation/customerror.php b/lib/validation/customerror.php index 4c1fbe4..988ad1b 100644 --- a/lib/validation/customerror.php +++ b/lib/validation/customerror.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/validation/customerrorhandler.php b/lib/validation/customerrorhandler.php index a2526ab..6511e26 100644 --- a/lib/validation/customerrorhandler.php +++ b/lib/validation/customerrorhandler.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/validation/customerrorviewer.inc.php b/lib/validation/customerrorviewer.inc.php index 0084084..2776cc4 100644 --- a/lib/validation/customerrorviewer.inc.php +++ b/lib/validation/customerrorviewer.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/validation/dispatchervalidation.inc.php b/lib/validation/dispatchervalidation.inc.php index 09b6904..78cabe2 100644 --- a/lib/validation/dispatchervalidation.inc.php +++ b/lib/validation/dispatchervalidation.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/validation/errorviewer.inc.php b/lib/validation/errorviewer.inc.php index d3173a2..bd3950b 100644 --- a/lib/validation/errorviewer.inc.php +++ b/lib/validation/errorviewer.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/validation/validatorfactory.inc.php b/lib/validation/validatorfactory.inc.php index 14c54e3..89f0ae6 100644 --- a/lib/validation/validatorfactory.inc.php +++ b/lib/validation/validatorfactory.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/widgets/FieldsetDisplayRegistry.inc.php b/lib/widgets/FieldsetDisplayRegistry.inc.php index a8c13fd..6a6d347 100644 --- a/lib/widgets/FieldsetDisplayRegistry.inc.php +++ b/lib/widgets/FieldsetDisplayRegistry.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/widgets/basewidget.inc.php b/lib/widgets/basewidget.inc.php index 121c1bc..3969232 100644 --- a/lib/widgets/basewidget.inc.php +++ b/lib/widgets/basewidget.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/widgets/fieldWidgets.php b/lib/widgets/fieldWidgets.php index 6e8ec9f..8ae035f 100644 --- a/lib/widgets/fieldWidgets.php +++ b/lib/widgets/fieldWidgets.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/widgets/fieldsetDisplay.inc.php b/lib/widgets/fieldsetDisplay.inc.php index 62a0d42..9b97ca1 100644 --- a/lib/widgets/fieldsetDisplay.inc.php +++ b/lib/widgets/fieldsetDisplay.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/widgets/forms.inc.php b/lib/widgets/forms.inc.php index 7b6ce91..1b6dbed 100644 --- a/lib/widgets/forms.inc.php +++ b/lib/widgets/forms.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/widgets/portlet.inc.php b/lib/widgets/portlet.inc.php index 28b5bc2..2fecf6a 100644 --- a/lib/widgets/portlet.inc.php +++ b/lib/widgets/portlet.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/widgets/reorderdisplay.inc.php b/lib/widgets/reorderdisplay.inc.php index a3de9cc..6849da1 100644 --- a/lib/widgets/reorderdisplay.inc.php +++ b/lib/widgets/reorderdisplay.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/widgets/widgetfactory.inc.php b/lib/widgets/widgetfactory.inc.php index 683c760..e61b5cb 100644 --- a/lib/widgets/widgetfactory.inc.php +++ b/lib/widgets/widgetfactory.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/workflow/workflow.inc.php b/lib/workflow/workflow.inc.php index 934211f..0fcf2a1 100644 --- a/lib/workflow/workflow.inc.php +++ b/lib/workflow/workflow.inc.php @@ -9,7 +9,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/workflow/workflowadminutil.inc.php b/lib/workflow/workflowadminutil.inc.php index c0b71bd..22e29e6 100644 --- a/lib/workflow/workflowadminutil.inc.php +++ b/lib/workflow/workflowadminutil.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/workflow/workflowstate.inc.php b/lib/workflow/workflowstate.inc.php index e95425f..edad222 100644 --- a/lib/workflow/workflowstate.inc.php +++ b/lib/workflow/workflowstate.inc.php @@ -8,7 +8,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/workflow/workflowstatepermissionsassignment.inc.php b/lib/workflow/workflowstatepermissionsassignment.inc.php index 735eb49..14676bf 100644 --- a/lib/workflow/workflowstatepermissionsassignment.inc.php +++ b/lib/workflow/workflowstatepermissionsassignment.inc.php @@ -8,7 +8,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/workflow/workflowtransition.inc.php b/lib/workflow/workflowtransition.inc.php index 0c8f8c0..b423f42 100644 --- a/lib/workflow/workflowtransition.inc.php +++ b/lib/workflow/workflowtransition.inc.php @@ -8,7 +8,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/workflow/workflowtrigger.inc.php b/lib/workflow/workflowtrigger.inc.php index 55df816..9de9de2 100644 --- a/lib/workflow/workflowtrigger.inc.php +++ b/lib/workflow/workflowtrigger.inc.php @@ -12,7 +12,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/workflow/workflowtriggerinstance.inc.php b/lib/workflow/workflowtriggerinstance.inc.php index 93af583..0fae208 100644 --- a/lib/workflow/workflowtriggerinstance.inc.php +++ b/lib/workflow/workflowtriggerinstance.inc.php @@ -8,7 +8,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/lib/workflow/workflowutil.inc.php b/lib/workflow/workflowutil.inc.php index 9c7764a..8134e44 100644 --- a/lib/workflow/workflowutil.inc.php +++ b/lib/workflow/workflowutil.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/MyDropDocumentsPlugin/MyDropDocumentsDashlet.php b/plugins/MyDropDocumentsPlugin/MyDropDocumentsDashlet.php index 4c29740..a3693c0 100644 --- a/plugins/MyDropDocumentsPlugin/MyDropDocumentsDashlet.php +++ b/plugins/MyDropDocumentsPlugin/MyDropDocumentsDashlet.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/MyDropDocumentsPlugin/MyDropDocumentsPage.php b/plugins/MyDropDocumentsPlugin/MyDropDocumentsPage.php index 99f18a1..c65a0de 100644 --- a/plugins/MyDropDocumentsPlugin/MyDropDocumentsPage.php +++ b/plugins/MyDropDocumentsPlugin/MyDropDocumentsPage.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/browseabledashlet/BrowseableDashlet.php b/plugins/browseabledashlet/BrowseableDashlet.php index 19c114f..f79fff9 100644 --- a/plugins/browseabledashlet/BrowseableDashlet.php +++ b/plugins/browseabledashlet/BrowseableDashlet.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/browseabledashlet/BrowseableDashletPlugin.php b/plugins/browseabledashlet/BrowseableDashletPlugin.php index f77afed..3d73268 100644 --- a/plugins/browseabledashlet/BrowseableDashletPlugin.php +++ b/plugins/browseabledashlet/BrowseableDashletPlugin.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/housekeeper/DiskUsageDashlet.inc.php b/plugins/housekeeper/DiskUsageDashlet.inc.php index 5b185f3..75dbddb 100755 --- a/plugins/housekeeper/DiskUsageDashlet.inc.php +++ b/plugins/housekeeper/DiskUsageDashlet.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/housekeeper/FolderUsageDashlet.inc.php b/plugins/housekeeper/FolderUsageDashlet.inc.php index 5111b04..47d90cf 100755 --- a/plugins/housekeeper/FolderUsageDashlet.inc.php +++ b/plugins/housekeeper/FolderUsageDashlet.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/housekeeper/HouseKeeper.inc.php b/plugins/housekeeper/HouseKeeper.inc.php index 06ccc3b..18eef9d 100644 --- a/plugins/housekeeper/HouseKeeper.inc.php +++ b/plugins/housekeeper/HouseKeeper.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/housekeeper/HouseKeeperDispatcher.php b/plugins/housekeeper/HouseKeeperDispatcher.php index e4dc739..cd02d64 100644 --- a/plugins/housekeeper/HouseKeeperDispatcher.php +++ b/plugins/housekeeper/HouseKeeperDispatcher.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/housekeeper/HouseKeeperPlugin.php b/plugins/housekeeper/HouseKeeperPlugin.php index 5785428..7a0ca3a 100755 --- a/plugins/housekeeper/HouseKeeperPlugin.php +++ b/plugins/housekeeper/HouseKeeperPlugin.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/housekeeper/bin/UpdateStats.php b/plugins/housekeeper/bin/UpdateStats.php index a74c788..0c6e9a5 100644 --- a/plugins/housekeeper/bin/UpdateStats.php +++ b/plugins/housekeeper/bin/UpdateStats.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/i18n/brazilianportuguese/BrazilianPtPlugin.php b/plugins/i18n/brazilianportuguese/BrazilianPtPlugin.php index fbb1596..c0fc2fd 100755 --- a/plugins/i18n/brazilianportuguese/BrazilianPtPlugin.php +++ b/plugins/i18n/brazilianportuguese/BrazilianPtPlugin.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/i18n/brazilianportuguese/translations/pt_BR/knowledgeTree.mo b/plugins/i18n/brazilianportuguese/translations/pt_BR/knowledgeTree.mo index a61afb7..87b4d49 100644 --- a/plugins/i18n/brazilianportuguese/translations/pt_BR/knowledgeTree.mo +++ b/plugins/i18n/brazilianportuguese/translations/pt_BR/knowledgeTree.mo diff --git a/plugins/i18n/brazilianportuguese/translations/pt_BR/knowledgeTree.po b/plugins/i18n/brazilianportuguese/translations/pt_BR/knowledgeTree.po index a65384a..2eff1f5 100644 --- a/plugins/i18n/brazilianportuguese/translations/pt_BR/knowledgeTree.po +++ b/plugins/i18n/brazilianportuguese/translations/pt_BR/knowledgeTree.po @@ -10748,7 +10748,7 @@ msgid "Plus" msgstr "Mais" #: i18n/templates.c:5975 -msgid "Portions copyright The Jam Warehouse Software (Pty) Limited." +msgid "." msgstr "Partes sob copyright The Jam Warehouse Software (Pty) Limited." #: i18n/templates.c:1370 diff --git a/plugins/i18n/french/FrenchPlugin.php b/plugins/i18n/french/FrenchPlugin.php index f090300..ecdb22f 100644 --- a/plugins/i18n/french/FrenchPlugin.php +++ b/plugins/i18n/french/FrenchPlugin.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/i18n/french/translations/fr_FR/knowledgeTree.po b/plugins/i18n/french/translations/fr_FR/knowledgeTree.po index d2c48a9..b16f8ab 100644 --- a/plugins/i18n/french/translations/fr_FR/knowledgeTree.po +++ b/plugins/i18n/french/translations/fr_FR/knowledgeTree.po @@ -10067,7 +10067,7 @@ msgid "Plus" msgstr "Plus" #: i18n/templates.c:6746 -msgid "Portions copyright The Jam Warehouse Software (Pty) Limited." +msgid "." msgstr "Droit de reproduction des portions The Jam Warehouse Software (Pty) Limited." #: i18n/templates.c:2624 diff --git a/plugins/i18n/german/GermanPlugin.php b/plugins/i18n/german/GermanPlugin.php index 973df5c..8130849 100644 --- a/plugins/i18n/german/GermanPlugin.php +++ b/plugins/i18n/german/GermanPlugin.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/i18n/german/translations/de_DE/knowledgeTree.po b/plugins/i18n/german/translations/de_DE/knowledgeTree.po index 0f1df99..68b3d62 100644 --- a/plugins/i18n/german/translations/de_DE/knowledgeTree.po +++ b/plugins/i18n/german/translations/de_DE/knowledgeTree.po @@ -10072,7 +10072,7 @@ msgid "Plus" msgstr "Plus" #: i18n/templates.c:6746 -msgid "Portions copyright The Jam Warehouse Software (Pty) Limited." +msgid "." msgstr "Teilurheberrecht The Jam Warehouse Software (Pty) Limited." #: i18n/templates.c:2624 diff --git a/plugins/i18n/italian/ItalianPlugin.php b/plugins/i18n/italian/ItalianPlugin.php index d491735..28da443 100644 --- a/plugins/i18n/italian/ItalianPlugin.php +++ b/plugins/i18n/italian/ItalianPlugin.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/i18n/italian/translations/it_IT/knowledgeTree.po b/plugins/i18n/italian/translations/it_IT/knowledgeTree.po index 868ee22..f0ea479 100644 --- a/plugins/i18n/italian/translations/it_IT/knowledgeTree.po +++ b/plugins/i18n/italian/translations/it_IT/knowledgeTree.po @@ -10226,7 +10226,7 @@ msgid "Plus" msgstr "Plus" #: i18n/templates.c:6746 -msgid "Portions copyright The Jam Warehouse Software (Pty) Limited." +msgid "." msgstr "Copyright The Jam Warehouse Software (Pty) Limited." # C:\Programmi\xampp\htdocs\kt3\plugins\ktcore\admin\workflows.php:707 diff --git a/plugins/i18n/portuguese/PortuguesePlugin.php b/plugins/i18n/portuguese/PortuguesePlugin.php index 2500cdb..7c2eb93 100755 --- a/plugins/i18n/portuguese/PortuguesePlugin.php +++ b/plugins/i18n/portuguese/PortuguesePlugin.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/i18n/portuguese/translations/pt_PT/knowledgeTree.mo b/plugins/i18n/portuguese/translations/pt_PT/knowledgeTree.mo index b76f929..bc4072f 100644 --- a/plugins/i18n/portuguese/translations/pt_PT/knowledgeTree.mo +++ b/plugins/i18n/portuguese/translations/pt_PT/knowledgeTree.mo diff --git a/plugins/i18n/portuguese/translations/pt_PT/knowledgeTree.po b/plugins/i18n/portuguese/translations/pt_PT/knowledgeTree.po index 9b3b0a9..8a2a663 100644 --- a/plugins/i18n/portuguese/translations/pt_PT/knowledgeTree.po +++ b/plugins/i18n/portuguese/translations/pt_PT/knowledgeTree.po @@ -10833,8 +10833,8 @@ msgid "Plus" msgstr "Mais" #: i18n/templates.c:5975 -msgid "Portions copyright The Jam Warehouse Software (Pty) Limited." -msgstr "Portions copyright The Jam Warehouse Software (Pty) Limited." +msgid "." +msgstr "." #: i18n/templates.c:1370 #: i18n/templates.c:5162 diff --git a/plugins/i18n/spanish/SpanishPlugin.php b/plugins/i18n/spanish/SpanishPlugin.php index 5367620..22d836f 100755 --- a/plugins/i18n/spanish/SpanishPlugin.php +++ b/plugins/i18n/spanish/SpanishPlugin.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/i18n/spanish/translations/es_SP/knowledgeTree.mo b/plugins/i18n/spanish/translations/es_SP/knowledgeTree.mo index 264e5ea..5cc6bf7 100644 --- a/plugins/i18n/spanish/translations/es_SP/knowledgeTree.mo +++ b/plugins/i18n/spanish/translations/es_SP/knowledgeTree.mo diff --git a/plugins/i18n/spanish/translations/es_SP/knowledgeTree.po b/plugins/i18n/spanish/translations/es_SP/knowledgeTree.po index 666380a..ba58f47 100644 --- a/plugins/i18n/spanish/translations/es_SP/knowledgeTree.po +++ b/plugins/i18n/spanish/translations/es_SP/knowledgeTree.po @@ -10743,7 +10743,7 @@ msgid "Plus" msgstr "Más" #: i18n/templates.c:5975 -msgid "Portions copyright The Jam Warehouse Software (Pty) Limited." +msgid "." msgstr "El derecho de autor porciones Atasco Almacén de Software (Pty) Limited." #: i18n/templates.c:1370 diff --git a/plugins/ktcore/KTAssist.php b/plugins/ktcore/KTAssist.php index 4d61a1f..208f07e 100644 --- a/plugins/ktcore/KTAssist.php +++ b/plugins/ktcore/KTAssist.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktcore/KTBulkActions.php b/plugins/ktcore/KTBulkActions.php index 153d2b1..22297ec 100644 --- a/plugins/ktcore/KTBulkActions.php +++ b/plugins/ktcore/KTBulkActions.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktcore/KTColumns.inc.php b/plugins/ktcore/KTColumns.inc.php index 2aa12d2..a513965 100644 --- a/plugins/ktcore/KTColumns.inc.php +++ b/plugins/ktcore/KTColumns.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktcore/KTCoreLanguagePlugin.php b/plugins/ktcore/KTCoreLanguagePlugin.php index 7e83f5a..40f9d9b 100644 --- a/plugins/ktcore/KTCoreLanguagePlugin.php +++ b/plugins/ktcore/KTCoreLanguagePlugin.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktcore/KTCorePlugin.php b/plugins/ktcore/KTCorePlugin.php index f670b69..c8d107f 100755 --- a/plugins/ktcore/KTCorePlugin.php +++ b/plugins/ktcore/KTCorePlugin.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktcore/KTDashlets.php b/plugins/ktcore/KTDashlets.php index e14a3a6..9b102ed 100644 --- a/plugins/ktcore/KTDashlets.php +++ b/plugins/ktcore/KTDashlets.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktcore/KTDocumentActions.php b/plugins/ktcore/KTDocumentActions.php index d43a83a..7ee38c3 100644 --- a/plugins/ktcore/KTDocumentActions.php +++ b/plugins/ktcore/KTDocumentActions.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktcore/KTDocumentViewlets.php b/plugins/ktcore/KTDocumentViewlets.php index 63f2e44..860cc7f 100644 --- a/plugins/ktcore/KTDocumentViewlets.php +++ b/plugins/ktcore/KTDocumentViewlets.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktcore/KTFolderActions.php b/plugins/ktcore/KTFolderActions.php index 9e5ac87..fbea4ae 100644 --- a/plugins/ktcore/KTFolderActions.php +++ b/plugins/ktcore/KTFolderActions.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktcore/KTMiscPages.php b/plugins/ktcore/KTMiscPages.php index 72ffe72..0b1fdaf 100644 --- a/plugins/ktcore/KTMiscPages.php +++ b/plugins/ktcore/KTMiscPages.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktcore/KTPermissions.php b/plugins/ktcore/KTPermissions.php index 373fdc7..b3beed3 100644 --- a/plugins/ktcore/KTPermissions.php +++ b/plugins/ktcore/KTPermissions.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktcore/KTPortlets.php b/plugins/ktcore/KTPortlets.php index d45d41d..c446b85 100644 --- a/plugins/ktcore/KTPortlets.php +++ b/plugins/ktcore/KTPortlets.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktcore/KTValidators.php b/plugins/ktcore/KTValidators.php index b052610..5af03af 100644 --- a/plugins/ktcore/KTValidators.php +++ b/plugins/ktcore/KTValidators.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktcore/KTWidgets.php b/plugins/ktcore/KTWidgets.php index 1ff2053..fe463d5 100755 --- a/plugins/ktcore/KTWidgets.php +++ b/plugins/ktcore/KTWidgets.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktcore/KTWorkflowTriggers.inc.php b/plugins/ktcore/KTWorkflowTriggers.inc.php index ce652a9..45daf19 100644 --- a/plugins/ktcore/KTWorkflowTriggers.inc.php +++ b/plugins/ktcore/KTWorkflowTriggers.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktcore/admin/ajaxComplexConditionals.php b/plugins/ktcore/admin/ajaxComplexConditionals.php index 9efe3b6..4610db7 100755 --- a/plugins/ktcore/admin/ajaxComplexConditionals.php +++ b/plugins/ktcore/admin/ajaxComplexConditionals.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktcore/admin/ajaxSimpleConditionals.php b/plugins/ktcore/admin/ajaxSimpleConditionals.php index 544d461..2e26c7c 100755 --- a/plugins/ktcore/admin/ajaxSimpleConditionals.php +++ b/plugins/ktcore/admin/ajaxSimpleConditionals.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktcore/admin/archivedDocuments.php b/plugins/ktcore/admin/archivedDocuments.php index 4bc76de..ddc091f 100755 --- a/plugins/ktcore/admin/archivedDocuments.php +++ b/plugins/ktcore/admin/archivedDocuments.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktcore/admin/conditions.php b/plugins/ktcore/admin/conditions.php index c0c48d6..9fb4e3c 100755 --- a/plugins/ktcore/admin/conditions.php +++ b/plugins/ktcore/admin/conditions.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktcore/admin/deletedDocuments.php b/plugins/ktcore/admin/deletedDocuments.php index 1d41f87..bd4fe61 100755 --- a/plugins/ktcore/admin/deletedDocuments.php +++ b/plugins/ktcore/admin/deletedDocuments.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktcore/admin/documentCheckout.php b/plugins/ktcore/admin/documentCheckout.php index 8f2f96a..95e6b15 100644 --- a/plugins/ktcore/admin/documentCheckout.php +++ b/plugins/ktcore/admin/documentCheckout.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktcore/admin/documentFieldsv2.php b/plugins/ktcore/admin/documentFieldsv2.php index 2408999..6405ac2 100644 --- a/plugins/ktcore/admin/documentFieldsv2.php +++ b/plugins/ktcore/admin/documentFieldsv2.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktcore/admin/documentTypes.php b/plugins/ktcore/admin/documentTypes.php index 0981fe0..ff16252 100755 --- a/plugins/ktcore/admin/documentTypes.php +++ b/plugins/ktcore/admin/documentTypes.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktcore/admin/expungeList.php b/plugins/ktcore/admin/expungeList.php index 7b6188d..6f570a8 100644 --- a/plugins/ktcore/admin/expungeList.php +++ b/plugins/ktcore/admin/expungeList.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktcore/admin/fieldsets/basic.inc.php b/plugins/ktcore/admin/fieldsets/basic.inc.php index 26c2674..dc48bc1 100755 --- a/plugins/ktcore/admin/fieldsets/basic.inc.php +++ b/plugins/ktcore/admin/fieldsets/basic.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktcore/admin/fieldsets/conditional.inc.php b/plugins/ktcore/admin/fieldsets/conditional.inc.php index c8a4e28..ad841f1 100644 --- a/plugins/ktcore/admin/fieldsets/conditional.inc.php +++ b/plugins/ktcore/admin/fieldsets/conditional.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktcore/admin/groupManagement.php b/plugins/ktcore/admin/groupManagement.php index fc67109..5d4d1df 100755 --- a/plugins/ktcore/admin/groupManagement.php +++ b/plugins/ktcore/admin/groupManagement.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktcore/admin/manageCleanup.php b/plugins/ktcore/admin/manageCleanup.php index 1491e83..dc2ac92 100755 --- a/plugins/ktcore/admin/manageCleanup.php +++ b/plugins/ktcore/admin/manageCleanup.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktcore/admin/manageConditionals.php b/plugins/ktcore/admin/manageConditionals.php index 3c114ad..7fac122 100755 --- a/plugins/ktcore/admin/manageConditionals.php +++ b/plugins/ktcore/admin/manageConditionals.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktcore/admin/manageHelp.php b/plugins/ktcore/admin/manageHelp.php index fcc5f0d..d6da562 100755 --- a/plugins/ktcore/admin/manageHelp.php +++ b/plugins/ktcore/admin/manageHelp.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktcore/admin/managePermissions.php b/plugins/ktcore/admin/managePermissions.php index 1400a54..0558b9c 100755 --- a/plugins/ktcore/admin/managePermissions.php +++ b/plugins/ktcore/admin/managePermissions.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktcore/admin/manageViews.php b/plugins/ktcore/admin/manageViews.php index 0858d7f..a34867a 100644 --- a/plugins/ktcore/admin/manageViews.php +++ b/plugins/ktcore/admin/manageViews.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktcore/admin/plugins.php b/plugins/ktcore/admin/plugins.php index 03696f4..d06a4f5 100755 --- a/plugins/ktcore/admin/plugins.php +++ b/plugins/ktcore/admin/plugins.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktcore/admin/roleManagement.php b/plugins/ktcore/admin/roleManagement.php index 0e82a9f..95187af 100644 --- a/plugins/ktcore/admin/roleManagement.php +++ b/plugins/ktcore/admin/roleManagement.php @@ -7,7 +7,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktcore/admin/savedSearch.php b/plugins/ktcore/admin/savedSearch.php index 6729886..b9e39a4 100755 --- a/plugins/ktcore/admin/savedSearch.php +++ b/plugins/ktcore/admin/savedSearch.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktcore/admin/techsupport.php b/plugins/ktcore/admin/techsupport.php index 9cb26a2..03bbc88 100644 --- a/plugins/ktcore/admin/techsupport.php +++ b/plugins/ktcore/admin/techsupport.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktcore/admin/unitManagement.php b/plugins/ktcore/admin/unitManagement.php index 14bec1e..ef442ba 100755 --- a/plugins/ktcore/admin/unitManagement.php +++ b/plugins/ktcore/admin/unitManagement.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktcore/admin/userManagement.php b/plugins/ktcore/admin/userManagement.php index 5f512ff..5d857fe 100755 --- a/plugins/ktcore/admin/userManagement.php +++ b/plugins/ktcore/admin/userManagement.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktcore/admin/workflow/newworkflow.inc.php b/plugins/ktcore/admin/workflow/newworkflow.inc.php index 0983175..16985d5 100644 --- a/plugins/ktcore/admin/workflow/newworkflow.inc.php +++ b/plugins/ktcore/admin/workflow/newworkflow.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktcore/admin/workflowsv2.php b/plugins/ktcore/admin/workflowsv2.php index 55597c5..861381d 100644 --- a/plugins/ktcore/admin/workflowsv2.php +++ b/plugins/ktcore/admin/workflowsv2.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktcore/authentication/authenticationadminpage.inc.php b/plugins/ktcore/authentication/authenticationadminpage.inc.php index e5d01ba..2f03bea 100644 --- a/plugins/ktcore/authentication/authenticationadminpage.inc.php +++ b/plugins/ktcore/authentication/authenticationadminpage.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktcore/document/Rename.php b/plugins/ktcore/document/Rename.php index 67959f1..9d8bbe4 100644 --- a/plugins/ktcore/document/Rename.php +++ b/plugins/ktcore/document/Rename.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktcore/document/edit.php b/plugins/ktcore/document/edit.php index 1cdd8a7..a06ed4d 100755 --- a/plugins/ktcore/document/edit.php +++ b/plugins/ktcore/document/edit.php @@ -4,7 +4,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktcore/folder/BulkImport.php b/plugins/ktcore/folder/BulkImport.php index 15cbaf5..8037c55 100644 --- a/plugins/ktcore/folder/BulkImport.php +++ b/plugins/ktcore/folder/BulkImport.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktcore/folder/BulkUpload.php b/plugins/ktcore/folder/BulkUpload.php index 5a4e690..965f01a 100644 --- a/plugins/ktcore/folder/BulkUpload.php +++ b/plugins/ktcore/folder/BulkUpload.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktcore/folder/Permissions.php b/plugins/ktcore/folder/Permissions.php index 575e229..b8c7689 100644 --- a/plugins/ktcore/folder/Permissions.php +++ b/plugins/ktcore/folder/Permissions.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktcore/folder/Rename.php b/plugins/ktcore/folder/Rename.php index 46f782d..2f39b18 100644 --- a/plugins/ktcore/folder/Rename.php +++ b/plugins/ktcore/folder/Rename.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktcore/folder/Transactions.php b/plugins/ktcore/folder/Transactions.php index 9d03d19..912c505 100644 --- a/plugins/ktcore/folder/Transactions.php +++ b/plugins/ktcore/folder/Transactions.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktcore/folder/addDocument.php b/plugins/ktcore/folder/addDocument.php index 19ebd7d..91b95a3 100644 --- a/plugins/ktcore/folder/addDocument.php +++ b/plugins/ktcore/folder/addDocument.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktcore/scheduler/background.php b/plugins/ktcore/scheduler/background.php index 321e402..095aa26 100644 --- a/plugins/ktcore/scheduler/background.php +++ b/plugins/ktcore/scheduler/background.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktcore/scheduler/scheduler.php b/plugins/ktcore/scheduler/scheduler.php index a1d0fcf..4b02b89 100644 --- a/plugins/ktcore/scheduler/scheduler.php +++ b/plugins/ktcore/scheduler/scheduler.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktcore/scheduler/schedulerDashlet.php b/plugins/ktcore/scheduler/schedulerDashlet.php index 1a624cb..0e4d8e8 100644 --- a/plugins/ktcore/scheduler/schedulerDashlet.php +++ b/plugins/ktcore/scheduler/schedulerDashlet.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktcore/scheduler/schedulerEntity.php b/plugins/ktcore/scheduler/schedulerEntity.php index 23f0f59..33473bb 100644 --- a/plugins/ktcore/scheduler/schedulerEntity.php +++ b/plugins/ktcore/scheduler/schedulerEntity.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktcore/scheduler/schedulerUtil.php b/plugins/ktcore/scheduler/schedulerUtil.php index 31a07c3..b24b66b 100644 --- a/plugins/ktcore/scheduler/schedulerUtil.php +++ b/plugins/ktcore/scheduler/schedulerUtil.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktcore/scheduler/taskScheduler.php b/plugins/ktcore/scheduler/taskScheduler.php index 9fc7e3c..d015265 100644 --- a/plugins/ktcore/scheduler/taskScheduler.php +++ b/plugins/ktcore/scheduler/taskScheduler.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktstandard/ImmutableActionPlugin.php b/plugins/ktstandard/ImmutableActionPlugin.php index 5057279..664f299 100644 --- a/plugins/ktstandard/ImmutableActionPlugin.php +++ b/plugins/ktstandard/ImmutableActionPlugin.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktstandard/KTBulkExportPlugin.php b/plugins/ktstandard/KTBulkExportPlugin.php index 966405a..7f78763 100644 --- a/plugins/ktstandard/KTBulkExportPlugin.php +++ b/plugins/ktstandard/KTBulkExportPlugin.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktstandard/KTDisclaimers.php b/plugins/ktstandard/KTDisclaimers.php index 6c095dd..95ac3cf 100644 --- a/plugins/ktstandard/KTDisclaimers.php +++ b/plugins/ktstandard/KTDisclaimers.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktstandard/KTDiscussion.php b/plugins/ktstandard/KTDiscussion.php index 7f88d12..f8d2743 100644 --- a/plugins/ktstandard/KTDiscussion.php +++ b/plugins/ktstandard/KTDiscussion.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktstandard/KTDocumentLinks.php b/plugins/ktstandard/KTDocumentLinks.php index 966a931..5de81ea 100644 --- a/plugins/ktstandard/KTDocumentLinks.php +++ b/plugins/ktstandard/KTDocumentLinks.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktstandard/KTDocumentLinksColumns.php b/plugins/ktstandard/KTDocumentLinksColumns.php index a9af0ac..725f4a4 100644 --- a/plugins/ktstandard/KTDocumentLinksColumns.php +++ b/plugins/ktstandard/KTDocumentLinksColumns.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktstandard/KTEmail.php b/plugins/ktstandard/KTEmail.php index 58cba48..8ee7693 100644 --- a/plugins/ktstandard/KTEmail.php +++ b/plugins/ktstandard/KTEmail.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktstandard/KTIndexer.php b/plugins/ktstandard/KTIndexer.php index e39115f..42e22a7 100644 --- a/plugins/ktstandard/KTIndexer.php +++ b/plugins/ktstandard/KTIndexer.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktstandard/KTLDAPAuthenticationPlugin.php b/plugins/ktstandard/KTLDAPAuthenticationPlugin.php index cf6c9be..a48b473 100644 --- a/plugins/ktstandard/KTLDAPAuthenticationPlugin.php +++ b/plugins/ktstandard/KTLDAPAuthenticationPlugin.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktstandard/KTStandardPlugin.php b/plugins/ktstandard/KTStandardPlugin.php index 644f2f7..35af24e 100644 --- a/plugins/ktstandard/KTStandardPlugin.php +++ b/plugins/ktstandard/KTStandardPlugin.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktstandard/KTSubscriptions.php b/plugins/ktstandard/KTSubscriptions.php index d1b11b2..1ea61d9 100644 --- a/plugins/ktstandard/KTSubscriptions.php +++ b/plugins/ktstandard/KTSubscriptions.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktstandard/KTWebDAVDashletPlugin.php b/plugins/ktstandard/KTWebDAVDashletPlugin.php index 846f3ef..4a8ee46 100644 --- a/plugins/ktstandard/KTWebDAVDashletPlugin.php +++ b/plugins/ktstandard/KTWebDAVDashletPlugin.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktstandard/KTWorkflowAssociation.php b/plugins/ktstandard/KTWorkflowAssociation.php index 7377cc0..d8b36e9 100644 --- a/plugins/ktstandard/KTWorkflowAssociation.php +++ b/plugins/ktstandard/KTWorkflowAssociation.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktstandard/PDFGeneratorAction.php b/plugins/ktstandard/PDFGeneratorAction.php index 9a025d2..8337fc6 100644 --- a/plugins/ktstandard/PDFGeneratorAction.php +++ b/plugins/ktstandard/PDFGeneratorAction.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktstandard/PDFGeneratorPlugin.php b/plugins/ktstandard/PDFGeneratorPlugin.php index eab34eb..c9f2112 100644 --- a/plugins/ktstandard/PDFGeneratorPlugin.php +++ b/plugins/ktstandard/PDFGeneratorPlugin.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktstandard/admin/manageDisclaimers.php b/plugins/ktstandard/admin/manageDisclaimers.php index 5aad3eb..4f3a9e6 100644 --- a/plugins/ktstandard/admin/manageDisclaimers.php +++ b/plugins/ktstandard/admin/manageDisclaimers.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktstandard/contents/BaseIndexer.php b/plugins/ktstandard/contents/BaseIndexer.php index 7127053..716fb34 100644 --- a/plugins/ktstandard/contents/BaseIndexer.php +++ b/plugins/ktstandard/contents/BaseIndexer.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktstandard/contents/ExcelIndexer.php b/plugins/ktstandard/contents/ExcelIndexer.php index 395b8fe..f1b0b59 100644 --- a/plugins/ktstandard/contents/ExcelIndexer.php +++ b/plugins/ktstandard/contents/ExcelIndexer.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktstandard/contents/OpenDocumentIndexer.php b/plugins/ktstandard/contents/OpenDocumentIndexer.php index 0864082..d25a0f0 100644 --- a/plugins/ktstandard/contents/OpenDocumentIndexer.php +++ b/plugins/ktstandard/contents/OpenDocumentIndexer.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktstandard/contents/PdfIndexer.php b/plugins/ktstandard/contents/PdfIndexer.php index 36b81ec..73e0d70 100644 --- a/plugins/ktstandard/contents/PdfIndexer.php +++ b/plugins/ktstandard/contents/PdfIndexer.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktstandard/contents/PowerpointIndexer.php b/plugins/ktstandard/contents/PowerpointIndexer.php index ecd27aa..a71de8f 100644 --- a/plugins/ktstandard/contents/PowerpointIndexer.php +++ b/plugins/ktstandard/contents/PowerpointIndexer.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktstandard/contents/PsIndexer.php b/plugins/ktstandard/contents/PsIndexer.php index 28d3c24..b46779e 100644 --- a/plugins/ktstandard/contents/PsIndexer.php +++ b/plugins/ktstandard/contents/PsIndexer.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktstandard/contents/RtfIndexer.php b/plugins/ktstandard/contents/RtfIndexer.php index 7b2ea0a..a921cc5 100644 --- a/plugins/ktstandard/contents/RtfIndexer.php +++ b/plugins/ktstandard/contents/RtfIndexer.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktstandard/contents/TextIndexer.php b/plugins/ktstandard/contents/TextIndexer.php index bf2b2e7..f5130a6 100644 --- a/plugins/ktstandard/contents/TextIndexer.php +++ b/plugins/ktstandard/contents/TextIndexer.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktstandard/contents/WordIndexer.php b/plugins/ktstandard/contents/WordIndexer.php index 3e467b6..532acb9 100644 --- a/plugins/ktstandard/contents/WordIndexer.php +++ b/plugins/ktstandard/contents/WordIndexer.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktstandard/contents/XmlHtmlIndexer.php b/plugins/ktstandard/contents/XmlHtmlIndexer.php index 6d47e0f..a6c7f4e 100644 --- a/plugins/ktstandard/contents/XmlHtmlIndexer.php +++ b/plugins/ktstandard/contents/XmlHtmlIndexer.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktstandard/ldap/activedirectoryauthenticationprovider.inc.php b/plugins/ktstandard/ldap/activedirectoryauthenticationprovider.inc.php index 489b6b6..594694d 100644 --- a/plugins/ktstandard/ldap/activedirectoryauthenticationprovider.inc.php +++ b/plugins/ktstandard/ldap/activedirectoryauthenticationprovider.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php b/plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php index 90b0a8b..3c1732c 100644 --- a/plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php +++ b/plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktstandard/ldap/ldapbaseauthenticationprovider.inc.php b/plugins/ktstandard/ldap/ldapbaseauthenticationprovider.inc.php index 64705ff..4bb54a0 100644 --- a/plugins/ktstandard/ldap/ldapbaseauthenticationprovider.inc.php +++ b/plugins/ktstandard/ldap/ldapbaseauthenticationprovider.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktstandard/workflow/FolderAssociator.php b/plugins/ktstandard/workflow/FolderAssociator.php index 8f4fdfc..b830f35 100644 --- a/plugins/ktstandard/workflow/FolderAssociator.php +++ b/plugins/ktstandard/workflow/FolderAssociator.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktstandard/workflow/TypeAssociator.php b/plugins/ktstandard/workflow/TypeAssociator.php index 004ca49..f593054 100644 --- a/plugins/ktstandard/workflow/TypeAssociator.php +++ b/plugins/ktstandard/workflow/TypeAssociator.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/ktstandard/workflow/adminpage.php b/plugins/ktstandard/workflow/adminpage.php index b5394f0..f716fc2 100644 --- a/plugins/ktstandard/workflow/adminpage.php +++ b/plugins/ktstandard/workflow/adminpage.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/multiselect/BulkImport.php b/plugins/multiselect/BulkImport.php index dcf04e5..d3985a4 100755 --- a/plugins/multiselect/BulkImport.php +++ b/plugins/multiselect/BulkImport.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/multiselect/BulkUpload.php b/plugins/multiselect/BulkUpload.php index 07e76d6..11f3f18 100755 --- a/plugins/multiselect/BulkUpload.php +++ b/plugins/multiselect/BulkUpload.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/multiselect/InetWidgets.php b/plugins/multiselect/InetWidgets.php index c2eb83c..7fddbe8 100644 --- a/plugins/multiselect/InetWidgets.php +++ b/plugins/multiselect/InetWidgets.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/multiselect/InetdocumentFieldsv2.php b/plugins/multiselect/InetdocumentFieldsv2.php index 8c4f097..c929884 100644 --- a/plugins/multiselect/InetdocumentFieldsv2.php +++ b/plugins/multiselect/InetdocumentFieldsv2.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/multiselect/MultiSelectPlugin.php b/plugins/multiselect/MultiSelectPlugin.php index 5b036ac..2b6f00d 100644 --- a/plugins/multiselect/MultiSelectPlugin.php +++ b/plugins/multiselect/MultiSelectPlugin.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/multiselect/addDocument.php b/plugins/multiselect/addDocument.php index 3c39466..fd78591 100644 --- a/plugins/multiselect/addDocument.php +++ b/plugins/multiselect/addDocument.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/multiselect/inetbasic.inc.php b/plugins/multiselect/inetbasic.inc.php index 57b4146..b6a195a 100644 --- a/plugins/multiselect/inetbasic.inc.php +++ b/plugins/multiselect/inetbasic.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/passwordResetPlugin/loginResetDispatcher.php b/plugins/passwordResetPlugin/loginResetDispatcher.php index efa39bd..1ea0e66 100644 --- a/plugins/passwordResetPlugin/loginResetDispatcher.php +++ b/plugins/passwordResetPlugin/loginResetDispatcher.php @@ -8,7 +8,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/passwordResetPlugin/passwordResetPlugin.php b/plugins/passwordResetPlugin/passwordResetPlugin.php index 0c78881..5293e68 100644 --- a/plugins/passwordResetPlugin/passwordResetPlugin.php +++ b/plugins/passwordResetPlugin/passwordResetPlugin.php @@ -8,7 +8,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/rssplugin/KTrss.inc.php b/plugins/rssplugin/KTrss.inc.php index f58423f..7eda798 100644 --- a/plugins/rssplugin/KTrss.inc.php +++ b/plugins/rssplugin/KTrss.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/rssplugin/RSSDashlet.php b/plugins/rssplugin/RSSDashlet.php index 09b5871..77f6495 100644 --- a/plugins/rssplugin/RSSDashlet.php +++ b/plugins/rssplugin/RSSDashlet.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/rssplugin/RSSDedicatedDashlet.php b/plugins/rssplugin/RSSDedicatedDashlet.php index 59ae0c0..a4227f1 100644 --- a/plugins/rssplugin/RSSDedicatedDashlet.php +++ b/plugins/rssplugin/RSSDedicatedDashlet.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/rssplugin/RSSDocumentLinkAction.php b/plugins/rssplugin/RSSDocumentLinkAction.php index d4cf325..1e0e683 100644 --- a/plugins/rssplugin/RSSDocumentLinkAction.php +++ b/plugins/rssplugin/RSSDocumentLinkAction.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/rssplugin/RSSFolderLinkAction.php b/plugins/rssplugin/RSSFolderLinkAction.php index ba82e7f..8b74f3e 100644 --- a/plugins/rssplugin/RSSFolderLinkAction.php +++ b/plugins/rssplugin/RSSFolderLinkAction.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/rssplugin/RSSPlugin.php b/plugins/rssplugin/RSSPlugin.php index 4c1332b..ba5b633 100644 --- a/plugins/rssplugin/RSSPlugin.php +++ b/plugins/rssplugin/RSSPlugin.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/rssplugin/loadDedicatedFeed.inc.php b/plugins/rssplugin/loadDedicatedFeed.inc.php index 79895ca..19ea9f8 100644 --- a/plugins/rssplugin/loadDedicatedFeed.inc.php +++ b/plugins/rssplugin/loadDedicatedFeed.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/rssplugin/loadFeed.inc.php b/plugins/rssplugin/loadFeed.inc.php index e69a3fb..e5f51b0 100644 --- a/plugins/rssplugin/loadFeed.inc.php +++ b/plugins/rssplugin/loadFeed.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/rssplugin/manageRSSFeeds.php b/plugins/rssplugin/manageRSSFeeds.php index e5829a4..6de4984 100644 --- a/plugins/rssplugin/manageRSSFeeds.php +++ b/plugins/rssplugin/manageRSSFeeds.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/rssplugin/rss2array.inc.php b/plugins/rssplugin/rss2array.inc.php index cdfdcf1..5924284 100644 --- a/plugins/rssplugin/rss2array.inc.php +++ b/plugins/rssplugin/rss2array.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/search2/ExternalDashlet.php b/plugins/search2/ExternalDashlet.php index ae26bce..fd81039 100644 --- a/plugins/search2/ExternalDashlet.php +++ b/plugins/search2/ExternalDashlet.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/search2/IndexingHelp.php b/plugins/search2/IndexingHelp.php index 29538ff..8296470 100644 --- a/plugins/search2/IndexingHelp.php +++ b/plugins/search2/IndexingHelp.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/search2/IndexingStatusDashlet.php b/plugins/search2/IndexingStatusDashlet.php index b1c8bc6..4a5bced 100644 --- a/plugins/search2/IndexingStatusDashlet.php +++ b/plugins/search2/IndexingStatusDashlet.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/search2/LuceneStatisticsDashlet.php b/plugins/search2/LuceneStatisticsDashlet.php index 8f7d0e7..909fc94 100644 --- a/plugins/search2/LuceneStatisticsDashlet.php +++ b/plugins/search2/LuceneStatisticsDashlet.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/search2/MigrationDashlet.php b/plugins/search2/MigrationDashlet.php index ca15fe7..89e75b7 100644 --- a/plugins/search2/MigrationDashlet.php +++ b/plugins/search2/MigrationDashlet.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/search2/openSearch.php b/plugins/search2/openSearch.php index 94a1f35..a47855b 100644 --- a/plugins/search2/openSearch.php +++ b/plugins/search2/openSearch.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/search2/reporting/ExtractorInfo.php b/plugins/search2/reporting/ExtractorInfo.php index 788083f..977a81c 100644 --- a/plugins/search2/reporting/ExtractorInfo.php +++ b/plugins/search2/reporting/ExtractorInfo.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/search2/reporting/IndexErrors.php b/plugins/search2/reporting/IndexErrors.php index aab22e1..0ccca13 100644 --- a/plugins/search2/reporting/IndexErrors.php +++ b/plugins/search2/reporting/IndexErrors.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/search2/reporting/IndexingStatus.php b/plugins/search2/reporting/IndexingStatus.php index 14d3ad9..d6c1460 100644 --- a/plugins/search2/reporting/IndexingStatus.php +++ b/plugins/search2/reporting/IndexingStatus.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/search2/reporting/LuceneStatistics.php b/plugins/search2/reporting/LuceneStatistics.php index 1764afb..9211e88 100644 --- a/plugins/search2/reporting/LuceneStatistics.php +++ b/plugins/search2/reporting/LuceneStatistics.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/search2/reporting/ManageMimeTypes.php b/plugins/search2/reporting/ManageMimeTypes.php index 50dced6..d38f9a1 100644 --- a/plugins/search2/reporting/ManageMimeTypes.php +++ b/plugins/search2/reporting/ManageMimeTypes.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/search2/reporting/PendingDocuments.php b/plugins/search2/reporting/PendingDocuments.php index e0ba011..8198b5e 100644 --- a/plugins/search2/reporting/PendingDocuments.php +++ b/plugins/search2/reporting/PendingDocuments.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/search2/reporting/RescheduleDocuments.php b/plugins/search2/reporting/RescheduleDocuments.php index 533f9fc..a54b059 100644 --- a/plugins/search2/reporting/RescheduleDocuments.php +++ b/plugins/search2/reporting/RescheduleDocuments.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/tagcloud/TagCloudDashlet.php b/plugins/tagcloud/TagCloudDashlet.php index 8e97681..ade7c99 100644 --- a/plugins/tagcloud/TagCloudDashlet.php +++ b/plugins/tagcloud/TagCloudDashlet.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/tagcloud/TagCloudPlugin.php b/plugins/tagcloud/TagCloudPlugin.php index eb05c60..e851994 100644 --- a/plugins/tagcloud/TagCloudPlugin.php +++ b/plugins/tagcloud/TagCloudPlugin.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/tagcloud/TagCloudPortlet.php b/plugins/tagcloud/TagCloudPortlet.php index 48fb2ca..a63c7de 100644 --- a/plugins/tagcloud/TagCloudPortlet.php +++ b/plugins/tagcloud/TagCloudPortlet.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/tagcloud/TagCloudTriggers.php b/plugins/tagcloud/TagCloudTriggers.php index 9a66f9e..a8c2e2e 100644 --- a/plugins/tagcloud/TagCloudTriggers.php +++ b/plugins/tagcloud/TagCloudTriggers.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/plugins/tagcloud/TagCloudUtil.inc.php b/plugins/tagcloud/TagCloudUtil.inc.php index cc4017b..d458724 100644 --- a/plugins/tagcloud/TagCloudUtil.inc.php +++ b/plugins/tagcloud/TagCloudUtil.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/presentation/i18nJavascript.php b/presentation/i18nJavascript.php index faf582f..7aba6b6 100644 --- a/presentation/i18nJavascript.php +++ b/presentation/i18nJavascript.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/presentation/logout.php b/presentation/logout.php index 1e60f2a..48d6d37 100644 --- a/presentation/logout.php +++ b/presentation/logout.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/presentation/lookAndFeel/knowledgeTree/ajaxConditional.php b/presentation/lookAndFeel/knowledgeTree/ajaxConditional.php index dfed12a..954b71e 100644 --- a/presentation/lookAndFeel/knowledgeTree/ajaxConditional.php +++ b/presentation/lookAndFeel/knowledgeTree/ajaxConditional.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/presentation/lookAndFeel/knowledgeTree/documentmanagement/getHtmlFields.php b/presentation/lookAndFeel/knowledgeTree/documentmanagement/getHtmlFields.php index 02b96df..f93e280 100755 --- a/presentation/lookAndFeel/knowledgeTree/documentmanagement/getHtmlFields.php +++ b/presentation/lookAndFeel/knowledgeTree/documentmanagement/getHtmlFields.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/presentation/lookAndFeel/knowledgeTree/documentmanagement/getTypeMetadataFields.php b/presentation/lookAndFeel/knowledgeTree/documentmanagement/getTypeMetadataFields.php index 595a023..0b4d7c2 100644 --- a/presentation/lookAndFeel/knowledgeTree/documentmanagement/getTypeMetadataFields.php +++ b/presentation/lookAndFeel/knowledgeTree/documentmanagement/getTypeMetadataFields.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/presentation/lookAndFeel/knowledgeTree/help.php b/presentation/lookAndFeel/knowledgeTree/help.php index c64488c..354240c 100644 --- a/presentation/lookAndFeel/knowledgeTree/help.php +++ b/presentation/lookAndFeel/knowledgeTree/help.php @@ -7,7 +7,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/presentation/lookAndFeel/knowledgeTree/noAccess.php b/presentation/lookAndFeel/knowledgeTree/noAccess.php index 66dd15c..eae03fd 100644 --- a/presentation/lookAndFeel/knowledgeTree/noAccess.php +++ b/presentation/lookAndFeel/knowledgeTree/noAccess.php @@ -7,7 +7,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search/ajaxBooleanSearch.php b/search/ajaxBooleanSearch.php index f63363b..fb2bb78 100755 --- a/search/ajaxBooleanSearch.php +++ b/search/ajaxBooleanSearch.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search/booleanSearch.php b/search/booleanSearch.php index e3c1314..338259c 100755 --- a/search/booleanSearch.php +++ b/search/booleanSearch.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search/simpleSearch.php b/search/simpleSearch.php index 6f491cd..be058d1 100644 --- a/search/simpleSearch.php +++ b/search/simpleSearch.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/ajax/ajax.inc.php b/search2/ajax/ajax.inc.php index 82d07f8..fd7a52e 100755 --- a/search2/ajax/ajax.inc.php +++ b/search2/ajax/ajax.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/ajax/metadata.php b/search2/ajax/metadata.php index 0ebf048..ad14c5b 100755 --- a/search2/ajax/metadata.php +++ b/search2/ajax/metadata.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/ajax/parseExpr.php b/search2/ajax/parseExpr.php index 80a6e8c..0ac9829 100755 --- a/search2/ajax/parseExpr.php +++ b/search2/ajax/parseExpr.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/ajax/saveExpr.php b/search2/ajax/saveExpr.php index fb552d2..2731812 100755 --- a/search2/ajax/saveExpr.php +++ b/search2/ajax/saveExpr.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/ajax/savedSearches.php b/search2/ajax/savedSearches.php index c81fe41..bc6a141 100755 --- a/search2/ajax/savedSearches.php +++ b/search2/ajax/savedSearches.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/ajax/searchFields.php b/search2/ajax/searchFields.php index 333205e..f57f327 100755 --- a/search2/ajax/searchFields.php +++ b/search2/ajax/searchFields.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/ajax/treeNodes.php b/search2/ajax/treeNodes.php index 20ed233..21b5197 100755 --- a/search2/ajax/treeNodes.php +++ b/search2/ajax/treeNodes.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/bin/cronCleanup.php b/search2/bin/cronCleanup.php index d218a7f..d63d10b 100644 --- a/search2/bin/cronCleanup.php +++ b/search2/bin/cronCleanup.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/bin/cronDocumentProcessor.php b/search2/bin/cronDocumentProcessor.php index 3e68a83..5ddec6a 100644 --- a/search2/bin/cronDocumentProcessor.php +++ b/search2/bin/cronDocumentProcessor.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/bin/cronIndexStats.php b/search2/bin/cronIndexStats.php index 41057cc..4296111 100644 --- a/search2/bin/cronIndexStats.php +++ b/search2/bin/cronIndexStats.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/bin/cronIndexer.php b/search2/bin/cronIndexer.php index 1eebb5f..f8d896c 100644 --- a/search2/bin/cronIndexer.php +++ b/search2/bin/cronIndexer.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/bin/cronMigration.php b/search2/bin/cronMigration.php index 30c2d1a..053cfd7 100644 --- a/search2/bin/cronMigration.php +++ b/search2/bin/cronMigration.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/bin/cronOptimize.php b/search2/bin/cronOptimize.php index d19fff0..819171e 100644 --- a/search2/bin/cronOptimize.php +++ b/search2/bin/cronOptimize.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/bin/cronResources.php b/search2/bin/cronResources.php index 3e59294..c6e233a 100644 --- a/search2/bin/cronResources.php +++ b/search2/bin/cronResources.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/bin/optimise.php b/search2/bin/optimise.php index 1e69f7c..60693d7 100644 --- a/search2/bin/optimise.php +++ b/search2/bin/optimise.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/documentProcessor/bin/documentProcessor.php b/search2/documentProcessor/bin/documentProcessor.php index e2039f8..297fa3e 100644 --- a/search2/documentProcessor/bin/documentProcessor.php +++ b/search2/documentProcessor/bin/documentProcessor.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/documentProcessor/documentProcessor.inc.php b/search2/documentProcessor/documentProcessor.inc.php index 273a904..3e54746 100644 --- a/search2/documentProcessor/documentProcessor.inc.php +++ b/search2/documentProcessor/documentProcessor.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/indexing/bin/cronIndexer.php b/search2/indexing/bin/cronIndexer.php index e1b3015..c6b3d9c 100755 --- a/search2/indexing/bin/cronIndexer.php +++ b/search2/indexing/bin/cronIndexer.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/indexing/bin/cronMigration.php b/search2/indexing/bin/cronMigration.php index b965ae7..bffdf6f 100644 --- a/search2/indexing/bin/cronMigration.php +++ b/search2/indexing/bin/cronMigration.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/indexing/bin/cronOptimize.php b/search2/indexing/bin/cronOptimize.php index d19fff0..819171e 100644 --- a/search2/indexing/bin/cronOptimize.php +++ b/search2/indexing/bin/cronOptimize.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/indexing/bin/diagnose.php b/search2/indexing/bin/diagnose.php index 2590b3e..8974fa3 100755 --- a/search2/indexing/bin/diagnose.php +++ b/search2/indexing/bin/diagnose.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/indexing/bin/optimise.php b/search2/indexing/bin/optimise.php index 08fa9d4..37af5e1 100755 --- a/search2/indexing/bin/optimise.php +++ b/search2/indexing/bin/optimise.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/indexing/bin/recreateIndex.php b/search2/indexing/bin/recreateIndex.php index f2e9fab..3c3fec9 100755 --- a/search2/indexing/bin/recreateIndex.php +++ b/search2/indexing/bin/recreateIndex.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/indexing/bin/registerTypes.php b/search2/indexing/bin/registerTypes.php index dadef7b..becc926 100755 --- a/search2/indexing/bin/registerTypes.php +++ b/search2/indexing/bin/registerTypes.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/indexing/bin/reportUnindexedDocuments.php b/search2/indexing/bin/reportUnindexedDocuments.php index c403a96..672dd95 100644 --- a/search2/indexing/bin/reportUnindexedDocuments.php +++ b/search2/indexing/bin/reportUnindexedDocuments.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/indexing/bin/shutdown.php b/search2/indexing/bin/shutdown.php index b7bd87c..7157b9d 100644 --- a/search2/indexing/bin/shutdown.php +++ b/search2/indexing/bin/shutdown.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/indexing/extractorCore.inc.php b/search2/indexing/extractorCore.inc.php index 0cdb95d..6090fe0 100755 --- a/search2/indexing/extractorCore.inc.php +++ b/search2/indexing/extractorCore.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/indexing/extractors/ExifExtractor.inc.php b/search2/indexing/extractors/ExifExtractor.inc.php index 0bf6b76..156b89b 100644 --- a/search2/indexing/extractors/ExifExtractor.inc.php +++ b/search2/indexing/extractors/ExifExtractor.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/indexing/extractors/OOPresentationExtractor.inc.php b/search2/indexing/extractors/OOPresentationExtractor.inc.php index 524a9eb..f17d8fe 100755 --- a/search2/indexing/extractors/OOPresentationExtractor.inc.php +++ b/search2/indexing/extractors/OOPresentationExtractor.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/indexing/extractors/OOSpreadsheetExtractor.inc.php b/search2/indexing/extractors/OOSpreadsheetExtractor.inc.php index 5a1206e..7f3fb74 100755 --- a/search2/indexing/extractors/OOSpreadsheetExtractor.inc.php +++ b/search2/indexing/extractors/OOSpreadsheetExtractor.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/indexing/extractors/OOTextExtractor.inc.php b/search2/indexing/extractors/OOTextExtractor.inc.php index 4fbb06e..a5abd4f 100755 --- a/search2/indexing/extractors/OOTextExtractor.inc.php +++ b/search2/indexing/extractors/OOTextExtractor.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/indexing/extractors/OpenOfficeTextExtractor.inc.php b/search2/indexing/extractors/OpenOfficeTextExtractor.inc.php index 2878e7c..36e18cc 100644 --- a/search2/indexing/extractors/OpenOfficeTextExtractor.inc.php +++ b/search2/indexing/extractors/OpenOfficeTextExtractor.inc.php @@ -8,7 +8,7 @@ require_once(KT_DIR.'/thirdparty/peclzip/pclzip.lib.php'); * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/indexing/extractors/OpenXmlTextExtractor.inc.php b/search2/indexing/extractors/OpenXmlTextExtractor.inc.php index c710a39..4cb09ba 100644 --- a/search2/indexing/extractors/OpenXmlTextExtractor.inc.php +++ b/search2/indexing/extractors/OpenXmlTextExtractor.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/indexing/extractors/PDFExtractor.inc.php b/search2/indexing/extractors/PDFExtractor.inc.php index 31353a3..716b12d 100755 --- a/search2/indexing/extractors/PDFExtractor.inc.php +++ b/search2/indexing/extractors/PDFExtractor.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/indexing/extractors/PSExtractor.inc.php b/search2/indexing/extractors/PSExtractor.inc.php index 0657769..bd6b8f9 100755 --- a/search2/indexing/extractors/PSExtractor.inc.php +++ b/search2/indexing/extractors/PSExtractor.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/indexing/extractors/PlainTextExtractor.inc.php b/search2/indexing/extractors/PlainTextExtractor.inc.php index 3b40f0f..41cda1f 100755 --- a/search2/indexing/extractors/PlainTextExtractor.inc.php +++ b/search2/indexing/extractors/PlainTextExtractor.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/indexing/extractors/RTFExtractor.inc.php b/search2/indexing/extractors/RTFExtractor.inc.php index 05b7851..020ce07 100644 --- a/search2/indexing/extractors/RTFExtractor.inc.php +++ b/search2/indexing/extractors/RTFExtractor.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/indexing/extractors/ScriptExtractor.inc.php b/search2/indexing/extractors/ScriptExtractor.inc.php index 0f76629..9ae65fe 100755 --- a/search2/indexing/extractors/ScriptExtractor.inc.php +++ b/search2/indexing/extractors/ScriptExtractor.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/indexing/extractors/StarOfficeExtractor.inc.php b/search2/indexing/extractors/StarOfficeExtractor.inc.php index 5ae17cf..9fe16b8 100644 --- a/search2/indexing/extractors/StarOfficeExtractor.inc.php +++ b/search2/indexing/extractors/StarOfficeExtractor.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/indexing/extractors/TikaApacheExtractor.inc.php b/search2/indexing/extractors/TikaApacheExtractor.inc.php index 9aa6c18..3ab33c6 100644 --- a/search2/indexing/extractors/TikaApacheExtractor.inc.php +++ b/search2/indexing/extractors/TikaApacheExtractor.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/indexing/extractors/XMLExtractor.inc.php b/search2/indexing/extractors/XMLExtractor.inc.php index 8d2fd2b..d5addef 100755 --- a/search2/indexing/extractors/XMLExtractor.inc.php +++ b/search2/indexing/extractors/XMLExtractor.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/indexing/indexerCore.inc.php b/search2/indexing/indexerCore.inc.php index 6b81f18..ead6e54 100755 --- a/search2/indexing/indexerCore.inc.php +++ b/search2/indexing/indexerCore.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/indexing/indexers/JavaXMLRPCLuceneIndexer.inc.php b/search2/indexing/indexers/JavaXMLRPCLuceneIndexer.inc.php index 18bebe2..287bef2 100755 --- a/search2/indexing/indexers/JavaXMLRPCLuceneIndexer.inc.php +++ b/search2/indexing/indexers/JavaXMLRPCLuceneIndexer.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/indexing/indexers/PHPLuceneIndexer.inc.php b/search2/indexing/indexers/PHPLuceneIndexer.inc.php index 3bc398a..9bbeae3 100755 --- a/search2/indexing/indexers/PHPLuceneIndexer.inc.php +++ b/search2/indexing/indexers/PHPLuceneIndexer.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/indexing/lib/XmlRpcLucene.inc.php b/search2/indexing/lib/XmlRpcLucene.inc.php index 38fc01c..f71cc14 100755 --- a/search2/indexing/lib/XmlRpcLucene.inc.php +++ b/search2/indexing/lib/XmlRpcLucene.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/search/SearchCommandLexer.php b/search2/search/SearchCommandLexer.php index 4a50a94..60c97db 100755 --- a/search2/search/SearchCommandLexer.php +++ b/search2/search/SearchCommandLexer.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/search/bin/cronSavedSearch.php b/search2/search/bin/cronSavedSearch.php index ade74e7..da4c2de 100644 --- a/search2/search/bin/cronSavedSearch.php +++ b/search2/search/bin/cronSavedSearch.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/search/bin/search.php b/search2/search/bin/search.php index dfe2ac0..f5cb16e 100755 --- a/search2/search/bin/search.php +++ b/search2/search/bin/search.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/search/bin/search2graphviz.php b/search2/search/bin/search2graphviz.php index c6364ed..99ed9d6 100644 --- a/search2/search/bin/search2graphviz.php +++ b/search2/search/bin/search2graphviz.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/search/expr.inc.php b/search2/search/expr.inc.php index f5aa19c..5d193d3 100755 --- a/search2/search/expr.inc.php +++ b/search2/search/expr.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/search/exprConstants.inc.php b/search2/search/exprConstants.inc.php index 7b849e4..f7cf1d8 100755 --- a/search2/search/exprConstants.inc.php +++ b/search2/search/exprConstants.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/search/fieldRegistry.inc.php b/search2/search/fieldRegistry.inc.php index 14713a1..b49a1e3 100755 --- a/search2/search/fieldRegistry.inc.php +++ b/search2/search/fieldRegistry.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/search/fields/AnyMetadataField.inc.php b/search2/search/fields/AnyMetadataField.inc.php index 85a983a..e505a43 100755 --- a/search2/search/fields/AnyMetadataField.inc.php +++ b/search2/search/fields/AnyMetadataField.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/search/fields/CheckedOutByField.inc.php b/search2/search/fields/CheckedOutByField.inc.php index f3e3ec9..f517898 100755 --- a/search2/search/fields/CheckedOutByField.inc.php +++ b/search2/search/fields/CheckedOutByField.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/search/fields/CheckedOutDeltaField.inc.php b/search2/search/fields/CheckedOutDeltaField.inc.php index a662049..e9c628e 100644 --- a/search2/search/fields/CheckedOutDeltaField.inc.php +++ b/search2/search/fields/CheckedOutDeltaField.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/search/fields/CheckedOutField.inc.php b/search2/search/fields/CheckedOutField.inc.php index f904bcb..43abdcd 100644 --- a/search2/search/fields/CheckedOutField.inc.php +++ b/search2/search/fields/CheckedOutField.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/search/fields/CreatedByField.inc.php b/search2/search/fields/CreatedByField.inc.php index f5a0b2c..f4c8770 100755 --- a/search2/search/fields/CreatedByField.inc.php +++ b/search2/search/fields/CreatedByField.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/search/fields/CreatedDeltaField.inc.php b/search2/search/fields/CreatedDeltaField.inc.php index 32e1361..ccd32da 100755 --- a/search2/search/fields/CreatedDeltaField.inc.php +++ b/search2/search/fields/CreatedDeltaField.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/search/fields/CreatedField.inc.php b/search2/search/fields/CreatedField.inc.php index b1830d0..50e8f85 100755 --- a/search2/search/fields/CreatedField.inc.php +++ b/search2/search/fields/CreatedField.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/search/fields/DiscussionTextField.inc.php b/search2/search/fields/DiscussionTextField.inc.php index 5124c87..420a039 100755 --- a/search2/search/fields/DiscussionTextField.inc.php +++ b/search2/search/fields/DiscussionTextField.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/search/fields/DocumentIdField.inc.php b/search2/search/fields/DocumentIdField.inc.php index d6a2708..d0439e4 100755 --- a/search2/search/fields/DocumentIdField.inc.php +++ b/search2/search/fields/DocumentIdField.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/search/fields/DocumentOemNoField.inc.php b/search2/search/fields/DocumentOemNoField.inc.php index 9f07e86..22bb1d0 100644 --- a/search2/search/fields/DocumentOemNoField.inc.php +++ b/search2/search/fields/DocumentOemNoField.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/search/fields/DocumentTextField.inc.php b/search2/search/fields/DocumentTextField.inc.php index 1af9f82..6f74a0f 100755 --- a/search2/search/fields/DocumentTextField.inc.php +++ b/search2/search/fields/DocumentTextField.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/search/fields/DocumentTypeField.inc.php b/search2/search/fields/DocumentTypeField.inc.php index 621e9cb..017b283 100755 --- a/search2/search/fields/DocumentTypeField.inc.php +++ b/search2/search/fields/DocumentTypeField.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/search/fields/FilenameField.inc.php b/search2/search/fields/FilenameField.inc.php index eebf682..60ed293 100755 --- a/search2/search/fields/FilenameField.inc.php +++ b/search2/search/fields/FilenameField.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/search/fields/FilesizeField.inc.php b/search2/search/fields/FilesizeField.inc.php index 06e727a..98658a6 100755 --- a/search2/search/fields/FilesizeField.inc.php +++ b/search2/search/fields/FilesizeField.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/search/fields/FolderField.inc.php b/search2/search/fields/FolderField.inc.php index 16389bb..e271c5b 100755 --- a/search2/search/fields/FolderField.inc.php +++ b/search2/search/fields/FolderField.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/search/fields/FolderFieldID.inc.php b/search2/search/fields/FolderFieldID.inc.php index 9b73b55..4dcdbd2 100644 --- a/search2/search/fields/FolderFieldID.inc.php +++ b/search2/search/fields/FolderFieldID.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/search/fields/FullPathField.inc.php b/search2/search/fields/FullPathField.inc.php index 7bcb19d..e7f4739 100644 --- a/search2/search/fields/FullPathField.inc.php +++ b/search2/search/fields/FullPathField.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/search/fields/GeneralTextField.inc.php b/search2/search/fields/GeneralTextField.inc.php index 8af694e..7fadcdf 100755 --- a/search2/search/fields/GeneralTextField.inc.php +++ b/search2/search/fields/GeneralTextField.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/search/fields/IsArchivedField.inc.php b/search2/search/fields/IsArchivedField.inc.php index 9b010ca..e2c2b00 100644 --- a/search2/search/fields/IsArchivedField.inc.php +++ b/search2/search/fields/IsArchivedField.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/search/fields/IsCheckedOutField.inc.php b/search2/search/fields/IsCheckedOutField.inc.php index 6d68b68..2190146 100755 --- a/search2/search/fields/IsCheckedOutField.inc.php +++ b/search2/search/fields/IsCheckedOutField.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/search/fields/IsDeletedField.inc.php b/search2/search/fields/IsDeletedField.inc.php index 288b091..9390d8c 100644 --- a/search2/search/fields/IsDeletedField.inc.php +++ b/search2/search/fields/IsDeletedField.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/search/fields/IsImmutableField.inc.php b/search2/search/fields/IsImmutableField.inc.php index 550d257..525ea18 100755 --- a/search2/search/fields/IsImmutableField.inc.php +++ b/search2/search/fields/IsImmutableField.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/search/fields/MimeTypeField.inc.php b/search2/search/fields/MimeTypeField.inc.php index 13f4d0f..49e6ea9 100755 --- a/search2/search/fields/MimeTypeField.inc.php +++ b/search2/search/fields/MimeTypeField.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/search/fields/ModifiedByField.inc.php b/search2/search/fields/ModifiedByField.inc.php index e57de6d..ce67054 100755 --- a/search2/search/fields/ModifiedByField.inc.php +++ b/search2/search/fields/ModifiedByField.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/search/fields/ModifiedDeltaField.inc.php b/search2/search/fields/ModifiedDeltaField.inc.php index 696b07b..e06eaca 100755 --- a/search2/search/fields/ModifiedDeltaField.inc.php +++ b/search2/search/fields/ModifiedDeltaField.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/search/fields/ModifiedField.inc.php b/search2/search/fields/ModifiedField.inc.php index 3db67f8..9465c46 100755 --- a/search2/search/fields/ModifiedField.inc.php +++ b/search2/search/fields/ModifiedField.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/search/fields/TagField.inc.php b/search2/search/fields/TagField.inc.php index 9336788..f2f9f30 100755 --- a/search2/search/fields/TagField.inc.php +++ b/search2/search/fields/TagField.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/search/fields/TitleField.inc.php b/search2/search/fields/TitleField.inc.php index 34d2ea1..47e5c98 100755 --- a/search2/search/fields/TitleField.inc.php +++ b/search2/search/fields/TitleField.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/search/fields/WorkflowField.inc.php b/search2/search/fields/WorkflowField.inc.php index 2f500f2..4f28d1f 100755 --- a/search2/search/fields/WorkflowField.inc.php +++ b/search2/search/fields/WorkflowField.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/search/fields/WorkflowIDField.inc.php b/search2/search/fields/WorkflowIDField.inc.php index 4730e90..ff2adce 100644 --- a/search2/search/fields/WorkflowIDField.inc.php +++ b/search2/search/fields/WorkflowIDField.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/search/fields/WorkflowStateField.inc.php b/search2/search/fields/WorkflowStateField.inc.php index b34a22e..f50e4b4 100755 --- a/search2/search/fields/WorkflowStateField.inc.php +++ b/search2/search/fields/WorkflowStateField.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/search/fields/WorkflowStateIDField.inc.php b/search2/search/fields/WorkflowStateIDField.inc.php index e515a16..f90f3a4 100644 --- a/search2/search/fields/WorkflowStateIDField.inc.php +++ b/search2/search/fields/WorkflowStateIDField.inc.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/search2/search/search.inc.php b/search2/search/search.inc.php index 0867915..c5c2d44 100755 --- a/search2/search/search.inc.php +++ b/search2/search/search.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/setup/migrate/index.php b/setup/migrate/index.php index 3f80899..5486fc7 100644 --- a/setup/migrate/index.php +++ b/setup/migrate/index.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008,2009 KnowledgeTree Inc. -* Portions copyright The Jam Warehouse Software (Pty) Limited +* * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/setup/migrate/migrateWizard.php b/setup/migrate/migrateWizard.php index c95397f..25d079a 100644 --- a/setup/migrate/migrateWizard.php +++ b/setup/migrate/migrateWizard.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008,2009 KnowledgeTree Inc. -* Portions copyright The Jam Warehouse Software (Pty) Limited +* * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/setup/migrate/migrater.php b/setup/migrate/migrater.php index 86f78f5..14a9e86 100644 --- a/setup/migrate/migrater.php +++ b/setup/migrate/migrater.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008,2009 KnowledgeTree Inc. -* Portions copyright The Jam Warehouse Software (Pty) Limited +* * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/setup/migrate/stepAction.php b/setup/migrate/stepAction.php index 1037f86..bf99bdd 100644 --- a/setup/migrate/stepAction.php +++ b/setup/migrate/stepAction.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008,2009 KnowledgeTree Inc. -* Portions copyright The Jam Warehouse Software (Pty) Limited +* * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/setup/postcheckup.php b/setup/postcheckup.php index fb69501..2e4865b 100644 --- a/setup/postcheckup.php +++ b/setup/postcheckup.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/setup/precheckup.php b/setup/precheckup.php index d8e5de4..3b1de26 100644 --- a/setup/precheckup.php +++ b/setup/precheckup.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/setup/upgrade.php b/setup/upgrade.php index d69b03f..2be9d9e 100644 --- a/setup/upgrade.php +++ b/setup/upgrade.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/setup/upgrade/index.php b/setup/upgrade/index.php index dd5677f..73576d0 100644 --- a/setup/upgrade/index.php +++ b/setup/upgrade/index.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008,2009 KnowledgeTree Inc. -* Portions copyright The Jam Warehouse Software (Pty) Limited +* * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/setup/upgrade/lib/UpgradeItems.inc.php b/setup/upgrade/lib/UpgradeItems.inc.php index f604872..2e5e3fc 100644 --- a/setup/upgrade/lib/UpgradeItems.inc.php +++ b/setup/upgrade/lib/UpgradeItems.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/setup/upgrade/lib/datetime.inc.php b/setup/upgrade/lib/datetime.inc.php index 6bcffd2..55d0109 100644 --- a/setup/upgrade/lib/datetime.inc.php +++ b/setup/upgrade/lib/datetime.inc.php @@ -7,7 +7,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/setup/upgrade/lib/sqlfile.inc.php b/setup/upgrade/lib/sqlfile.inc.php index 9362844..588bbe1 100644 --- a/setup/upgrade/lib/sqlfile.inc.php +++ b/setup/upgrade/lib/sqlfile.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/setup/upgrade/lib/upgrade.inc.php b/setup/upgrade/lib/upgrade.inc.php index 2fa9a9a..19711c4 100644 --- a/setup/upgrade/lib/upgrade.inc.php +++ b/setup/upgrade/lib/upgrade.inc.php @@ -8,7 +8,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/setup/upgrade/stepAction.php b/setup/upgrade/stepAction.php index 180dcc7..1e126b3 100644 --- a/setup/upgrade/stepAction.php +++ b/setup/upgrade/stepAction.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008,2009 KnowledgeTree Inc. -* Portions copyright The Jam Warehouse Software (Pty) Limited +* * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/setup/upgrade/upgradeWizard.php b/setup/upgrade/upgradeWizard.php index 688a9c3..4741562 100644 --- a/setup/upgrade/upgradeWizard.php +++ b/setup/upgrade/upgradeWizard.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008,2009 KnowledgeTree Inc. -* Portions copyright The Jam Warehouse Software (Pty) Limited +* * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/setup/upgrade/upgradedbUtil.php b/setup/upgrade/upgradedbUtil.php index f032782..9decf07 100644 --- a/setup/upgrade/upgradedbUtil.php +++ b/setup/upgrade/upgradedbUtil.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008,2009 KnowledgeTree Inc. -* Portions copyright The Jam Warehouse Software (Pty) Limited +* * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/setup/upgrade/upgrader.php b/setup/upgrade/upgrader.php index 55bdffb..147453e 100644 --- a/setup/upgrade/upgrader.php +++ b/setup/upgrade/upgrader.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008,2009 KnowledgeTree Inc. -* Portions copyright The Jam Warehouse Software (Pty) Limited +* * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/setup/wizard/dbUtilities.php b/setup/wizard/dbUtilities.php index 39f6876..44a64bc 100644 --- a/setup/wizard/dbUtilities.php +++ b/setup/wizard/dbUtilities.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008,2009 KnowledgeTree Inc. -* Portions copyright The Jam Warehouse Software (Pty) Limited +* * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/setup/wizard/index.php b/setup/wizard/index.php index f771d84..0bbe59b 100644 --- a/setup/wizard/index.php +++ b/setup/wizard/index.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008,2009 KnowledgeTree Inc. -* Portions copyright The Jam Warehouse Software (Pty) Limited +* * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/setup/wizard/iniUtilities.php b/setup/wizard/iniUtilities.php index b7e336e..ed59c34 100644 --- a/setup/wizard/iniUtilities.php +++ b/setup/wizard/iniUtilities.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/setup/wizard/installWizard.php b/setup/wizard/installWizard.php index 825b74d..4c4c7e6 100644 --- a/setup/wizard/installWizard.php +++ b/setup/wizard/installWizard.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008,2009 KnowledgeTree Inc. -* Portions copyright The Jam Warehouse Software (Pty) Limited +* * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/setup/wizard/installer.php b/setup/wizard/installer.php index 304860b..19e8b2b 100644 --- a/setup/wizard/installer.php +++ b/setup/wizard/installer.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008,2009 KnowledgeTree Inc. -* Portions copyright The Jam Warehouse Software (Pty) Limited +* * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/setup/wizard/lib/services/windowsLucene.php b/setup/wizard/lib/services/windowsLucene.php index 2e5b5d8..65cea58 100644 --- a/setup/wizard/lib/services/windowsLucene.php +++ b/setup/wizard/lib/services/windowsLucene.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008,2009 KnowledgeTree Inc. -* Portions copyright The Jam Warehouse Software (Pty) Limited +* * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/setup/wizard/lib/services/windowsScheduler.php b/setup/wizard/lib/services/windowsScheduler.php index fb98bb8..a8cf13d 100644 --- a/setup/wizard/lib/services/windowsScheduler.php +++ b/setup/wizard/lib/services/windowsScheduler.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008,2009 KnowledgeTree Inc. -* Portions copyright The Jam Warehouse Software (Pty) Limited +* * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/setup/wizard/path.php b/setup/wizard/path.php index d89017c..fd3e97b 100644 --- a/setup/wizard/path.php +++ b/setup/wizard/path.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008,2009 KnowledgeTree Inc. -* Portions copyright The Jam Warehouse Software (Pty) Limited +* * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/setup/wizard/stepAction.php b/setup/wizard/stepAction.php index cdcd1e9..821187f 100644 --- a/setup/wizard/stepAction.php +++ b/setup/wizard/stepAction.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008,2009 KnowledgeTree Inc. -* Portions copyright The Jam Warehouse Software (Pty) Limited +* * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/setup/wizard/template.php b/setup/wizard/template.php index 7f52075..8af77e5 100644 --- a/setup/wizard/template.php +++ b/setup/wizard/template.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008,2009 KnowledgeTree Inc. -* Portions copyright The Jam Warehouse Software (Pty) Limited +* * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/sql/mysql/install/data.sql b/sql/mysql/install/data.sql index 29d8e6c..cd8e664 100755 --- a/sql/mysql/install/data.sql +++ b/sql/mysql/install/data.sql @@ -4,7 +4,7 @@ -- KnowledgeTree Community Edition -- Document Management Made Simple -- Copyright (C) 2008, 2009 KnowledgeTree Inc. --- Portions copyright The Jam Warehouse Software (Pty) Limited +-- -- -- This program is free software; you can redistribute it and/or modify it under -- the terms of the GNU General Public License version 3 as published by the diff --git a/sql/mysql/install/dump.sh b/sql/mysql/install/dump.sh index d2b0a7e..2d6f14b 100755 --- a/sql/mysql/install/dump.sh +++ b/sql/mysql/install/dump.sh @@ -14,7 +14,7 @@ HEADER = '-- -- KnowledgeTree Community Edition -- Document Management Made Simple -- Copyright (C) 2008, 2009 KnowledgeTree Inc. --- Portions copyright The Jam Warehouse Software (Pty) Limited +-- -- -- This program is free software; you can redistribute it and/or modify it under -- the terms of the GNU General Public License version 3 as published by the diff --git a/sql/mysql/install/structure.sql b/sql/mysql/install/structure.sql index 2d28306..e86d9a6 100644 --- a/sql/mysql/install/structure.sql +++ b/sql/mysql/install/structure.sql @@ -4,7 +4,7 @@ -- KnowledgeTree Community Edition -- Document Management Made Simple -- Copyright (C) 2008, 2009 KnowledgeTree Inc. --- Portions copyright The Jam Warehouse Software (Pty) Limited +-- -- -- This program is free software; you can redistribute it and/or modify it under -- the terms of the GNU General Public License version 3 as published by the diff --git a/sql/mysql/install/user.sql b/sql/mysql/install/user.sql index 3b80ee2..68d2a1d 100644 --- a/sql/mysql/install/user.sql +++ b/sql/mysql/install/user.sql @@ -4,7 +4,7 @@ -- KnowledgeTree Community Edition -- Document Management Made Simple -- Copyright (C) 2008, 2009 KnowledgeTree Inc. --- Portions copyright The Jam Warehouse Software (Pty) Limited +-- -- -- This program is free software; you can redistribute it and/or modify it under -- the terms of the GNU General Public License version 3 as published by the diff --git a/templates/ktcore/principals/about.smarty b/templates/ktcore/principals/about.smarty index dcbb1b3..0426788 100644 --- a/templates/ktcore/principals/about.smarty +++ b/templates/ktcore/principals/about.smarty @@ -6,7 +6,7 @@ {i18n}All rights reserved.{/i18n}
{/if} -{i18n}Portions copyright The Jam Warehouse Software (Pty) Limited.{/i18n} +{i18n}.{/i18n}
{if ($smallVersion == 'Community Edition')} {i18n}This program is free software and published under the GNU General Public License version 3{/i18n}

diff --git a/webservice/atompub/cmis/index.php b/webservice/atompub/cmis/index.php index 4bdb7ce..5774ec3 100644 --- a/webservice/atompub/cmis/index.php +++ b/webservice/atompub/cmis/index.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/webservice/atompub/demodms/KT_atom_service_helper.inc.php b/webservice/atompub/demodms/KT_atom_service_helper.inc.php index aca586f..aa52e93 100644 --- a/webservice/atompub/demodms/KT_atom_service_helper.inc.php +++ b/webservice/atompub/demodms/KT_atom_service_helper.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/webservice/atompub/index.php b/webservice/atompub/index.php index 8fe3887..86924a8 100644 --- a/webservice/atompub/index.php +++ b/webservice/atompub/index.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/webservice/classes/atompub/KT_atom_baseDoc.inc.php b/webservice/classes/atompub/KT_atom_baseDoc.inc.php index bd5c7ee..ef9007b 100644 --- a/webservice/classes/atompub/KT_atom_baseDoc.inc.php +++ b/webservice/classes/atompub/KT_atom_baseDoc.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/webservice/classes/atompub/KT_atom_serviceDoc.inc.php b/webservice/classes/atompub/KT_atom_serviceDoc.inc.php index e9f2cb6..236d6eb 100644 --- a/webservice/classes/atompub/KT_atom_serviceDoc.inc.php +++ b/webservice/classes/atompub/KT_atom_serviceDoc.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/webservice/classes/atompub/cmis/KT_cmis_atom_serviceDoc.inc.php b/webservice/classes/atompub/cmis/KT_cmis_atom_serviceDoc.inc.php index 1b28d86..6a22962 100644 --- a/webservice/classes/atompub/cmis/KT_cmis_atom_serviceDoc.inc.php +++ b/webservice/classes/atompub/cmis/KT_cmis_atom_serviceDoc.inc.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/webservice/classes/rest/Server.php b/webservice/classes/rest/Server.php index fb41e25..805298a 100644 --- a/webservice/classes/rest/Server.php +++ b/webservice/classes/rest/Server.php @@ -7,7 +7,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008,2009 KnowledgeTree Inc. -* Portions copyright The Jam Warehouse Software (Pty) Limited +* * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/webservice/classes/rest/model/RestService.class.php b/webservice/classes/rest/model/RestService.class.php index 50b2ac1..c03c310 100755 --- a/webservice/classes/rest/model/RestService.class.php +++ b/webservice/classes/rest/model/RestService.class.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008,2009 KnowledgeTree Inc. -* Portions copyright The Jam Warehouse Software (Pty) Limited +* * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/webservice/classes/soap/common.php b/webservice/classes/soap/common.php index 44e3721..c485c0e 100755 --- a/webservice/classes/soap/common.php +++ b/webservice/classes/soap/common.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008,2009 KnowledgeTree Inc. -* Portions copyright The Jam Warehouse Software (Pty) Limited +* * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/webservice/classes/soap/model/RestService.class.php b/webservice/classes/soap/model/RestService.class.php index 2f507bf..7735706 100755 --- a/webservice/classes/soap/model/RestService.class.php +++ b/webservice/classes/soap/model/RestService.class.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008,2009 KnowledgeTree Inc. -* Portions copyright The Jam Warehouse Software (Pty) Limited +* * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/webservice/clienttools/services/mdownload.php b/webservice/clienttools/services/mdownload.php index 2a234eb..eb90c1e 100644 --- a/webservice/clienttools/services/mdownload.php +++ b/webservice/clienttools/services/mdownload.php @@ -7,7 +7,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008, 2009 KnowledgeTree Inc. - * Portions copyright The Jam Warehouse Software (Pty) Limited + * * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/webservice/documentation.php b/webservice/documentation.php index 422f6de..8429ca0 100755 --- a/webservice/documentation.php +++ b/webservice/documentation.php @@ -6,7 +6,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008,2009 KnowledgeTree Inc. -* Portions copyright The Jam Warehouse Software (Pty) Limited +* * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/webservice/restservice.php b/webservice/restservice.php index 37d1f01..fa118da 100755 --- a/webservice/restservice.php +++ b/webservice/restservice.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008,2009 KnowledgeTree Inc. -* Portions copyright The Jam Warehouse Software (Pty) Limited +* * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the diff --git a/webservice/webservice.php b/webservice/webservice.php index dcf0195..ba9edd5 100755 --- a/webservice/webservice.php +++ b/webservice/webservice.php @@ -5,7 +5,7 @@ * KnowledgeTree Community Edition * Document Management Made Simple * Copyright (C) 2008,2009 KnowledgeTree Inc. -* Portions copyright The Jam Warehouse Software (Pty) Limited +* * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the