mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-02-06 07:04:57 +00:00
- redid all changes in 3.4.x after project update at sf
This commit is contained in:
parent
9637842007
commit
15e556192c
|
@ -18,11 +18,11 @@
|
|||
<email></email>
|
||||
<active>no</active>
|
||||
</lead>
|
||||
<date>2012-02-13</date>
|
||||
<time>08:05:38</time>
|
||||
<date>2012-10-17</date>
|
||||
<time>09:12:59</time>
|
||||
<version>
|
||||
<release>3.4.0RC1</release>
|
||||
<api>3.4.0RC1</api>
|
||||
<release>3.4.0RC2</release>
|
||||
<api>3.4.0RC2</api>
|
||||
</version>
|
||||
<stability>
|
||||
<release>beta</release>
|
||||
|
@ -30,7 +30,7 @@
|
|||
</stability>
|
||||
<license uri="http://opensource.org/licenses/gpl-license">GPL License</license>
|
||||
<notes>
|
||||
- added PDO database driver, several sql changes for better compatiblity
|
||||
- fixed bug when adding a new document category
|
||||
</notes>
|
||||
<contents>
|
||||
<dir baseinstalldir="LetoDMS" name="/">
|
||||
|
@ -248,5 +248,69 @@ New release
|
|||
- no changes, just keep same version as letodms application
|
||||
</notes>
|
||||
</release>
|
||||
<release>
|
||||
<date>2012-08-25</date>
|
||||
<time>22:07:58</time>
|
||||
<version>
|
||||
<release>3.3.7</release>
|
||||
<api>3.3.7</api>
|
||||
</version>
|
||||
<stability>
|
||||
<release>beta</release>
|
||||
<api>stable</api>
|
||||
</stability>
|
||||
<license uri="http://opensource.org/licenses/gpl-license">GPL License</license>
|
||||
<notes>
|
||||
- no changes, just keep same version as letodms application
|
||||
</notes>
|
||||
</release>
|
||||
<release>
|
||||
<date>2012-09-16</date>
|
||||
<time>22:14:08</time>
|
||||
<version>
|
||||
<release>3.3.8</release>
|
||||
<api>3.3.8</api>
|
||||
</version>
|
||||
<stability>
|
||||
<release>beta</release>
|
||||
<api>stable</api>
|
||||
</stability>
|
||||
<license uri="http://opensource.org/licenses/gpl-license">GPL License</license>
|
||||
<notes>
|
||||
- more sql injection protection in LetoDMS_Core_User
|
||||
</notes>
|
||||
</release>
|
||||
<release>
|
||||
<date>2012-09-19</date>
|
||||
<time>08:43:18</time>
|
||||
<version>
|
||||
<release>3.3.9</release>
|
||||
<api>3.3.9</api>
|
||||
</version>
|
||||
<stability>
|
||||
<release>beta</release>
|
||||
<api>stable</api>
|
||||
</stability>
|
||||
<license uri="http://opensource.org/licenses/gpl-license">GPL License</license>
|
||||
<notes>
|
||||
- version update to be in sync with letodms application
|
||||
</notes>
|
||||
</release>
|
||||
<release>
|
||||
<date>2012-10-08</date>
|
||||
<time>08:05:38</time>
|
||||
<version>
|
||||
<release>3.4.0RC1</release>
|
||||
<api>3.4.0RC1</api>
|
||||
</version>
|
||||
<stability>
|
||||
<release>beta</release>
|
||||
<api>stable</api>
|
||||
</stability>
|
||||
<license uri="http://opensource.org/licenses/gpl-license">GPL License</license>
|
||||
<notes>
|
||||
- added PDO database driver, several sql changes for better compatiblity
|
||||
</notes>
|
||||
</release>
|
||||
</changelog>
|
||||
</package>
|
||||
|
|
2
Makefile
2
Makefile
|
@ -1,4 +1,4 @@
|
|||
VERSION=3.4.0RC1
|
||||
VERSION=3.4.0RC2
|
||||
SRC=CHANGELOG* inc conf utils index.php languages op out README README.Notification drop-tables-innodb.sql delete_all_contents.sql styles js TODO LICENSE Makefile webdav install
|
||||
|
||||
dist:
|
||||
|
|
|
@ -407,9 +407,11 @@ class Settings { /* {{{ */
|
|||
|
||||
// XML Path: /configuration/advanced/notification
|
||||
$node = $xml->xpath('/configuration/advanced/notification');
|
||||
$tab = $node[0]->attributes();
|
||||
$this->_enableNotificationAppRev = Settings::boolval($tab["enableNotificationAppRev"]);
|
||||
$this->_enableOwnerNotification = Settings::boolval($tab["enableOwnerNotification"]);
|
||||
if($node) {
|
||||
$tab = $node[0]->attributes();
|
||||
$this->_enableNotificationAppRev = Settings::boolval($tab["enableNotificationAppRev"]);
|
||||
$this->_enableOwnerNotification = Settings::boolval($tab["enableOwnerNotification"]);
|
||||
}
|
||||
|
||||
// XML Path: /configuration/advanced/server
|
||||
$node = $xml->xpath('/configuration/advanced/server');
|
||||
|
@ -471,7 +473,7 @@ class Settings { /* {{{ */
|
|||
$node = $rootNode->xpath($parentNodeName . '/' . $name);
|
||||
|
||||
if (empty($node)) {
|
||||
$node = $xml->xpath($parentNodeName);
|
||||
$node = $rootNode->xpath($parentNodeName);
|
||||
$node = $node[0]->addChild($name);
|
||||
} else {
|
||||
$node = $node[0];
|
||||
|
|
|
@ -608,8 +608,9 @@ class UI {
|
|||
echo "<option value=\"".htmlspecialchars($value)."\"";
|
||||
if($value == $objvalue)
|
||||
echo " selected";
|
||||
echo ">".$value."</option>";
|
||||
echo ">".htmlspecialchars($value)."</option>";
|
||||
}
|
||||
echo "</select>";
|
||||
} else {
|
||||
echo "<input type=\"text\" name=\"".$fieldname."[".$attrdef->getId()."]\" value=\"".htmlspecialchars($objvalue)."\" />";
|
||||
}
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
|
||||
class LetoDMS_Version {
|
||||
|
||||
var $_number = "3.4.0";
|
||||
var $_number = "3.4.0RC2";
|
||||
var $_string = "LetoDMS";
|
||||
|
||||
function LetoDMS_Version() {
|
||||
|
|
|
@ -219,6 +219,7 @@ CREATE TABLE `tblDocumentContent` (
|
|||
`orgFileName` varchar(150) NOT NULL default '',
|
||||
`fileType` varchar(10) NOT NULL default '',
|
||||
`mimeType` varchar(100) NOT NULL default '',
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE (`document`,`version`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
|
||||
|
|
|
@ -45,6 +45,7 @@ $text["add_user"] = "Add new user";
|
|||
$text["add_user_to_group"] = "Add user to group";
|
||||
$text["admin"] = "Administrator";
|
||||
$text["admin_tools"] = "Admin-Tools";
|
||||
$text["all"] = "All";
|
||||
$text["all_categories"] = "All categories";
|
||||
$text["all_documents"] = "All Documents";
|
||||
$text["all_pages"] = "All";
|
||||
|
@ -68,6 +69,7 @@ $text["assign_reviewers"] = "Assign Reviewers";
|
|||
$text["assign_user_property_to"] = "Assign user's properties to";
|
||||
$text["assumed_released"] = "Assumed released";
|
||||
$text["attrdef_management"] = "Attribute definition management";
|
||||
$text["attrdef_exists"] = "Attribute definition already exists";
|
||||
$text["attrdef_in_use"] = "Attribute definition still in use";
|
||||
$text["attrdef_name"] = "Name";
|
||||
$text["attrdef_multiple"] = "Allow multiple values";
|
||||
|
@ -507,9 +509,9 @@ $text["settings_enableGuestLogin_desc"] = "If you want anybody to login as guest
|
|||
$text["settings_enableGuestLogin"] = "Enable Guest Login";
|
||||
$text["settings_enableLargeFileUpload_desc"] = "If set, file upload is also available through a java applet called jumploader without a file size limit set by the browser. It also allows to upload several files in one step.";
|
||||
$text["settings_enableLargeFileUpload"] = "Enable large file upload";
|
||||
$text["settings_enablePasswordForgotten_desc"] = "If you want to allow user to set a new password and send it by mail, check this option.";
|
||||
$text["settings_enableOwnerNotification_desc"] = "Check for adding a notification for the owner if a document when it is added.";
|
||||
$text["settings_enableOwnerNotification"] = "Enable owner notification by default";
|
||||
$text["settings_enablePasswordForgotten_desc"] = "If you want to allow user to set a new password and send it by mail, check this option.";
|
||||
$text["settings_enablePasswordForgotten"] = "Enable Password forgotten";
|
||||
$text["settings_enableUserImage_desc"] = "Enable users images";
|
||||
$text["settings_enableUserImage"] = "Enable User Image";
|
||||
|
@ -611,8 +613,8 @@ $text["settings_viewOnlineFileTypes_desc"] = "Files with one of the following en
|
|||
$text["settings_viewOnlineFileTypes"] = "View Online File Types";
|
||||
$text["settings_zendframework"] = "Zend Framework";
|
||||
$text["signed_in_as"] = "Signed in as";
|
||||
$text["sign_in"] = "sign in";
|
||||
$text["sign_out"] = "sign out";
|
||||
$text["sign_in"] = "Sign in";
|
||||
$text["sign_out"] = "Sign out";
|
||||
$text["space_used_on_data_folder"] = "Space used on data folder";
|
||||
$text["status_approval_rejected"] = "Draft rejected";
|
||||
$text["status_approved"] = "Approved";
|
||||
|
@ -637,7 +639,7 @@ $text["thursday"] = "Thursday";
|
|||
$text["toggle_manager"] = "Toggle manager";
|
||||
$text["to"] = "To";
|
||||
$text["tuesday"] = "Tuesday";
|
||||
$text["under_folder"] = "In folder";
|
||||
$text["under_folder"] = "In Folder";
|
||||
$text["unknown_command"] = "Command not recognized.";
|
||||
$text["unknown_document_category"] = "Unknown category";
|
||||
$text["unknown_group"] = "Unknown group id";
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// MyDMS. Document Management System
|
||||
// Copyright (C) 2002-2005 Markus Westphal
|
||||
// Copyright (C) 2006-2008 Malcolm Cowe
|
||||
// Copyright (C) 2010 Matteo Lucarelli
|
||||
// Copyright (C) 2012 Uwe Steinmann
|
||||
//
|
||||
// This program is free software; you can redistribute it and/or modify
|
||||
|
@ -44,6 +45,7 @@ $text["add_user"] = "Neuen Benutzer anlegen";
|
|||
$text["add_user_to_group"] = "Benutzer in Gruppe einfügen";
|
||||
$text["admin"] = "Administrator";
|
||||
$text["admin_tools"] = "Administrationsbereich";
|
||||
$text["all"] = "Alle";
|
||||
$text["all_categories"] = "Alle Kategorien";
|
||||
$text["all_documents"] = "alle Dokumente";
|
||||
$text["all_pages"] = "Alle";
|
||||
|
@ -68,6 +70,7 @@ $text["assign_user_property_to"] = "Assign user's properties to";
|
|||
$text["assumed_released"] = "Angenommen, freigegeben";
|
||||
$text["attrdef_management"] = "Attributdefinitions-Management";
|
||||
$text["attrdef_in_use"] = "Definition des Attributs wird noch verwendet";
|
||||
$text["attrdef_in_use"] = "Definition des Attributs noch in Gebrauch";
|
||||
$text["attrdef_name"] = "Name";
|
||||
$text["attrdef_multiple"] = "Mehrfachwerte erlaubt";
|
||||
$text["attrdef_objtype"] = "Objekttyp";
|
||||
|
@ -102,8 +105,8 @@ $text["change_assignments"] = "Zuweisungen ändern";
|
|||
$text["change_password"] = "Password ändern";
|
||||
$text["change_password_message"] = "Ihr Passwort wurde geändert.";
|
||||
$text["change_status"] = "Status ändern";
|
||||
$text["choose_attrdef"] = "Please choose attribute definition";
|
||||
$text["choose_category"] = "--Bitte wählen--";
|
||||
$text["choose_attrdef"] = "--Attributdefinition wählen--";
|
||||
$text["choose_category"] = "--Kategorie wählen--";
|
||||
$text["choose_group"] = "--Gruppe wählen--";
|
||||
$text["choose_target_category"] = "Kategorie wählen";
|
||||
$text["choose_target_document"] = "Dokument wählen";
|
||||
|
@ -140,7 +143,7 @@ $text["default_keywords"] = "Verfügbare Schlüsselworte";
|
|||
$text["delete"] = "Löschen";
|
||||
$text["details"] = "Details";
|
||||
$text["details_version"] = "Details für Version:[version]";
|
||||
$text["disclaimer"] = "Dies ist ein geschützter Bereich. Nur authorisiertes Personal hat Zugriff. Jegliche Verstösse werden nach geltendem Recht (Englisch und International) verfolgt.";
|
||||
$text["disclaimer"] = "Dies ist ein geschützter Bereich. Nur authorisiertes Personal hat Zugriff. Jegliche Verstöße werden nach geltendem Recht (Englisch und International) verfolgt.";
|
||||
$text["do_object_repair"] = "Repariere alle Ordner und Dokumente.";
|
||||
$text["document_already_locked"] = "Dieses Dokument ist bereits gesperrt";
|
||||
$text["document_deleted"] = "Dokument gelöscht";
|
||||
|
@ -221,7 +224,7 @@ $text["from"] = "von";
|
|||
$text["fullsearch"] = "Volltextsuche";
|
||||
$text["fullsearch_hint"] = "Volltextindex benutzen";
|
||||
$text["fulltext_info"] = "Volltext-Index Info";
|
||||
$text["global_attributedefinitions"] = "Attribute definitions";
|
||||
$text["global_attributedefinitions"] = "Attributdefinitionen";
|
||||
$text["global_default_keywords"] = "Globale Stichwortlisten";
|
||||
$text["global_document_categories"] = "Kategorien";
|
||||
$text["group_approval_summary"] = "Freigabe-Gruppen";
|
||||
|
@ -318,7 +321,7 @@ $text["move"] = "verschieben";
|
|||
$text["my_account"] = "Mein Profil";
|
||||
$text["my_documents"] = "Meine Dokumente";
|
||||
$text["name"] = "Name";
|
||||
$text["new_attrdef"] = "Neue Attributedefinition";
|
||||
$text["new_attrdef"] = "Neue Attributdefinition";
|
||||
$text["new_default_keyword_category"] = "Neue Kategorie";
|
||||
$text["new_default_keywords"] = "Neue Vorlage";
|
||||
$text["new_document_category"] = "Neue Kategorie";
|
||||
|
@ -389,7 +392,7 @@ $text["review_status"] = "Status: prüfen";
|
|||
$text["review_submit_email"] = "Prüfung ausgeführt";
|
||||
$text["review_summary"] = "Übersicht Prüfungen";
|
||||
$text["review_update_failed"] = "Störung bei Aktualisierung des Prüfstatus. Aktualisierung gescheitert.";
|
||||
$text["rm_attrdef"] = "Attributedefinition löschen";
|
||||
$text["rm_attrdef"] = "Attributdefinition löschen";
|
||||
$text["rm_default_keyword_category"] = "Kategorie löschen";
|
||||
$text["rm_document"] = "Löschen";
|
||||
$text["rm_document_category"] = "Lösche Kategorie";
|
||||
|
@ -490,6 +493,12 @@ $text["settings_enableCalendar_desc"] = "Kalender ein/ausschalten";
|
|||
$text["settings_enableCalendar"] = "Kalender einschalten";
|
||||
$text["settings_enableConverting_desc"] = "Ein/Auschalten der automatischen Konvertierung von Dokumenten";
|
||||
$text["settings_enableConverting"] = "Dokumentenkonvertierung einschalten";
|
||||
$text["settings_enableNotificationAppRev_desc"] = "Setzen Sie diese Option, wenn die Prüfer und Freigeber eines Dokuments beim Hochladen einer neuen Version benachrichtigt werden sollen.";
|
||||
$text["settings_enableNotificationAppRev"] = "Prűfer/Freigeber benachrichtigen";
|
||||
$text["settings_enableVersionModification_desc"] = "Setzen Sie diese Option, wenn Versionen eines Dokuments nach dem Hochladen noch durch reguläre Benutzer verändert werden dürfen. Administratoren dürfen dies immer.";
|
||||
$text["settings_enableVersionModification"] = "Erlaube Modifikation von Versionen";
|
||||
$text["settings_enableVersionDeletion_desc"] = "Setzen Sie diese Option, wenn frühere Versionen eines Dokuments durch reguläre Benutzer gelöscht werden können. Administratoren dürfen dies immer.";
|
||||
$text["settings_enableVersionDeletion"] = "Erlaube Löschen alter Versionen";
|
||||
$text["settings_enableEmail_desc"] = "Automatische E-Mail-Benachrichtigung ein-/ausschalten";
|
||||
$text["settings_enableEmail"] = "E-mail aktivieren";
|
||||
$text["settings_enableFolderTree_desc"] = "Schaltet den Verzeichnisbaum ein oder aus";
|
||||
|
@ -500,9 +509,9 @@ $text["settings_enableGuestLogin_desc"] = "Wenn Sie Gast-Logins erlauben wollen,
|
|||
$text["settings_enableGuestLogin"] = "Anmeldung als Gast";
|
||||
$text["settings_enableLargeFileUpload_desc"] = "Wenn dies gesetzt ist, dann ist ebenfalls der Upload von Dokumenten durch ein java applet mit Namen 'jumploader' ohne Begrenzung der maximalen Dateigröße möglich. Auch das Hochladen mehrerer Dokumente in einem Schritt wird dadurch ermöglicht.";
|
||||
$text["settings_enableLargeFileUpload"] = "Hochladen von sehr großen Dateien ermöglichen";
|
||||
$text["settings_enableOwnerNotification_desc"] = "Setzen Sie diese Option, wenn der Besitzer eines Dokuments nach dem Hochladen in die Liste der Beobachter eingetragen werden soll.";
|
||||
$text["settings_enableOwnerNotification"] = "Besitzer als Beobachter eintragen";
|
||||
$text["settings_enablePasswordForgotten_desc"] = "Setzen Sie diese Option, wenn Benutzer ein neues Password per E-Mail anfordern dürfen.";
|
||||
$text["settings_enableOwnerNotification_desc"] = "Check for adding a notification for the owner if a document when it is added.";
|
||||
$text["settings_enableOwnerNotification"] = "Enable owner notification by default";
|
||||
$text["settings_enablePasswordForgotten"] = "Passwort-Vergessen Funktion einschalten";
|
||||
$text["settings_enableUserImage_desc"] = "Foto der Benutzer ein-/ausschalten";
|
||||
$text["settings_enableUserImage"] = "Benutzerbilder einschalten";
|
||||
|
@ -541,6 +550,7 @@ $text["settings_maxDirID"] = "Max. Anzahl Unterverzeichnisse";
|
|||
$text["settings_maxExecutionTime_desc"] = "Maximale Zeit in Sekunden bis ein Skript beendet wird.";
|
||||
$text["settings_maxExecutionTime"] = "Max. Ausführungszeit (s)";
|
||||
$text["settings_more_settings"] = "Weitere Einstellungen. Login mit admin/admin";
|
||||
$text["settings_Notification"] = "Benachrichtigungen-Einstellungen";
|
||||
$text["settings_no_content_dir"] = "Content directory";
|
||||
$text["settings_notfound"] = "Nicht gefunden";
|
||||
$text["settings_notwritable"] = "Die Konfiguration kann nicht gespeichert werden, weil die Konfigurationsdatei nicht schreibbar ist.";
|
||||
|
|
|
@ -25,6 +25,9 @@
|
|||
// Reviewed (for 3.2.0) : 22-sept-2011. Francisco M. Garcia Claramonte
|
||||
// Reviewed (for 3.3.0) : 3-mar-2012. Francisco M. Garcia Claramonte
|
||||
// Reviewed (for 3.3.7) : 04-sept-2012. Francisco M. Garcia Claramonte
|
||||
// Reviewed (for 3.3.8) : 13 sept-2012. Francisco M. García Claramonte
|
||||
// 18 sept 2012. Francisco M. García Claramonte
|
||||
// Reviewed (for 3.4.0RC1): 15 oct 2012. Francisco M. García Claramonte
|
||||
|
||||
$text = array();
|
||||
$text["accept"] = "Aceptar";
|
||||
|
@ -74,6 +77,16 @@ $text["assign_approvers"] = "Asignar aprobadores";
|
|||
$text["assign_reviewers"] = "Asignar revisores";
|
||||
$text["assign_user_property_to"] = "Asignar propiedades de usuario a";
|
||||
$text["assumed_released"] = "Supuestamente publicado";
|
||||
$text["attrdef_management"] = "Gestión de definición de atributos";
|
||||
$text["attrdef_in_use"] = "Definición de atributo todavía en uso";
|
||||
$text["attrdef_name"] = "Nombre";
|
||||
$text["attrdef_multiple"] = "Permitir múltiples valores";
|
||||
$text["attrdef_objtype"] = "Tipo de objeto";
|
||||
$text["attrdef_type"] = "Tipo";
|
||||
$text["attrdef_minvalues"] = "Núm. mínimo de valores";
|
||||
$text["attrdef_maxvalues"] = "Núm. máximo de valores";
|
||||
$text["attrdef_valueset"] = "Conjunto de valores";
|
||||
$text["attributes"] = "Atributos";
|
||||
$text["august"] = "Agosto";
|
||||
$text["automatic_status_update"] = "Cambio automático de estado";
|
||||
$text["back"] = "Atrás";
|
||||
|
@ -100,6 +113,7 @@ $text["change_assignments"] = "Cambiar asignaciones";
|
|||
$text["change_password"] = "Cambiar contraseña";
|
||||
$text["change_password_message"] = "Su contraseña se ha modificado.";
|
||||
$text["change_status"] = "Cambiar estado";
|
||||
$text["choose_attrdef"] = "Por favor, seleccione definición de atributo";
|
||||
$text["choose_category"] = "Seleccione categoría";
|
||||
$text["choose_group"] = "Seleccione grupo";
|
||||
$text["choose_target_category"] = "Seleccione categoría";
|
||||
|
@ -152,6 +166,7 @@ $text["document_renamed_email"] = "Documento renombrado";
|
|||
$text["documents"] = "Documentos";
|
||||
$text["documents_in_process"] = "Documentos en proceso";
|
||||
$text["documents_locked_by_you"] = "Documentos bloqueados por usted";
|
||||
$text["documents_only"] = "Solo documentos";
|
||||
$text["document_status_changed_email"] = "Estado del documento modificado";
|
||||
$text["documents_to_approve"] = "Documentos en espera de aprobación de usuarios";
|
||||
$text["documents_to_review"] = "Documentos en espera de revisión de usuarios";
|
||||
|
@ -167,6 +182,7 @@ $text["dump_creation"] = "Creación de volcado de BDD";
|
|||
$text["dump_creation_warning"] = "Con esta operación se creará un volcado a fichero del contenido de la base de datos. Después de la creación del volcado el fichero se guardará en la carpeta de datos de su servidor.";
|
||||
$text["dump_list"] = "Ficheros de volcado existentes";
|
||||
$text["dump_remove"] = "Eliminar fichero de volcado";
|
||||
$text["edit_attributes"] = "Editar atributos";
|
||||
$text["edit_comment"] = "Editar comentario";
|
||||
$text["edit_default_keywords"] = "Editar palabras clave";
|
||||
$text["edit_document_access"] = "Editar acceso";
|
||||
|
@ -216,6 +232,7 @@ $text["from"] = "Desde";
|
|||
$text["fullsearch"] = "Búsqueda en texto completo";
|
||||
$text["fullsearch_hint"] = "Utilizar índice de texto completo";
|
||||
$text["fulltext_info"] = "Información de índice de texto completo";
|
||||
$text["global_attributedefinitions"] = "Definición de atributos";
|
||||
$text["global_default_keywords"] = "Palabras clave globales";
|
||||
$text["global_document_categories"] = "Categorías";
|
||||
$text["group_approval_summary"] = "Resumen del grupo aprobador";
|
||||
|
@ -312,12 +329,14 @@ $text["move"] = "Mover";
|
|||
$text["my_account"] = "Mi cuenta";
|
||||
$text["my_documents"] = "Mis documentos";
|
||||
$text["name"] = "Nombre";
|
||||
$text["new_attrdef"] = "Nueva definición de atributo";
|
||||
$text["new_default_keyword_category"] = "Nueva categoría";
|
||||
$text["new_default_keywords"] = "Agregar palabras claves";
|
||||
$text["new_document_category"] = "Añadir categoría";
|
||||
$text["new_document_email"] = "Nuevo documento";
|
||||
$text["new_file_email"] = "Nuevo adjunto";
|
||||
$text["new_folder"] = "Nueva carpeta";
|
||||
$text["new_password"] = "Nueva contraseña";
|
||||
$text["new"] = "Nuevo";
|
||||
$text["new_subfolder_email"] = "Nueva carpeta";
|
||||
$text["new_user_image"] = "Nueva imagen";
|
||||
|
@ -381,6 +400,7 @@ $text["review_status"] = "Estado de revisión";
|
|||
$text["review_submit_email"] = "Revisión enviada";
|
||||
$text["review_summary"] = "Resumen de revisión";
|
||||
$text["review_update_failed"] = "Error actualizando el estado de la revisión. La actualización ha fallado.";
|
||||
$text["rm_attrdef"] = "Eliminar definición de atributo";
|
||||
$text["rm_default_keyword_category"] = "Eliminar categoría";
|
||||
$text["rm_document"] = "Eliminar documento";
|
||||
$text["rm_document_category"] = "Eliminar categoría";
|
||||
|
@ -401,7 +421,7 @@ $text["search_mode_and"] = "todas las palabras";
|
|||
$text["search_mode_or"] = "al menos una palabra";
|
||||
$text["search_no_results"] = "No hay documentos que coinciden con su búsqueda";
|
||||
$text["search_query"] = "Buscar";
|
||||
$text["search_report"] = "Encontrados [doccount] documentos y [foldercount] carpetas";
|
||||
$text["search_report"] = "Encontrados [doccount] documentos y [foldercount] carpetas en [searchtime] s.";
|
||||
$text["search_report_fulltext"] = "Encontrados [doccount] documentos";
|
||||
$text["search_results_access_filtered"] = "Los resultados de la búsqueda podrían incluir contenidos cuyo acceso ha sido denegado.";
|
||||
$text["search_results"] = "Resultados de la búsqueda";
|
||||
|
@ -481,6 +501,12 @@ $text["settings_enableCalendar_desc"] = "Habilitar/Deshabilitar calendario";
|
|||
$text["settings_enableCalendar"] = "Habilitar calendario";
|
||||
$text["settings_enableConverting_desc"] = "Habilitar/Deshabilitar conversión de ficheros";
|
||||
$text["settings_enableConverting"] = "Habilitar conversión";
|
||||
$text["settings_enableNotificationAppRev_desc"] = "Habilitar para enviar notificación a revisor/aprobador cuando se añade una nueva versión de documento";
|
||||
$text["settings_enableNotificationAppRev"] = "Habilitar notificación a revisor/aprobador";
|
||||
$text["settings_enableVersionModification_desc"] = "Habilitar/Deshabilitar la modificación de versiones de documentos por parte de usuarios después de añadir una nueva versión. El administrador siempre podrá modificar la versión después de añadida.";
|
||||
$text["settings_enableVersionModification"] = "Habilitar la modificación de versiones";
|
||||
$text["settings_enableVersionDeletion_desc"] = "Habilitar/Deshabilitar la eliminación de versiones anteriores de documentos por parte de usuarios. El administrador siempre podrá eliminar versiones antiguas.";
|
||||
$text["settings_enableVersionDeletion"] = "Habilitar la eliminación de versiones anteriores";
|
||||
$text["settings_enableEmail_desc"] = "Habilitar/Deshabilitar notificación automática por correo electrónico";
|
||||
$text["settings_enableEmail"] = "Habilitar E-mail";
|
||||
$text["settings_enableFolderTree_desc"] = "Falso para no mostrar el árbol de carpetas";
|
||||
|
@ -490,9 +516,11 @@ $text["settings_enableFullSearch_desc"] = "Habilitar búsqueda de texto completo
|
|||
$text["settings_enableGuestLogin_desc"] = "Si quiere que cualquiera acceda como invitado, chequee esta opción. Nota: El acceso de invitado debería permitirse solo en entornos de confianza";
|
||||
$text["settings_enableGuestLogin"] = "Habilitar acceso de invitado";
|
||||
$text["settings_enableLargeFileUpload_desc"] = "Si se habilita, la carga de ficheros también estará disponible a través de un applet java llamado jumploader, sin límite de tamaño de fichero fijado por el navegador. También permite la carga de múltiples ficheros de una sola vez.";
|
||||
$text["settings_enableLargeFileUpload"] = "Enable large file upload";
|
||||
$text["settings_enablePasswordForgotten_desc"] = "If you want to allow user to set a new password and send it by mail, check this option.";
|
||||
$text["settings_enablePasswordForgotten"] = "Enable Password forgotten";
|
||||
$text["settings_enableLargeFileUpload"] = "Habilitar la carga de ficheros grandes";
|
||||
$text["settings_enablePasswordForgotten_desc"] = "Si quiere permitir a los usuarios fijar una nueva contraseña recibiendo un correo electrónico, active esta opción.";
|
||||
$text["settings_enableOwnerNotification_desc"] = "Marcar para añadir una notificación al propietario del documento cuando es añadido.";
|
||||
$text["settings_enableOwnerNotification"] = "Habilitar notificación al propietario por omisión";
|
||||
$text["settings_enablePasswordForgotten"] = "Habilitar recordatorio de contraseña";
|
||||
$text["settings_enableUserImage_desc"] = "Habilitar imágenes de usuario";
|
||||
$text["settings_enableUserImage"] = "Habilitar imágenes de usuario";
|
||||
$text["settings_enableUsersView_desc"] = "Habilitar/Deshabilitar vista de usuario y grupo por todos los usuarios";
|
||||
|
@ -528,6 +556,7 @@ $text["settings_maxDirID"] = "ID máximo de directorio";
|
|||
$text["settings_maxExecutionTime_desc"] = "Esto configura el tiempo máximo en segundos que un script puede estar ejectutándose antes de que el analizador lo pare";
|
||||
$text["settings_maxExecutionTime"] = "Tiempo máximo de ejecución (s)";
|
||||
$text["settings_more_settings"] = "Configure más parámetros. Acceso por omisión: admin/admin";
|
||||
$text["settings_Notification"] = "Parámetros de notificación";
|
||||
$text["settings_no_content_dir"] = "Directorio de contenidos";
|
||||
$text["settings_notfound"] = "No encontrado";
|
||||
$text["settings_notwritable"] = "La configuración no se puede guardar porque el fichero de configuración no es escribible.";
|
||||
|
|
|
@ -62,7 +62,6 @@ if (!$document->remove()) {
|
|||
$index = LetoDMS_Lucene_Indexer::open($settings->_luceneDir);
|
||||
if($hits = $index->find('document_id:'.$documentid)) {
|
||||
$hit = $hits[0];
|
||||
echo $hit->id;
|
||||
$index->delete($hit->id);
|
||||
$index->commit();
|
||||
}
|
||||
|
|
|
@ -146,7 +146,7 @@ $docAccess = $folder->getApproversList();
|
|||
foreach($attrdefs as $attrdef) {
|
||||
?>
|
||||
<tr>
|
||||
<td><?php echo $attrdef->getName(); ?></td>
|
||||
<td><?php echo htmlspecialchars($attrdef->getName()); ?></td>
|
||||
<td><?php UI::printAttributeEditField($attrdef, '') ?></td>
|
||||
</tr>
|
||||
<?php
|
||||
|
@ -188,7 +188,7 @@ $docAccess = $folder->getApproversList();
|
|||
foreach($attrdefs as $attrdef) {
|
||||
?>
|
||||
<tr>
|
||||
<td><?php echo $attrdef->getName(); ?></td>
|
||||
<td><?php echo htmlspecialchars($attrdef->getName()); ?></td>
|
||||
<td><?php UI::printAttributeEditField($attrdef, '', 'attributes_version') ?></td>
|
||||
</tr>
|
||||
<?php
|
||||
|
|
|
@ -73,7 +73,7 @@ UI::contentContainerStart();
|
|||
if (isset($_GET["attrdefid"]) && $attrdef->getID()==$_GET["attrdefid"]) $selected=$count;
|
||||
switch($attrdef->getObjType()) {
|
||||
case LetoDMS_Core_AttributeDefinition::objtype_all:
|
||||
$ot = "all";
|
||||
$ot = getMLText("all");
|
||||
break;
|
||||
case LetoDMS_Core_AttributeDefinition::objtype_folder:
|
||||
$ot = getMLText("folder");
|
||||
|
|
|
@ -121,7 +121,7 @@ UI::contentContainerStart();
|
|||
<tr>
|
||||
<td><?php echo getMLText("name")?>:</td>
|
||||
<td>
|
||||
<form action="../op/op.Categories.php" >
|
||||
<form action="../op/op.Categories.php" method="post">
|
||||
<?php echo createHiddenFieldWithKey('editcategory'); ?>
|
||||
<input type="Hidden" name="action" value="editcategory">
|
||||
<input type="Hidden" name="categoryid" value="<?php echo $category->getID()?>">
|
||||
|
|
|
@ -113,7 +113,7 @@ function chooseKeywords(target) {
|
|||
foreach($attrdefs as $attrdef) {
|
||||
?>
|
||||
<tr>
|
||||
<td><?php echo $attrdef->getName(); ?></td>
|
||||
<td><?php echo htmlspecialchars($attrdef->getName()); ?></td>
|
||||
<td><?php UI::printAttributeEditField($attrdef, '') ?></td>
|
||||
</tr>
|
||||
<?php
|
||||
|
|
|
@ -146,7 +146,7 @@ $docAccess = $document->getApproversList();
|
|||
foreach($attrdefs as $attrdef) {
|
||||
?>
|
||||
<tr>
|
||||
<td><?php echo $attrdef->getName(); ?></td>
|
||||
<td><?php echo htmlspecialchars($attrdef->getName()); ?></td>
|
||||
<td><?php UI::printAttributeEditField($attrdef, '') ?></td>
|
||||
</tr>
|
||||
<?php
|
||||
|
|
|
@ -409,16 +409,21 @@ class HTTP_WebDAV_Server_LetoDMS extends HTTP_WebDAV_Server
|
|||
printf($format, "Size", "Last modified", "Filename");
|
||||
echo "<hr>";
|
||||
|
||||
$parents = $folder->getPath();
|
||||
$_fullpath = '/';
|
||||
if(count($parents) > 1) {
|
||||
$p = array_slice($parents, -2, 1);
|
||||
$p = $p[0];
|
||||
array_shift($parents);
|
||||
$last = array_pop($parents);
|
||||
foreach($parents as $parent)
|
||||
$_fullpath .= $parent->getName().'/';
|
||||
printf($format, 0, strftime("%Y-%m-%d %H:%M:%S", $p->getDate()), "<a href=\"".$_SERVER['SCRIPT_NAME'].htmlspecialchars($_fullpath)."\">..</a>");
|
||||
$_fullpath .= $last->getName().'/';
|
||||
}
|
||||
foreach ($objs as $obj) {
|
||||
$filename = $obj->getName();
|
||||
$parents = $folder->getPath();
|
||||
array_shift($parents);
|
||||
$fullpath = '/';
|
||||
if($parents) {
|
||||
foreach($parents as $parent)
|
||||
$fullpath .= $parent->getName().'/';
|
||||
}
|
||||
$fullpath .= $filename;
|
||||
$fullpath = $_fullpath.$filename;
|
||||
if(get_class($obj) == 'LetoDMS_Core_Folder') {
|
||||
$fullpath .= '/';
|
||||
$filename .= '/';
|
||||
|
|
Loading…
Reference in New Issue
Block a user