From ed0b5953817720b497b008cc7726f3e0660448e2 Mon Sep 17 00:00:00 2001 From: Michael Joseph Date: Tue, 12 Aug 2003 08:58:31 +0000 Subject: [PATCH] added copyright and gpl notice removed owl prefix from table aliases --- presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/addDocTypeBL.php | 34 ++++++++++++++++++++++++++-------- presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/addDocTypeFieldsLinkBL.php | 36 +++++++++++++++++++++++++++--------- presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/addDocTypeFieldsLinkUI.inc | 35 ++++++++++++++++++++++++++--------- presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/addDocTypeSuccess.php | 33 +++++++++++++++++++++++++-------- presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/addDocTypeUI.inc | 32 +++++++++++++++++++++++++------- presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/editDocTypeBL.php | 34 ++++++++++++++++++++++++++-------- presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/editDocTypeFieldsBL.php | 34 ++++++++++++++++++++++++++-------- presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/editDocTypeFieldsUI.inc | 31 ++++++++++++++++++++++++------- presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/editDocTypeUI.inc | 35 ++++++++++++++++++++++++++--------- presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/listDocTypesBL.php | 33 +++++++++++++++++++++++++-------- presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/listDocTypesUI.inc | 33 +++++++++++++++++++++++++-------- presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/removeDocTypeBL.php | 34 ++++++++++++++++++++++++++-------- presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/removeDocTypeUI.inc | 37 +++++++++++++++++++++++++++---------- presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/archivedDocumentsUI.inc | 19 ++++++++++++++++--- presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/expungeDeletedDocumentsBL.php | 21 +++++++++++++++++---- presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/expungeDeletedDocumentsUI.inc | 21 +++++++++++++++++---- presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/listDeletedDocumentsBL.php | 19 ++++++++++++++++--- presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/listDeletedDocumentsUI.inc | 21 +++++++++++++++++---- presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/manageArchivedDocumentsBL.php | 25 +++++++++++++++++++------ presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/restoreDeletedDocumentBL.php | 19 ++++++++++++++++--- presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/restoreDeletedDocumentsUI.inc | 21 +++++++++++++++++---- 21 files changed, 469 insertions(+), 138 deletions(-) diff --git a/presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/addDocTypeBL.php b/presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/addDocTypeBL.php index cf2ba62..6467c4f 100644 --- a/presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/addDocTypeBL.php +++ b/presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/addDocTypeBL.php @@ -1,17 +1,35 @@ fileSystemRoot/lib/visualpatterns/PatternListBox.inc"); require_once("$default->fileSystemRoot/lib/visualpatterns/PatternCreate.inc"); require_once("$default->fileSystemRoot/lib/documentmanagement/DocumentTypeFieldLink.inc"); -require_once("$default->fileSystemRoot/lib/security/permission.inc"); +require_once("$default->fileSystemRoot/lib/security/Permission.inc"); require_once("$default->fileSystemRoot/lib/visualpatterns/PatternCustom.inc"); require_once("$default->fileSystemRoot/lib/foldermanagement/Folder.inc"); require_once("$default->fileSystemRoot/presentation/lookAndFeel/knowledgeTree/foldermanagement/folderUI.inc"); diff --git a/presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/addDocTypeFieldsLinkBL.php b/presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/addDocTypeFieldsLinkBL.php index 93440c3..8537b17 100644 --- a/presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/addDocTypeFieldsLinkBL.php +++ b/presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/addDocTypeFieldsLinkBL.php @@ -1,12 +1,30 @@ fileSystemRoot/lib/documentmanagement/DocumentField.inc"); require_once("$default->fileSystemRoot/lib/documentmanagement/DocumentTypeFieldLink.inc"); - require_once("$default->fileSystemRoot/lib/security/permission.inc"); + require_once("$default->fileSystemRoot/lib/security/Permission.inc"); require_once("$default->fileSystemRoot/presentation/webpageTemplate.inc"); require_once("$default->fileSystemRoot/lib/visualpatterns/PatternCustom.inc"); require_once("$default->fileSystemRoot/lib/foldermanagement/Folder.inc"); @@ -69,7 +87,7 @@ if (checkSession()) { } else if (isset($fDocTypeID)){ if (isset($fFromList)){ - $sNewTableName = $default->owl_fields_table; + $sNewTableName = $default->document_fields_table; $sNewDisplayColumn = "name"; $sNewValueColumn = "id"; $sNewSelectName = "fFieldID"; diff --git a/presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/addDocTypeFieldsLinkUI.inc b/presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/addDocTypeFieldsLinkUI.inc index dbd8b47..87bce77 100644 --- a/presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/addDocTypeFieldsLinkUI.inc +++ b/presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/addDocTypeFieldsLinkUI.inc @@ -1,13 +1,30 @@ \n"; if ($bIsNew) { - $sNewTableName = $default->owl_data_types_table; + $sNewTableName = $default->data_types_table; $sNewDisplayColumn = "name"; $sNewValueColumn = "name"; $sNewSelectName = "fDataType"; diff --git a/presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/addDocTypeSuccess.php b/presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/addDocTypeSuccess.php index 0641fd3..645e28b 100644 --- a/presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/addDocTypeSuccess.php +++ b/presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/addDocTypeSuccess.php @@ -1,13 +1,30 @@ fileSystemRoot/lib/visualpatterns/PatternListBox.inc"); require_once("$default->fileSystemRoot/lib/visualpatterns/PatternEditableListFromQuery.inc"); require_once("editDocTypeUI.inc"); - require_once("$default->fileSystemRoot/lib/security/permission.inc"); + require_once("$default->fileSystemRoot/lib/security/Permission.inc"); require_once("$default->fileSystemRoot/lib/documentmanagement/DocumentType.inc"); require_once("$default->fileSystemRoot/lib/documentmanagement/DocumentField.inc"); require_once("$default->fileSystemRoot/lib/documentmanagement/DocumentTypeFieldLink.inc"); diff --git a/presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/editDocTypeFieldsBL.php b/presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/editDocTypeFieldsBL.php index e7e38e5..673e87d 100644 --- a/presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/editDocTypeFieldsBL.php +++ b/presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/editDocTypeFieldsBL.php @@ -1,19 +1,37 @@ fileSystemRoot/lib/visualpatterns/PatternListBox.inc"); require_once("$default->fileSystemRoot/lib/visualpatterns/PatternEditableListFromQuery.inc"); require_once("editDocTypeFieldsUI.inc"); - require_once("$default->fileSystemRoot/lib/security/permission.inc"); + require_once("$default->fileSystemRoot/lib/security/Permission.inc"); require_once("$default->fileSystemRoot/lib/documentmanagement/DocumentType.inc"); require_once("$default->fileSystemRoot/lib/documentmanagement/DocumentField.inc"); require_once("$default->fileSystemRoot/lib/documentmanagement/DocumentTypeFieldLink.inc"); diff --git a/presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/editDocTypeFieldsUI.inc b/presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/editDocTypeFieldsUI.inc index 5298d17..b32f4d1 100644 --- a/presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/editDocTypeFieldsUI.inc +++ b/presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/editDocTypeFieldsUI.inc @@ -1,12 +1,29 @@ owl_document_types_table, "name", "id", "fDocTypeID"); + $oPatternListBox = & new PatternListBox($default->document_types_table, "name", "id", "fDocTypeID"); // only restrict doc type editing for non sys admins if (!Permission::userIsSystemAdministrator()) { - $oPatternListBox->setFromClause("LEFT OUTER JOIN $default->owl_documents_table D on ST.id=D.document_type_id"); + $oPatternListBox->setFromClause("LEFT OUTER JOIN $default->documents_table D on ST.id=D.document_type_id"); $oPatternListBox->setWhereClause("ISNULL(D.id)"); } $oPatternListBox->setPostBackOnChange(true); diff --git a/presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/listDocTypesBL.php b/presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/listDocTypesBL.php index 78d66da..8850082 100644 --- a/presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/listDocTypesBL.php +++ b/presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/listDocTypesBL.php @@ -1,16 +1,33 @@ fileSystemRoot/lib/users/User.inc"); -require_once("$default->fileSystemRoot/lib/security/permission.inc"); +require_once("$default->fileSystemRoot/lib/security/Permission.inc"); require_once("$default->fileSystemRoot/lib/visualpatterns/PatternCustom.inc"); require_once("$default->fileSystemRoot/lib/visualpatterns/PatternTableSqlQuery.inc"); require_once("$default->fileSystemRoot/lib/visualpatterns/PatternListBox.inc"); diff --git a/presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/listDocTypesUI.inc b/presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/listDocTypesUI.inc index 34b2ef9..ecf7892 100644 --- a/presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/listDocTypesUI.inc +++ b/presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/listDocTypesUI.inc @@ -1,19 +1,36 @@ owl_document_types_table . " " . + "FROM " . $default->document_types_table . " " . "ORDER BY name"; $aColumns = array("DocTypeName", "Edit", "Delete", "Edit Fields"); diff --git a/presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/removeDocTypeBL.php b/presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/removeDocTypeBL.php index f522756..9209826 100644 --- a/presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/removeDocTypeBL.php +++ b/presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/removeDocTypeBL.php @@ -1,19 +1,37 @@ fileSystemRoot/lib/visualpatterns/PatternListBox.inc"); require_once("$default->fileSystemRoot/lib/visualpatterns/PatternEditableListFromQuery.inc"); require_once("removeDocTypeUI.inc"); - require_once("$default->fileSystemRoot/lib/security/permission.inc"); + require_once("$default->fileSystemRoot/lib/security/Permission.inc"); require_once("$default->fileSystemRoot/lib/documentmanagement/DocumentType.inc"); require_once("$default->fileSystemRoot/presentation/webpageTemplate.inc"); require_once("$default->fileSystemRoot/lib/visualpatterns/PatternCustom.inc"); diff --git a/presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/removeDocTypeUI.inc b/presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/removeDocTypeUI.inc index f4ef350..d244b1b 100644 --- a/presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/removeDocTypeUI.inc +++ b/presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/removeDocTypeUI.inc @@ -1,13 +1,30 @@ owl_document_types_table, "name", "id", "fDocTypeID"); - $oPatternListBox->setFromClause("LEFT OUTER JOIN $default->owl_documents_table D on ST.id=D.document_type_id"); + $oPatternListBox = & new PatternListBox($default->document_types_table, "name", "id", "fDocTypeID"); + $oPatternListBox->setFromClause("LEFT OUTER JOIN $default->documents_table D on ST.id=D.document_type_id"); $oPatternListBox->setWhereClause("ISNULL(D.id)"); $oPatternListBox->setIncludeDefaultValue(true); $oPatternListBox->setPostBackOnChange(true); diff --git a/presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/archivedDocumentsUI.inc b/presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/archivedDocumentsUI.inc index e1e795d..5cef1e0 100644 --- a/presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/archivedDocumentsUI.inc +++ b/presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/archivedDocumentsUI.inc @@ -1,11 +1,24 @@ , Jam Warehouse (Pty) Ltd, South Africa diff --git a/presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/expungeDeletedDocumentsBL.php b/presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/expungeDeletedDocumentsBL.php index 9d7ad6b..b89d234 100644 --- a/presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/expungeDeletedDocumentsBL.php +++ b/presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/expungeDeletedDocumentsBL.php @@ -11,13 +11,26 @@ require_once("$default->fileSystemRoot/lib/web/WebDocument.inc"); require_once("$default->uiDirectory/documentmanagement/documentUI.inc"); require_once("expungeDeletedDocumentsUI.inc"); require_once("$default->fileSystemRoot/presentation/Html.inc"); - /** * $Id$ - * + * * Business logic for expunging deleted documents. * - * Licensed under the GNU GPL. For full terms see the file DOCS/COPYING. + * Copyright (c) 2003 Jam Warehouse http://www.jamwarehouse.com + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * @version $Revision$ * @author Michael Joseph , Jam Warehouse (Pty) Ltd, South Africa @@ -53,7 +66,7 @@ if (checkSession()) { $aDocuments[$i]->cleanupDocumentData($fDocumentIDs[$i]); // delete the corresponding web document entry - $oWebDocument = WebDocument::get(lookupID($default->owl_web_documents_table, "document_id", $fDocumentIDs[$i])); + $oWebDocument = WebDocument::get(lookupID($default->web_documents_table, "document_id", $fDocumentIDs[$i])); $oWebDocument->delete(); // store an expunge transaction diff --git a/presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/expungeDeletedDocumentsUI.inc b/presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/expungeDeletedDocumentsUI.inc index b96c36f..3c867ef 100644 --- a/presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/expungeDeletedDocumentsUI.inc +++ b/presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/expungeDeletedDocumentsUI.inc @@ -1,11 +1,24 @@ , Jam Warehouse (Pty) Ltd, South Africa diff --git a/presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/listDeletedDocumentsBL.php b/presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/listDeletedDocumentsBL.php index 300767a..ea75873 100644 --- a/presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/listDeletedDocumentsBL.php +++ b/presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/listDeletedDocumentsBL.php @@ -9,13 +9,26 @@ require_once("$default->uiDirectory/documentmanagement/documentUI.inc"); require_once("listDeletedDocumentsUI.inc"); require_once("$default->fileSystemRoot/presentation/Html.inc"); - /** * $Id$ - * + * * Business logic for listing deleted documents. * - * Licensed under the GNU GPL. For full terms see the file DOCS/COPYING. + * Copyright (c) 2003 Jam Warehouse http://www.jamwarehouse.com + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * @version $Revision$ * @author Michael Joseph , Jam Warehouse (Pty) Ltd, South Africa diff --git a/presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/listDeletedDocumentsUI.inc b/presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/listDeletedDocumentsUI.inc index cab3eaa..e1ef40b 100644 --- a/presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/listDeletedDocumentsUI.inc +++ b/presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/listDeletedDocumentsUI.inc @@ -1,11 +1,24 @@ , Jam Warehouse (Pty) Ltd, South Africa diff --git a/presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/manageArchivedDocumentsBL.php b/presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/manageArchivedDocumentsBL.php index bffae79..24198c9 100644 --- a/presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/manageArchivedDocumentsBL.php +++ b/presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/manageArchivedDocumentsBL.php @@ -14,13 +14,26 @@ require_once("$default->uiDirectory/search/advancedSearchUI.inc"); require_once("$default->uiDirectory/search/advancedSearchUtil.inc"); require_once("archivedDocumentsUI.inc"); require_once("$default->fileSystemRoot/presentation/Html.inc"); - /** * $Id$ - * + * * Business logic for searching archived documents * - * Licensed under the GNU GPL. For full terms see the file DOCS/COPYING. + * Copyright (c) 2003 Jam Warehouse http://www.jamwarehouse.com + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * @version $Revision$ * @author Michael Joseph , Jam Warehouse (Pty) Ltd, South Africa @@ -139,10 +152,10 @@ function searchForDocuments($sMetaTagIDs, $sSQLSearchString, $sStatus = "Live") global $default; $aDocuments = array(); $sQuery = "SELECT DISTINCT D.id " . - "FROM $default->owl_documents_table AS D INNER JOIN document_fields_link AS DFL ON DFL.document_id = D.id " . - "INNER JOIN $default->owl_fields_table AS DF ON DF.id = DFL.document_field_id " . + "FROM $default->documents_table AS D INNER JOIN document_fields_link AS DFL ON DFL.document_id = D.id " . + "INNER JOIN $default->document_fields_table AS DF ON DF.id = DFL.document_field_id " . "INNER JOIN $default->search_permissions_table AS SDUL ON SDUL.document_id = D.ID " . - "INNER JOIN $default->owl_status_table AS SL on D.status_id=SL.id " . + "INNER JOIN $default->status_table AS SL on D.status_id=SL.id " . "WHERE DF.ID IN ($sMetaTagIDs) " . "AND (" . $sSQLSearchString . ") " . "AND SL.name='$sStatus' " . diff --git a/presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/restoreDeletedDocumentBL.php b/presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/restoreDeletedDocumentBL.php index 42e9771..a7d8f0d 100644 --- a/presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/restoreDeletedDocumentBL.php +++ b/presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/restoreDeletedDocumentBL.php @@ -11,13 +11,26 @@ require_once("$default->uiDirectory/documentmanagement/documentUI.inc"); require_once("$default->fileSystemRoot/presentation/lookAndFeel/knowledgeTree/foldermanagement/folderUI.inc"); require_once("restoreDeletedDocumentsUI.inc"); require_once("$default->fileSystemRoot/presentation/Html.inc"); - /** * $Id$ - * + * * Business logic for restoring deleted documents. * - * Licensed under the GNU GPL. For full terms see the file DOCS/COPYING. + * Copyright (c) 2003 Jam Warehouse http://www.jamwarehouse.com + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * @version $Revision$ * @author Michael Joseph , Jam Warehouse (Pty) Ltd, South Africa diff --git a/presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/restoreDeletedDocumentsUI.inc b/presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/restoreDeletedDocumentsUI.inc index a9b896f..d28f6d7 100644 --- a/presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/restoreDeletedDocumentsUI.inc +++ b/presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/restoreDeletedDocumentsUI.inc @@ -1,11 +1,24 @@ , Jam Warehouse (Pty) Ltd, South Africa -- libgit2 0.21.4