openupload-svn-update Mailing List for Open Upload (Page 8)
Status: Beta
Brought to you by:
tsdogs
You can subscribe to this list here.
| 2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(100) |
Nov
(72) |
Dec
(44) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2009 |
Jan
(7) |
Feb
(47) |
Mar
(30) |
Apr
(11) |
May
(10) |
Jun
(8) |
Jul
(1) |
Aug
(22) |
Sep
|
Oct
|
Nov
(13) |
Dec
|
| 2010 |
Jan
|
Feb
|
Mar
(17) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(10) |
Dec
(1) |
| 2011 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(2) |
Oct
|
Nov
|
Dec
|
| 2012 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: <ts...@us...> - 2009-01-19 12:55:26
|
Revision: 221
http://openupload.svn.sourceforge.net/openupload/?rev=221&view=rev
Author: tsdogs
Date: 2009-01-19 11:55:42 +0000 (Mon, 19 Jan 2009)
Log Message:
-----------
fix wrong parameter order to strpos (should have spotted this before!!!)
Modified Paths:
--------------
trunk/lib/general.inc.php
Modified: trunk/lib/general.inc.php
===================================================================
--- trunk/lib/general.inc.php 2009-01-18 08:36:55 UTC (rev 220)
+++ trunk/lib/general.inc.php 2009-01-19 11:55:42 UTC (rev 221)
@@ -42,7 +42,7 @@
if ($url == '') {
header('location: '.$_SERVER['PHP_SELF']);
- } else if (strpos('http://',$url)===FALSE and strpos('https://',$url)===FALSE) {
+ } else if (strpos($url,'http://')===FALSE and strpos($url,'https://')===FALSE) {
header('location: '.$_SERVER['PHP_SELF'].$url);
} else {
header('location: '.$url);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ts...@us...> - 2009-01-18 08:37:05
|
Revision: 220
http://openupload.svn.sourceforge.net/openupload/?rev=220&view=rev
Author: tsdogs
Date: 2009-01-18 08:36:55 +0000 (Sun, 18 Jan 2009)
Log Message:
-----------
fix bug 2516440 (mysqlDB::close() and warning if url is empty)
Modified Paths:
--------------
trunk/lib/general.inc.php
Modified: trunk/lib/general.inc.php
===================================================================
--- trunk/lib/general.inc.php 2009-01-15 12:12:21 UTC (rev 219)
+++ trunk/lib/general.inc.php 2009-01-18 08:36:55 UTC (rev 220)
@@ -39,16 +39,15 @@
function redirect($url = '') {
global $_SERVER;
ob_clean();
-//echo 'redirect '.$url; exit;
- /* there might be problems with urls containing other urls but this is not my case
- anyway! */
-//echo '<pre>'; print_r( debug_backtrace()); echo '</pre>'; exit();
- if (strpos('http://',$url)===FALSE and strpos('https://',$url)===FALSE) {
+
+ if ($url == '') {
+ header('location: '.$_SERVER['PHP_SELF']);
+ } else if (strpos('http://',$url)===FALSE and strpos('https://',$url)===FALSE) {
header('location: '.$_SERVER['PHP_SELF'].$url);
} else {
header('location: '.$url);
}
- app()->db->close();
+ app()->db->free();
exit(0);
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ts...@us...> - 2009-01-15 12:56:36
|
Revision: 219
http://openupload.svn.sourceforge.net/openupload/?rev=219&view=rev
Author: tsdogs
Date: 2009-01-15 12:12:21 +0000 (Thu, 15 Jan 2009)
Log Message:
-----------
Add option to not send password in the notification e-mail.
Modified Paths:
--------------
trunk/plugins/password.inc.php
trunk/templates/default/plugins/password/uploadOptions.tpl
Modified: trunk/plugins/password.inc.php
===================================================================
--- trunk/plugins/password.inc.php 2009-01-15 11:55:11 UTC (rev 218)
+++ trunk/plugins/password.inc.php 2009-01-15 12:12:21 UTC (rev 219)
@@ -17,8 +17,12 @@
global $_POST;
if (isset($_POST['protect']) and $acl=='enable') {
- $finfo[0]['plainpassword'] = $_POST['protect'];
$finfo[0]['password'] = crypt($_POST['protect']);
+ if (isset($_POST['protect_notify'])) { /* want the e-mail to include the password? */
+ $finfo[0]['plainpassword'] = $_POST['protect'];
+ } else {
+ $finfo[0]['plainpassword']='';
+ }
} else {
$finfo[0]['password'] = crypt("");
$finfo[0]['plainpassword'] = "";
Modified: trunk/templates/default/plugins/password/uploadOptions.tpl
===================================================================
--- trunk/templates/default/plugins/password/uploadOptions.tpl 2009-01-15 11:55:11 UTC (rev 218)
+++ trunk/templates/default/plugins/password/uploadOptions.tpl 2009-01-15 12:12:21 UTC (rev 219)
@@ -1 +1,2 @@
-<tr><td>{tr}Password protect{/tr}:</td><td><input type="password" size="30" name="protect"></td></tr>
\ No newline at end of file
+<tr><td>{tr}Password protect{/tr}:</td><td><input type="password" size="30" name="protect"></td></tr>
+<tr><td>{tr}Send password in e-mail{/tr}:</td><td><input type="checkbox" value="1" name="protect_notify" checked></td></tr>
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ts...@us...> - 2009-01-15 12:56:14
|
Revision: 218
http://openupload.svn.sourceforge.net/openupload/?rev=218&view=rev
Author: tsdogs
Date: 2009-01-15 11:55:11 +0000 (Thu, 15 Jan 2009)
Log Message:
-----------
update for not supported gettext locales on the system
Modified Paths:
--------------
trunk/lib/modules/tr/gettext.inc.php
trunk/locale/de/LC_MESSAGES/openupload.mo
trunk/locale/de/LC_MESSAGES/openupload.po
trunk/templates/default/locale/de/LC_MESSAGES/template.mo
trunk/templates/default/locale/de/LC_MESSAGES/template.po
Modified: trunk/lib/modules/tr/gettext.inc.php
===================================================================
--- trunk/lib/modules/tr/gettext.inc.php 2009-01-15 11:17:30 UTC (rev 217)
+++ trunk/lib/modules/tr/gettext.inc.php 2009-01-15 11:55:11 UTC (rev 218)
@@ -13,11 +13,13 @@
putenv("LANG=".$lang['locale']);
bindtextdomain('openupload',app()->config['INSTALL_ROOT'].'/locale');
if (is_dir(app()->config['INSTALL_ROOT'].'/templates/'.app()->config['site']['template'].'/locale')) {
- bindtextdomain('template',app()->config['INSTALL_ROOT'].'/templates/'.app()->config['site']['template'].'/locale');
+ $r = bindtextdomain('template',app()->config['INSTALL_ROOT'].'/templates/'.app()->config['site']['template'].'/locale');
} else {
- bindtextdomain('template',app()->config['INSTALL_ROOT'].'/templates/default/locale');
+ $r = bindtextdomain('template',app()->config['INSTALL_ROOT'].'/templates/default/locale');
}
- setlocale(LC_ALL,$lang['locale']);
+ $r = setlocale(LC_ALL,$lang['locale']);
+ if ($r != $lang['locale'])
+ app()->message('WARNING: locale '.$lang['locale'].' not supported by your system.');
/* setup page encoding */
if (isset($lang['charset']))
header('Content-Type: text/html; charset='.$lang['charset']);
Modified: trunk/locale/de/LC_MESSAGES/openupload.mo
===================================================================
(Binary files differ)
Modified: trunk/locale/de/LC_MESSAGES/openupload.po
===================================================================
--- trunk/locale/de/LC_MESSAGES/openupload.po 2009-01-15 11:17:30 UTC (rev 217)
+++ trunk/locale/de/LC_MESSAGES/openupload.po 2009-01-15 11:55:11 UTC (rev 218)
@@ -3,8 +3,8 @@
"Project-Id-Version: OpenUpload\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-12-12 16:47+0100\n"
-"PO-Revision-Date: 2009-01-15 11:58+0100\n"
-"Last-Translator: Alessandro Briosi <ts...@br...>\n"
+"PO-Revision-Date: 2009-01-15 12:21+0100\n"
+"Last-Translator: Stefan Koshold <ko...@un...>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
Modified: trunk/templates/default/locale/de/LC_MESSAGES/template.mo
===================================================================
(Binary files differ)
Modified: trunk/templates/default/locale/de/LC_MESSAGES/template.po
===================================================================
--- trunk/templates/default/locale/de/LC_MESSAGES/template.po 2009-01-15 11:17:30 UTC (rev 217)
+++ trunk/templates/default/locale/de/LC_MESSAGES/template.po 2009-01-15 11:55:11 UTC (rev 218)
@@ -3,8 +3,8 @@
"Project-Id-Version: OpenUpload default template\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-12-12 16:48+0100\n"
-"PO-Revision-Date: 2009-01-15 11:59+0100\n"
-"Last-Translator: Alessandro Briosi <ts...@br...>\n"
+"PO-Revision-Date: 2009-01-15 12:26+0100\n"
+"Last-Translator: Stefan Koshold <ko...@un...>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ts...@us...> - 2009-01-15 11:17:37
|
Revision: 217
http://openupload.svn.sourceforge.net/openupload/?rev=217&view=rev
Author: tsdogs
Date: 2009-01-15 11:17:30 +0000 (Thu, 15 Jan 2009)
Log Message:
-----------
Add German Translation (Stefan Koshold)
Modified Paths:
--------------
trunk/sql/mysql/2_base.sql
trunk/sql/pgsql/2_base.sql
trunk/sql/txt/langs.txt
trunk/templates/default/modules/admin/langs.tpl
trunk/templates/default/modules/admin/users.tpl
trunk/www/setup.inc.php
Added Paths:
-----------
trunk/locale/de/
trunk/locale/de/LC_MESSAGES/
trunk/locale/de/LC_MESSAGES/openupload.mo
trunk/locale/de/LC_MESSAGES/openupload.po
trunk/locale/de.inc.php
trunk/templates/default/locale/de/
trunk/templates/default/locale/de/LC_MESSAGES/
trunk/templates/default/locale/de/LC_MESSAGES/template.mo
trunk/templates/default/locale/de/LC_MESSAGES/template.po
trunk/templates/default/locale/de.inc.php
Added: trunk/locale/de/LC_MESSAGES/openupload.mo
===================================================================
(Binary files differ)
Property changes on: trunk/locale/de/LC_MESSAGES/openupload.mo
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/locale/de/LC_MESSAGES/openupload.po
===================================================================
--- trunk/locale/de/LC_MESSAGES/openupload.po (rev 0)
+++ trunk/locale/de/LC_MESSAGES/openupload.po 2009-01-15 11:17:30 UTC (rev 217)
@@ -0,0 +1,384 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: OpenUpload\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2008-12-12 16:47+0100\n"
+"PO-Revision-Date: 2009-01-15 11:58+0100\n"
+"Last-Translator: Alessandro Briosi <ts...@br...>\n"
+"Language-Team: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-KeywordsList: tr\n"
+"X-Poedit-Basepath: .\n"
+"X-Poedit-Language: German\n"
+"X-Poedit-SearchPath-0: ../../../lib\n"
+"X-Poedit-SearchPath-1: ../../../plugins\n"
+
+#: ../../../lib/user.inc.php:89
+msgid "Login incorrect!"
+msgstr "Login fehlerhaft!"
+
+#: ../../../lib/main.inc.php:239
+msgid "plugin include file not found: %1"
+msgstr "Plugin-Includedatei nicht gefunden: %1"
+
+#: ../../../lib/main.inc.php:431
+msgid "IP Banned"
+msgstr "IP verboten"
+
+#: ../../../lib/main.inc.php:459
+msgid "THERE HAS BEEN A PERMISSION ERROR. PLEASE TRY ONE OF THE ALLOWED OPTIONS!"
+msgstr "SIE HABEN KEINEN ZUGRIFF. BITTE VERSUCHEN SIE EINE ERLAUBTE OPTION!"
+
+#: ../../../lib/modules/db/txt.inc.php:121
+msgid "ERROR: database folder not found!"
+msgstr "FEHLER: Das Datenbankverzeichnis wurde nicht gefunden!"
+
+#: ../../../lib/modules/db/txt.inc.php:127
+msgid "ERROR: Could not create folder for %1 table!"
+msgstr "FEHLER: Das Verzeichnis für Tabelle %1 konnte nicht erstellt werden!"
+
+#: ../../../lib/modules/db/txt.inc.php:138
+msgid "ERROR: Could not create file for %1 table!"
+msgstr "FEHLER: Die Datei für Tabelle %1 konnten nicht erstellt werden!"
+
+#: ../../../lib/modules/db/txt.inc.php:245
+msgid "Unsupported query criteria %1"
+msgstr "Nicht unterstütztes Abfragekriterium %1"
+
+#: ../../../lib/modules/default/auth.inc.php:27
+#: ../../../lib/modules/default/auth.inc.php:40
+msgid "Login"
+msgstr "Anmelden"
+
+#: ../../../lib/modules/default/auth.inc.php:30
+msgid "User registration"
+msgstr "Benutzerregistrierung"
+
+#: ../../../lib/modules/default/auth.inc.php:33
+msgid "User options"
+msgstr "Benutzeroptionen"
+
+#: ../../../lib/modules/default/auth.inc.php:43
+msgid "Preferences"
+msgstr "Einstellungen"
+
+#: ../../../lib/modules/default/auth.inc.php:44
+msgid "Logout"
+msgstr "Abmelden"
+
+#: ../../../lib/modules/default/auth.inc.php:93
+#: ../../../lib/modules/default/auth.inc.php:116
+#: ../../../lib/modules/default/auth.inc.php:201
+msgid "Registration is not supported by Auth Module"
+msgstr "Registrierung wird vom Authentifizierungsmodul nicht unterstützt"
+
+#: ../../../lib/modules/default/auth.inc.php:124
+msgid "Username already taken, choose a new value"
+msgstr "Der Benutzername wird schon verwendet. Bitte wählen Sie einen anderen Namen"
+
+#: ../../../lib/modules/default/auth.inc.php:128
+msgid "Login name must be at least 5 characters long!"
+msgstr "Der Loginname muss mindestens 5 Zeichen umfassen!"
+
+#: ../../../lib/modules/default/auth.inc.php:132
+msgid "Login name contains an invalid character. Valid vharacters are %1"
+msgstr "Der Loginname enthält eine ungültiges Zeichen. Die gültigen Zeichen sind %1"
+
+#: ../../../lib/modules/default/auth.inc.php:136
+msgid "Please insert Full Name"
+msgstr "Bitte den kompletten Namen eingeben!"
+
+#: ../../../lib/modules/default/auth.inc.php:140
+msgid "Please insert a valid e-mail!"
+msgstr "Bitte fügen Sie eine gültige Emailadresse ein!"
+
+#: ../../../lib/modules/default/auth.inc.php:144
+msgid "Password must be at least 5 characters long!"
+msgstr "Das Passwort muss mindestens 5 Zeichen enthalten!"
+
+#: ../../../lib/modules/default/auth.inc.php:148
+msgid "Passwords do not match! please retype."
+msgstr "Die Passwörter passen nicht! Bitte erneut eingeben."
+
+#: ../../../lib/modules/default/auth.inc.php:170
+msgid "[%1] User registration confirmation e-mail"
+msgstr "[%1] Bestätigungsemail für die Benutzerregistrierung"
+
+#: ../../../lib/modules/default/auth.inc.php:184
+msgid "Registration completed successfully. Have fun!"
+msgstr "Registrierung abgeschlossen. Viel Spaß!"
+
+#: ../../../lib/modules/default/auth.inc.php:221
+#: ../../../lib/modules/default/auth.inc.php:233
+msgid "User profile change not supported by Auth Module"
+msgstr "Benutzerprofil-Änderung wird vom Authentifizierungsmodul nicht unterstützt"
+
+#: ../../../lib/modules/default/auth.inc.php:240
+msgid "Full Name cannot be empty!"
+msgstr "Der komplette Name darf nicht leer sein!"
+
+#: ../../../lib/modules/default/auth.inc.php:245
+msgid "Please enter a valid e-mail address!"
+msgstr "Bitte geben Sie eine gültige Emailadresse ein!"
+
+#: ../../../lib/modules/default/auth.inc.php:254
+msgid "Password must be at least 5 charaters long!"
+msgstr "Das Passwort muss mindestens 5 Zeichen enthalten!"
+
+#: ../../../lib/modules/default/auth.inc.php:257
+msgid "Old password is wrong!"
+msgstr "Das alte Passwort ist falsch!"
+
+#: ../../../lib/modules/default/auth.inc.php:260
+msgid "New passwords do not match!"
+msgstr "Die neuen Passwörter passen nicht!"
+
+#: ../../../lib/modules/default/auth.inc.php:263
+msgid "Password has been changed!"
+msgstr "Das Passwort wurde geändert!"
+
+#: ../../../lib/modules/default/files.inc.php:32
+msgid "File upload"
+msgstr "Datei hochladen"
+
+#: ../../../lib/modules/default/files.inc.php:35
+msgid "File download"
+msgstr "Datei herunterladen"
+
+#: ../../../lib/modules/default/files.inc.php:38
+msgid "File Removal"
+msgstr "Datei entfernen"
+
+#: ../../../lib/modules/default/files.inc.php:42
+msgid "File Upload"
+msgstr "Datei hochladen"
+
+#: ../../../lib/modules/default/files.inc.php:129
+msgid "Upload failed for Unknown error code: %1"
+msgstr "Das Hochladen ist fehlgeschlagen. Fehlercode: %1"
+
+#: ../../../lib/modules/default/files.inc.php:136
+msgid "Maximum file size exceeded!"
+msgstr "Maximale Dateigröße überschritten!"
+
+#: ../../../lib/modules/default/files.inc.php:301
+msgid "Requested file does not exist!"
+msgstr "Die gewünschte Datei existiert nicht!"
+
+#: ../../../lib/modules/default/files.inc.php:402
+#: ../../../lib/modules/default/files.inc.php:405
+#: ../../../lib/modules/default/files.inc.php:417
+msgid "Wrong file id!"
+msgstr "Falsche Datei-ID!"
+
+#: ../../../lib/modules/default/admin.inc.php:82
+#: ../../../lib/modules/default/admin.inc.php:85
+msgid "Administration"
+msgstr "Administration"
+
+#: ../../../lib/modules/default/admin.inc.php:103
+msgid "User administration not supported by Auth Module"
+msgstr "Benutzeradministration wird vom Authentifizierungsmodul nicht unterstützt"
+
+#: ../../../lib/modules/default/admin.inc.php:234
+#: ../../../lib/modules/default/admin.inc.php:254
+#: ../../../lib/modules/default/admin.inc.php:273
+msgid "Group administration not supported by Auth Module"
+msgstr "Gruppenadministration wird vom Authentifizierungsmodul nicht unterstützt"
+
+#: ../../../lib/modules/default/admin.inc.php:249
+msgid "Please provide a valid group name!"
+msgstr "Bitte geben Sie einen gültigen Gruppennamen ein!"
+
+#: ../../../lib/modules/default/admin.inc.php:306
+msgid "Any group"
+msgstr "Jede Gruppe"
+
+#: ../../../lib/modules/default/admin.inc.php:377
+msgid "ANY"
+msgstr "ALLE"
+
+#: ../../../lib/modules/default/admin.inc.php:380
+#: ../../../lib/modules/default/admin.inc.php:393
+#: ../../../lib/modules/default/admin.inc.php:902
+#: ../../../lib/modules/default/admin.inc.php:929
+msgid "Allow"
+msgstr "Erlauben"
+
+#: ../../../lib/modules/default/admin.inc.php:381
+#: ../../../lib/modules/default/admin.inc.php:397
+#: ../../../lib/modules/default/admin.inc.php:902
+#: ../../../lib/modules/default/admin.inc.php:929
+msgid "Deny"
+msgstr "Verweigern"
+
+#: ../../../lib/modules/default/admin.inc.php:514
+msgid "Specified criteria is not valid!"
+msgstr "Das angegebene Kriterium ist ungültig!"
+
+#: ../../../lib/modules/default/admin.inc.php:524
+msgid "Please specify at least one criteria!"
+msgstr "Bitte geben Sie wenigstens ein Kriterium an!"
+
+#: ../../../lib/modules/default/admin.inc.php:556
+#: ../../../lib/modules/default/admin.inc.php:580
+msgid "Enable"
+msgstr "Aktivieren"
+
+#: ../../../lib/modules/default/admin.inc.php:557
+#: ../../../lib/modules/default/admin.inc.php:581
+msgid "Disable"
+msgstr "Deaktivieren"
+
+#: ../../../lib/modules/default/admin.inc.php:632
+#: ../../../lib/modules/default/admin.inc.php:652
+msgid "Any"
+msgstr "Alle"
+
+#: ../../../lib/modules/default/admin.inc.php:662
+msgid "Options for this group already exsist, please use the edit function!"
+msgstr "Die Optionen exisitieren bereits für diese Gruppe. Bitte benutzen Sie die Editierfunktion!"
+
+#: ../../../lib/modules/default/admin.inc.php:822
+msgid "Configuration sucessfully saved!"
+msgstr "Konfiguration wurde gespeichert!"
+
+#: ../../../lib/modules/default/admin.inc.php:824
+msgid "Configuration file could not be saved, please proceed with the download!"
+msgstr "Die Konfigurationsdatei konnte nicht gesichert werden. Bitte fahren Sie mit dem Download fort!"
+
+#: ../../../lib/modules/default/admin.inc.php:878
+msgid "IP %1 has been banned!"
+msgstr "IP %1 wurde geblockt!"
+
+#: ../../../lib/modules/default/admin.inc.php:882
+#: ../../../lib/modules/default/admin.inc.php:897
+msgid "IP %1 was already in state: %2!"
+msgstr "IP %1 war schon im Zustand: %2!"
+
+#: ../../../lib/modules/default/admin.inc.php:973
+msgid "ID"
+msgstr "ID"
+
+#: ../../../lib/modules/default/admin.inc.php:973
+msgid "Language \"%1\" cannot be empty"
+msgstr "Die Sprache \"%1\" darf nicht leer sein"
+
+#: ../../../lib/modules/default/admin.inc.php:976
+msgid "Language \"%1\" already exists!"
+msgstr "Die Sprache \"%1\" existiert bereits!"
+
+#: ../../../lib/modules/default/admin.inc.php:980
+msgid "Name"
+msgstr "Name"
+
+#: ../../../lib/modules/default/admin.inc.php:980
+#: ../../../lib/modules/default/admin.inc.php:984
+#: ../../../lib/modules/default/admin.inc.php:988
+msgid "Language \"%1\" cannot be empty!"
+msgstr "Die Sprache \"%1\" darf nicht leer sein!"
+
+#: ../../../lib/modules/default/admin.inc.php:984
+msgid "Locale"
+msgstr "Locale"
+
+#: ../../../lib/modules/default/admin.inc.php:988
+msgid "Charset"
+msgstr "Zeichensatz"
+
+#: ../../../lib/modules/auth/ldap.inc.php:24
+msgid "LDAP connection failed!"
+msgstr "FEHLER: LDAP Verbindung ist fehlgeschlagen!"
+
+#: ../../../plugins/mimetypes.inc.php:6
+msgid "Limit the mimetypes a user can upload"
+msgstr "Beschränkung der Dateitypen, die ein Benutzer hochladen darf"
+
+#: ../../../plugins/mimetypes.inc.php:8
+msgid "Allowed mime types"
+msgstr "Erlaubte Dateitypen"
+
+#: ../../../plugins/mimetypes.inc.php:9
+msgid "Types in message"
+msgstr "Dateitypen in der Nachricht"
+
+#: ../../../plugins/mimetypes.inc.php:22
+#: ../../../plugins/mimetypes.inc.php:39
+msgid "WARNING: no mime types defined. Plugin has been disabled!"
+msgstr "WARNUNG: Keine Dateitypen festgelegt. Das Plugin wurde deaktiviert!"
+
+#: ../../../plugins/mimetypes.inc.php:44
+msgid "This file type (%1) is not allowed on this site!"
+msgstr "Dieser Dateityp (%1) ist auf diesem Server nicht zugelassen!"
+
+#: ../../../plugins/captcha.inc.php:7
+msgid "Add captcha protection to file download and user registration"
+msgstr "Captcha-Schutz für Datei hochladen und Benutzerregistrierung hinzufügen"
+
+#: ../../../plugins/captcha.inc.php:40
+#: ../../../plugins/captcha.inc.php:58
+msgid "Wrong captcha code! please try again."
+msgstr "Falscher Captcha code! Bitte versuchen Sie es erneut"
+
+#: ../../../plugins/compress.inc.php:6
+msgid "Compress the uploaded files"
+msgstr "Hochgeladene Dateien komprimieren"
+
+#: ../../../plugins/compress.inc.php:8
+msgid "Command to be executed. One per line."
+msgstr "Auszuführende Befehle. Einer pro Zeile"
+
+#: ../../../plugins/compress.inc.php:9
+msgid "Extensions corresponding to commands."
+msgstr "Extensions passend zu den Befehlen"
+
+#: ../../../plugins/compress.inc.php:10
+msgid "Name of compression commands"
+msgstr "Name des Komprimierbefehls"
+
+#: ../../../plugins/filesize.inc.php:8
+msgid "Limit the maximum size of a uploaded file"
+msgstr "Beschränkung der maximalen Größe einer hochgeladenen Datei"
+
+#: ../../../plugins/filesize.inc.php:10
+msgid "Maximum File Size"
+msgstr "Maximale Dateigröße"
+
+#: ../../../plugins/email.inc.php:30
+msgid "Your e-mail address isn't valid!"
+msgstr "Ihre E-Mailadresse ist ungültig!"
+
+#: ../../../plugins/email.inc.php:40
+msgid "Destination e-mail address isn't valid!"
+msgstr "Empfänger E-Mailadresse ist ungültig!"
+
+#: ../../../plugins/email.inc.php:56
+msgid "Information about your uploaded file: %1"
+msgstr "Information über hochgeladene Datei: %1"
+
+#: ../../../plugins/email.inc.php:60
+msgid "An upload was delivered to you"
+msgstr "Eine Datei wurde für Sie hochgeladen"
+
+#: ../../../plugins/password.inc.php:7
+msgid "Option to add password protection for file download"
+msgstr "Passwortschutz-Option für den Dateidownload"
+
+#: ../../../plugins/password.inc.php:42
+msgid "Wrong password!"
+msgstr "Falsches Passwort!"
+
+#: ../../../plugins/expire.inc.php:6
+msgid "Maximum number of days an upload will be kept on the server."
+msgstr "Anzahl der Tage, die eine hochgeladene Datei auf dem Server verbleibt."
+
+#: ../../../plugins/expire.inc.php:8
+msgid "N. Of Days"
+msgstr "A. der Tage"
+
+#: ../../../plugins/expire.inc.php:21
+msgid "Files will be kept on our server for %1 days"
+msgstr "Dateien werde für %1 Tage auf unserem Server gehalten"
+
Added: trunk/locale/de.inc.php
===================================================================
--- trunk/locale/de.inc.php (rev 0)
+++ trunk/locale/de.inc.php 2009-01-15 11:17:30 UTC (rev 217)
@@ -0,0 +1,88 @@
+<?php
+$tr["Login incorrect!"] = "Login fehlerhaft!";
+$tr["plugin include file not found: %1"] = "Plugin-Includedatei nicht gefunden: %1";
+$tr["IP Banned"] = "IP verboten";
+$tr["THERE HAS BEEN A PERMISSION ERROR. PLEASE TRY ONE OF THE ALLOWED OPTIONS!"] = "SIE HABEN KEINEN ZUGRIFF. BITTE VERSUCHEN SIE EINE ERLAUBTE OPTION!";
+$tr["ERROR: database folder not found!"] = "FEHLER: Das Datenbankverzeichnis wurde nicht gefunden!";
+$tr["ERROR: Could not create folder for %1 table!"] = "FEHLER: Das Verzeichnis für Tabelle %1 konnte nicht erstellt werden!";
+$tr["ERROR: Could not create file for %1 table!"] = "FEHLER: Die Datei für Tabelle %1 konnten nicht erstellt werden!";
+$tr["Unsupported query criteria %1"] = "Nicht unterstütztes Abfragekriterium %1";
+$tr["Login"] = "Anmelden";
+$tr["User registration"] = "Benutzerregistrierung";
+$tr["User options"] = "Benutzeroptionen";
+$tr["Preferences"] = "Einstellungen";
+$tr["Logout"] = "Abmelden";
+$tr["Registration is not supported by Auth Module"] = "Registrierung wird vom Authentifizierungsmodul nicht unterstützt";
+$tr["Username already taken, choose a new value"] = "Der Benutzername wird schon verwendet. Bitte wählen Sie einen anderen Namen";
+$tr["Login name must be at least 5 characters long!"] = "Der Loginname muss mindestens 5 Zeichen umfassen!";
+$tr["Login name contains an invalid character. Valid vharacters are %1"] = "Der Loginname enthält eine ungültiges Zeichen. Die gültigen Zeichen sind %1";
+$tr["Please insert Full Name"] = "Bitte den kompletten Namen eingeben!";
+$tr["Please insert a valid e-mail!"] = "Bitte fügen Sie eine gültige Emailadresse ein!";
+$tr["Password must be at least 5 characters long!"] = "Das Passwort muss mindestens 5 Zeichen enthalten!";
+$tr["Passwords do not match! please retype."] = "Die Passwörter passen nicht! Bitte erneut eingeben.";
+$tr["[%1] User registration confirmation e-mail"] = "[%1] Bestätigungsemail für die Benutzerregistrierung";
+$tr["Registration completed successfully. Have fun!"] = "Registrierung abgeschlossen. Viel Spaß!";
+$tr["User profile change not supported by Auth Module"] = "Benutzerprofil-Änderung wird vom Authentifizierungsmodul nicht unterstützt";
+$tr["Full Name cannot be empty!"] = "Der komplette Name darf nicht leer sein!";
+$tr["Please enter a valid e-mail address!"] = "Bitte geben Sie eine gültige Emailadresse ein!";
+$tr["Password must be at least 5 charaters long!"] = "Das Passwort muss mindestens 5 Zeichen enthalten!";
+$tr["Old password is wrong!"] = "Das alte Passwort ist falsch!";
+$tr["New passwords do not match!"] = "Die neuen Passwörter passen nicht!";
+$tr["Password has been changed!"] = "Das Passwort wurde geändert!";
+$tr["File upload"] = "Datei hochladen";
+$tr["File download"] = "Datei herunterladen";
+$tr["File Removal"] = "Datei entfernen";
+$tr["File Upload"] = "Datei hochladen";
+$tr["Upload failed for Unknown error code: %1"] = "Das Hochladen ist fehlgeschlagen. Fehlercode: %1";
+$tr["Maximum file size exceeded!"] = "Maximale Dateigröße überschritten!";
+$tr["Requested file does not exist!"] = "Die gewünschte Datei existiert nicht!";
+$tr["Wrong file id!"] = "Falsche Datei-ID!";
+$tr["Administration"] = "Administration";
+$tr["User administration not supported by Auth Module"] = "Benutzeradministration wird vom Authentifizierungsmodul nicht unterstützt";
+$tr["Group administration not supported by Auth Module"] = "Gruppenadministration wird vom Authentifizierungsmodul nicht unterstützt";
+$tr["Please provide a valid group name!"] = "Bitte geben Sie einen gültigen Gruppennamen ein!";
+$tr["Any group"] = "Jede Gruppe";
+$tr["ANY"] = "ALLE";
+$tr["Allow"] = "Erlauben";
+$tr["Deny"] = "Verweigern";
+$tr["Specified criteria is not valid!"] = "Das angegebene Kriterium ist ungültig!";
+$tr["Please specify at least one criteria!"] = "Bitte geben Sie wenigstens ein Kriterium an!";
+$tr["Enable"] = "Aktivieren";
+$tr["Disable"] = "Deaktivieren";
+$tr["Any"] = "Alle";
+$tr["Options for this group already exsist, please use the edit function!"] = "Die Optionen exisitieren bereits für diese Gruppe. Bitte benutzen Sie die Editierfunktion!";
+$tr["Configuration sucessfully saved!"] = "Konfiguration wurde gespeichert!";
+$tr["Configuration file could not be saved, please proceed with the download!"] = "Die Konfigurationsdatei konnte nicht gesichert werden. Bitte fahren Sie mit dem Download fort!";
+$tr["IP %1 has been banned!"] = "IP %1 wurde geblockt!";
+$tr["IP %1 was already in state: %2!"] = "IP %1 war schon im Zustand: %2!";
+$tr["ID"] = "ID";
+$tr["Language \"%1\" cannot be empty"] = "Die Sprache \"%1\" darf nicht leer sein";
+$tr["Language \"%1\" already exists!"] = "Die Sprache \"%1\" existiert bereits!";
+$tr["Name"] = "Name";
+$tr["Language \"%1\" cannot be empty!"] = "Die Sprache \"%1\" darf nicht leer sein!";
+$tr["Locale"] = "Locale";
+$tr["Charset"] = "Zeichensatz";
+$tr["LDAP connection failed!"] = "FEHLER: LDAP Verbindung ist fehlgeschlagen!";
+$tr["Limit the mimetypes a user can upload"] = "Beschränkung der Dateitypen, die ein Benutzer hochladen darf";
+$tr["Allowed mime types"] = "Erlaubte Dateitypen";
+$tr["Types in message"] = "Dateitypen in der Nachricht";
+$tr["WARNING: no mime types defined. Plugin has been disabled!"] = "WARNUNG: Keine Dateitypen festgelegt. Das Plugin wurde deaktiviert!";
+$tr["This file type (%1) is not allowed on this site!"] = "Dieser Dateityp (%1) ist auf diesem Server nicht zugelassen!";
+$tr["Add captcha protection to file download and user registration"] = "Captcha-Schutz für Datei hochladen und Benutzerregistrierung hinzufügen";
+$tr["Wrong captcha code! please try again."] = "Falscher Captcha code! Bitte versuchen Sie es erneut";
+$tr["Compress the uploaded files"] = "Hochgeladene Dateien komprimieren";
+$tr["Command to be executed. One per line."] = "Auszuführende Befehle. Einer pro Zeile";
+$tr["Extensions corresponding to commands."] = "Extensions passend zu den Befehlen";
+$tr["Name of compression commands"] = "Name des Komprimierbefehls";
+$tr["Limit the maximum size of a uploaded file"] = "Beschränkung der maximalen Größe einer hochgeladenen Datei";
+$tr["Maximum File Size"] = "Maximale Dateigröße";
+$tr["Your e-mail address isn't valid!"] = "Ihre E-Mailadresse ist ungültig!";
+$tr["Destination e-mail address isn't valid!"] = "Empfänger E-Mailadresse ist ungültig!";
+$tr["Information about your uploaded file: %1"] = "Information über hochgeladene Datei: %1";
+$tr["An upload was delivered to you"] = "Eine Datei wurde für Sie hochgeladen";
+$tr["Option to add password protection for file download"] = "Passwortschutz-Option für den Dateidownload";
+$tr["Wrong password!"] = "Falsches Passwort!";
+$tr["Maximum number of days an upload will be kept on the server."] = "Anzahl der Tage, die eine hochgeladene Datei auf dem Server verbleibt.";
+$tr["N. Of Days"] = "A. der Tage";
+$tr["Files will be kept on our server for %1 days"] = "Dateien werde für %1 Tage auf unserem Server gehalten";
+?>
Modified: trunk/sql/mysql/2_base.sql
===================================================================
--- trunk/sql/mysql/2_base.sql 2009-01-14 18:37:04 UTC (rev 216)
+++ trunk/sql/mysql/2_base.sql 2009-01-15 11:17:30 UTC (rev 217)
@@ -35,6 +35,7 @@
INSERT INTO `langs` (`id`, `name`, `locale`, `browser`, `charset`, `active`) VALUES('en', 'English', 'en_EN', '[en];[en-EN]', 'iso-8559-1', 1);
INSERT INTO `langs` (`id`, `name`, `locale`, `browser`, `charset`, `active`) VALUES('it', 'Italiano', 'it_IT.utf8', '[it];[it-IT]', 'utf8', 1);
INSERT INTO `langs` (`id`, `name`, `locale`, `browser`, `charset`, `active`) VALUES('fr', 'Français', 'fr_FR.utf8', '[fr];[fr-FR]', 'utf8', 1);
+INSERT INTO `langs` (`id`, `name`, `locale`, `browser`, `charset`, `active`) VALUES('de', 'Deutsch', 'de_DE.utf8', '[de];[de-DE]', 'utf8', 1);
--
-- Dump dei dati per la tabella `users`
Modified: trunk/sql/pgsql/2_base.sql
===================================================================
--- trunk/sql/pgsql/2_base.sql 2009-01-14 18:37:04 UTC (rev 216)
+++ trunk/sql/pgsql/2_base.sql 2009-01-15 11:17:30 UTC (rev 217)
@@ -85,6 +85,7 @@
INSERT INTO langs VALUES ('en', 'English', 'en_EN', '[en];[en-EN]', 'iso-8559-1', 1);
INSERT INTO langs VALUES ('it', 'Italiano', 'it_IT.utf8', '[it];[it-IT]', 'utf8', 1);
INSERT INTO langs VALUES ('fr', 'Français', 'fr_FR.utf8', '[fr];[fr-FR]', 'utf8', 1);
+INSERT INTO langs VALUES ('de', 'Deutsch', 'de_DE.utf8', '[de];[de-DE]', 'utf8', 1);
--
Modified: trunk/sql/txt/langs.txt
===================================================================
--- trunk/sql/txt/langs.txt 2009-01-14 18:37:04 UTC (rev 216)
+++ trunk/sql/txt/langs.txt 2009-01-15 11:17:30 UTC (rev 217)
@@ -1,4 +1,5 @@
id|name|locale|browser|charset|active
-en|English|en_EN|[en];[en-EN]|iso-8559-1|1
+en|English|en_EN|[en];[en-EN]|utf8|1
it|Italiano|it_IT.utf8|[it];[it-IT]|utf8|1
fr|Français|fr_FR.utf8|[fr];[fr-FR]|utf8|1
+de|Deutsch|de_DE.utf8|[de];[de-DE]|utf8|1
Added: trunk/templates/default/locale/de/LC_MESSAGES/template.mo
===================================================================
(Binary files differ)
Property changes on: trunk/templates/default/locale/de/LC_MESSAGES/template.mo
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/templates/default/locale/de/LC_MESSAGES/template.po
===================================================================
--- trunk/templates/default/locale/de/LC_MESSAGES/template.po (rev 0)
+++ trunk/templates/default/locale/de/LC_MESSAGES/template.po 2009-01-15 11:17:30 UTC (rev 217)
@@ -0,0 +1,892 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: OpenUpload default template\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2008-12-12 16:48+0100\n"
+"PO-Revision-Date: 2009-01-15 11:59+0100\n"
+"Last-Translator: Alessandro Briosi <ts...@br...>\n"
+"Language-Team: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-Language: German\n"
+"X-Poedit-Basepath: .\n"
+"X-Poedit-SearchPath-0: ../../..\n"
+
+#: ../../../default.c:2
+msgid "Your IP has been blocked!"
+msgstr "Ihre IP wurde geblockt!"
+
+#: ../../../default.c:5
+msgid "You cannot use this site."
+msgstr "Sie dürfen diese Site nicht benutzen."
+
+#: ../../../default.c:8
+msgid "If you think this is a misconfiguration please send an email to the site owner"
+msgstr "Wenn Sie meinen das dies eine falsche Konfiguration ist, senden Sie bitte eine Email an den Websitebetreiber"
+
+#: ../../../default.c:11
+msgid "Captcha code"
+msgstr "Captcha code"
+
+#: ../../../default.c:14
+#: ../../../default.c:20
+msgid "Reload Image"
+msgstr "Bild neuladen"
+
+#: ../../../default.c:17
+msgid "Please enter the following captcha to proceed for the download"
+msgstr "Bitte geben Sie den folgenden Captcha an um zum Download zu gelangen"
+
+#: ../../../default.c:23
+msgid "Use Captcha"
+msgstr "Captcha benutzen"
+
+#: ../../../default.c:26
+msgid "Compress the files"
+msgstr "Dateien komprimieren"
+
+#: ../../../default.c:29
+msgid "No compression"
+msgstr "Keine Komprimierung"
+
+#: ../../../default.c:32
+msgid "The download is password protected."
+msgstr "Der Download ist Passwort geschützt."
+
+#: ../../../default.c:35
+#: ../../../default.c:47
+#: ../../../default.c:68
+#: ../../../default.c:179
+#: ../../../default.c:620
+#: ../../../default.c:776
+#: ../../../default.c:827
+msgid "Password"
+msgstr "Passwort"
+
+#: ../../../default.c:38
+msgid "Password protect"
+msgstr "Passwort geschützt"
+
+#: ../../../default.c:41
+#: ../../../default.c:62
+msgid "You are receiving this message because someone uploaded a file on our OpenUpload server for you."
+msgstr "Sie erhalten diesen Nachricht, da jemand eine Datei für die Sie auf unseren OpenUpload Server geladen hat."
+
+#: ../../../default.c:44
+#: ../../../default.c:65
+#: ../../../default.c:140
+#: ../../../default.c:149
+#: ../../../default.c:527
+#: ../../../default.c:674
+#: ../../../default.c:758
+msgid "Description"
+msgstr "Beschreibung"
+
+#: ../../../default.c:50
+#: ../../../default.c:71
+msgid "User message"
+msgstr "Benutzernachricht"
+
+#: ../../../default.c:53
+#: ../../../default.c:74
+msgid "To download the file open the following link in a browser"
+msgstr "Um die Datei herunterzuladen, öffnen Sie bitte den folgenden Link in Ihrem Browser"
+
+#: ../../../default.c:56
+#: ../../../default.c:77
+msgid "To remove the file from our server open the following link in a browser"
+msgstr "Um die Datei von unserem Server zu entfernen öffnen Sie bitte den folgenden Link in Ihrem Browser"
+
+#: ../../../default.c:59
+#: ../../../default.c:80
+#: ../../../default.c:803
+#: ../../../default.c:818
+msgid "For complains please send an email to"
+msgstr "Bei Beschwerden senden Sie bitte eine E-mail an"
+
+#: ../../../default.c:83
+#: ../../../default.c:89
+msgid "Send me an e-mail"
+msgstr "Senden Sie mir eine E-Mail"
+
+#: ../../../default.c:86
+msgid "Your e-mail address"
+msgstr "Ihre E-Mailadresse"
+
+#: ../../../default.c:92
+msgid "Send e-mail to"
+msgstr "Sende E-Mail an"
+
+#: ../../../default.c:95
+msgid "Send remove link"
+msgstr "Sende Entfernen Link"
+
+#: ../../../default.c:98
+msgid "e-mail Subject"
+msgstr "E-Mail Betreff"
+
+#: ../../../default.c:101
+msgid "e-mail Message"
+msgstr "E-Mail Nachricht"
+
+#: ../../../default.c:104
+msgid "Only the following mime types are allowed"
+msgstr "Nur die folgenden Dateitypen sind zugelassen"
+
+#: ../../../default.c:107
+msgid "Are you sure you want to delete the selected plugins?"
+msgstr "Sind Sie sicher, dass Sie die ausgewählten Plugins löschen möchten?"
+
+#: ../../../default.c:110
+msgid "Are you sure you want to delete the selected plugin?"
+msgstr "Sind Sie sicher, dass Sie das ausgewählte Plugin löschen möchten?"
+
+#: ../../../default.c:113
+#: ../../../default.c:398
+#: ../../../default.c:506
+msgid "Plugin"
+msgstr "Plugin"
+
+#: ../../../default.c:116
+#: ../../../default.c:191
+#: ../../../default.c:230
+#: ../../../default.c:260
+#: ../../../default.c:509
+#: ../../../default.c:590
+#: ../../../default.c:611
+#: ../../../default.c:632
+msgid "Group"
+msgstr "Gruppe"
+
+#: ../../../default.c:119
+#: ../../../default.c:128
+#: ../../../default.c:215
+#: ../../../default.c:497
+#: ../../../default.c:512
+msgid "Access"
+msgstr "Zugriff"
+
+#: ../../../default.c:122
+#: ../../../default.c:503
+#: ../../../default.c:641
+#: ../../../default.c:677
+msgid "Add"
+msgstr "Hinzufügen"
+
+#: ../../../default.c:125
+#: ../../../default.c:212
+#: ../../../default.c:494
+#: ../../../default.c:662
+msgid "IP"
+msgstr "IP"
+
+#: ../../../default.c:131
+#: ../../../default.c:218
+#: ../../../default.c:500
+msgid "Priority"
+msgstr "Priorität"
+
+#: ../../../default.c:134
+#: ../../../default.c:143
+#: ../../../default.c:200
+#: ../../../default.c:233
+#: ../../../default.c:254
+#: ../../../default.c:356
+#: ../../../default.c:515
+#: ../../../default.c:614
+#: ../../../default.c:896
+msgid "Confirm"
+msgstr "Bestätigen"
+
+#: ../../../default.c:137
+#: ../../../default.c:239
+#: ../../../default.c:341
+#: ../../../default.c:656
+#: ../../../default.c:671
+msgid "Name"
+msgstr "Name"
+
+#: ../../../default.c:146
+msgid "Gruppo"
+msgstr "Gruppe"
+
+#: ../../../default.c:152
+msgid "Rights set?"
+msgstr "Rechte gesetzt?"
+
+#: ../../../default.c:155
+#: ../../../default.c:569
+msgid "Any"
+msgstr "Alle"
+
+#: ../../../default.c:158
+msgid "Yes"
+msgstr "Ja"
+
+#: ../../../default.c:161
+msgid "No"
+msgstr "Nein"
+
+#: ../../../default.c:164
+msgid "Plugins ACL"
+msgstr "ACL Plugins"
+
+#: ../../../default.c:167
+msgid "Plugins Options"
+msgstr "Plugin-Optionen"
+
+#: ../../../default.c:170
+#: ../../../default.c:449
+#: ../../../default.c:536
+msgid "Settings"
+msgstr "Einstellungen"
+
+#: ../../../default.c:173
+msgid "Options"
+msgstr "Optionen"
+
+#: ../../../default.c:176
+#: ../../../default.c:617
+#: ../../../default.c:773
+#: ../../../default.c:845
+#: ../../../default.c:872
+msgid "Login name"
+msgstr "Loginname"
+
+#: ../../../default.c:182
+#: ../../../default.c:623
+#: ../../../default.c:779
+msgid "Retype Password"
+msgstr "Passwort erneut eingeben"
+
+#: ../../../default.c:185
+#: ../../../default.c:626
+#: ../../../default.c:782
+#: ../../../default.c:848
+#: ../../../default.c:875
+msgid "Full Name"
+msgstr "Kompletter Name"
+
+#: ../../../default.c:188
+#: ../../../default.c:629
+#: ../../../default.c:785
+#: ../../../default.c:851
+#: ../../../default.c:878
+msgid "e-mail"
+msgstr "E-mail"
+
+#: ../../../default.c:194
+#: ../../../default.c:635
+#: ../../../default.c:788
+#: ../../../default.c:881
+msgid "Preferred language"
+msgstr "Gewünschte Sprache"
+
+#: ../../../default.c:197
+#: ../../../default.c:251
+#: ../../../default.c:353
+#: ../../../default.c:638
+msgid "Active"
+msgstr "Aktiv"
+
+#: ../../../default.c:203
+msgid "Are you sure you want to delete the selected banned ips?"
+msgstr "Sind Sie sicher, dass Sie die ausgewählten geblockten IPs löschen möchten?"
+
+#: ../../../default.c:206
+msgid "Are you sure you want to delete the selected banned ip?"
+msgstr "Sind Sie sicher, dass Sie die ausgewählte geblockte IP löschen möchten?"
+
+#: ../../../default.c:209
+#: ../../../default.c:650
+msgid "S"
+msgstr "S"
+
+#: ../../../default.c:221
+#: ../../../default.c:263
+#: ../../../default.c:530
+#: ../../../default.c:668
+msgid "Actions"
+msgstr "Aktion"
+
+#: ../../../default.c:224
+msgid "Are you sure you want to delete the selected languages?"
+msgstr "Sind Sie sicher, dass Sie die ausgewählten Sprachen löschen möchten?"
+
+#: ../../../default.c:227
+msgid "Are you sure you want to delete the selected language?"
+msgstr "Sind Sie sicher, dass Sie die ausgewählte Sprache löschen möchten?"
+
+#: ../../../default.c:236
+#: ../../../default.c:338
+msgid "ID"
+msgstr "ID"
+
+#: ../../../default.c:242
+#: ../../../default.c:344
+msgid "Locale"
+msgstr "Locale"
+
+#: ../../../default.c:245
+#: ../../../default.c:347
+msgid "Browser recon"
+msgstr "Browser recon"
+
+#: ../../../default.c:248
+#: ../../../default.c:350
+msgid "Charset"
+msgstr "Zeichensatz"
+
+#: ../../../default.c:257
+msgid "Plugin does not have any option to be configured"
+msgstr "Das Plugin hat keine konfigurierbare Optionen"
+
+#: ../../../default.c:266
+msgid "Translation module"
+msgstr "Übersetzungsmodul"
+
+#: ../../../default.c:269
+#: ../../../default.c:281
+#: ../../../default.c:299
+msgid "Select one"
+msgstr "Wähle einen"
+
+#: ../../../default.c:272
+msgid "Default language"
+msgstr "Standardsprache"
+
+#: ../../../default.c:275
+msgid "Authentication module"
+msgstr "Authentifikationsmodul"
+
+#: ../../../default.c:278
+msgid "(LDAP Configuration needs to be done<br> by hand for now)"
+msgstr "(Die LDAP Konfiguration muss zurzeit per<br> Hand vorgenommen werden)"
+
+#: ../../../default.c:284
+msgid "Site title"
+msgstr "Website-Titel"
+
+#: ../../../default.c:287
+msgid "WebMaster E-mail"
+msgstr "Webmaster E-Mail"
+
+#: ../../../default.c:290
+msgid "Site E-mail"
+msgstr "Website E-Mail"
+
+#: ../../../default.c:293
+msgid "Confirm registration with e-mail"
+msgstr "Bestätige Registrierung per E-Mail"
+
+#: ../../../default.c:296
+msgid "Template"
+msgstr "Vorlage"
+
+#: ../../../default.c:302
+msgid "Template Footer"
+msgstr "Fußzeile Vorlage"
+
+#: ../../../default.c:305
+msgid "Maximum upload size (in MB)"
+msgstr "Maximale Uploadgröße (MB)"
+
+#: ../../../default.c:308
+msgid "Maximum download time (in Min)"
+msgstr "Maximale Downloadzeit (in Min)"
+
+#: ../../../default.c:311
+msgid "0 disables it"
+msgstr "0 deaktiviert"
+
+#: ../../../default.c:314
+msgid "Max num. of file uploaded per upload"
+msgstr "Maximale Anz. der gleichzeitig hochladbaren Dateien"
+
+#: ../../../default.c:317
+msgid "Upload tracking method"
+msgstr "Uploadverfolgungs-Methode"
+
+#: ../../../default.c:320
+msgid "Enable activity logging?"
+msgstr "Aktiviere Logging?"
+
+#: ../../../default.c:323
+msgid "Database logging level"
+msgstr "Datenbank-Loggingebene"
+
+#: ../../../default.c:326
+msgid "Syslog logging level"
+msgstr "Syslog Loggingebene"
+
+#: ../../../default.c:329
+msgid "Save Changes"
+msgstr "Speichere Änderungen"
+
+#: ../../../default.c:332
+msgid "Download config file"
+msgstr "Konfigurationsdatei herunterladen"
+
+#: ../../../default.c:335
+msgid "This are the configured settings for a review"
+msgstr "Dies sind die konfigurierten Einstellungen für eine Review"
+
+#: ../../../default.c:359
+msgid "Filter"
+msgstr "Filter"
+
+#: ../../../default.c:362
+msgid "All"
+msgstr "Alle"
+
+#: ../../../default.c:365
+msgid "Errors"
+msgstr "Fehler"
+
+#: ../../../default.c:368
+msgid "Security"
+msgstr "Sicherheit"
+
+#: ../../../default.c:371
+msgid "Warnings"
+msgstr "Warnungen"
+
+#: ../../../default.c:374
+msgid "Notice"
+msgstr "Hinweis"
+
+#: ../../../default.c:377
+msgid "Info"
+msgstr "Info"
+
+#: ../../../default.c:380
+msgid "Date"
+msgstr "Datum"
+
+#: ../../../default.c:383
+msgid "Type"
+msgstr "Typ"
+
+#: ../../../default.c:386
+#: ../../../default.c:659
+msgid "User"
+msgstr "Benutzer"
+
+#: ../../../default.c:389
+#: ../../../default.c:572
+#: ../../../default.c:593
+msgid "Module"
+msgstr "Modul"
+
+#: ../../../default.c:392
+#: ../../../default.c:575
+#: ../../../default.c:596
+msgid "Action"
+msgstr "Aktion"
+
+#: ../../../default.c:395
+msgid "Real Action"
+msgstr "Tatsächliche Aktion"
+
+#: ../../../default.c:401
+msgid "Result"
+msgstr "Ergebnis"
+
+#: ../../../default.c:404
+msgid "Additional Info"
+msgstr "Zusätz. Info"
+
+#: ../../../default.c:407
+msgid "Maintenence"
+msgstr "Wartung"
+
+#: ../../../default.c:410
+msgid "This options let you delete files based on some options."
+msgstr "Diese Optionen lassen Sie Dateien basierend auf einigen Optionen löschen."
+
+#: ../../../default.c:413
+msgid "Please select one or more criteria for file deletion"
+msgstr "Bitte wählen Sie eine oder mehr Kriterien für das Löschen aus"
+
+#: ../../../default.c:416
+msgid "Delete files older than"
+msgstr "Datei älter als löschen"
+
+#: ../../../default.c:419
+msgid "days"
+msgstr "Tage"
+
+#: ../../../default.c:422
+msgid "Which user name is"
+msgstr "Deren Benutzername ist"
+
+#: ../../../default.c:425
+msgid "Which upload day is"
+msgstr "Deren Upload Tag ist"
+
+#: ../../../default.c:428
+msgid "Which size is bigger than"
+msgstr "Deren Größe größer ist als"
+
+#: ../../../default.c:431
+#: ../../../default.c:719
+#: ../../../default.c:731
+msgid "Proceed"
+msgstr "Fortfahren"
+
+#: ../../../default.c:434
+msgid "Expiration plugin"
+msgstr "Ablauf Plugin"
+
+#: ../../../default.c:437
+msgid "To delete files marked as expired by the expire plugin press the \"Delete expired\" button."
+msgstr "Um die Dateien, die als abgelaufen markiert sind, zu löschen, drücken Sie bitte den \"Lösche abgelaufen\" Button."
+
+#: ../../../default.c:440
+msgid "Delete expired"
+msgstr "Lösche abgelaufene"
+
+#: ../../../default.c:443
+msgid "Are you sure you want to delete the selected users?"
+msgstr "Sind Sie sicher, dass Sie die ausgewählten Benutzer löschen möchten?"
+
+#: ../../../default.c:446
+msgid "Are you sure you want to delete the selected user?"
+msgstr "Sind Sie sicher, dass Sie den ausgewählten Benutzer löschen möchten?"
+
+#: ../../../default.c:452
+#: ../../../default.c:539
+msgid "Plugins"
+msgstr "Plugins"
+
+#: ../../../default.c:455
+#: ../../../default.c:542
+msgid "Files"
+msgstr "Dateien"
+
+#: ../../../default.c:458
+#: ../../../default.c:545
+msgid "Users"
+msgstr "Benutzer"
+
+#: ../../../default.c:461
+#: ../../../default.c:548
+msgid "Groups"
+msgstr "Gruppen"
+
+#: ../../../default.c:464
+#: ../../../default.c:551
+msgid "Rights"
+msgstr "Rechte"
+
+#: ../../../default.c:467
+#: ../../../default.c:554
+msgid "Languages"
+msgstr "Sprachen"
+
+#: ../../../default.c:470
+msgid "Banned"
+msgstr "Geblockt"
+
+#: ../../../default.c:473
+msgid "Logs"
+msgstr "Protokolle"
+
+#: ../../../default.c:476
+msgid "Deletion Result"
+msgstr "Löschergebnis"
+
+#: ../../../default.c:479
+msgid "The following files have been deleted."
+msgstr "Die folgenden Dateien wurden gelöscht."
+
+#: ../../../default.c:482
+msgid "The following files will be deleted, proceed?"
+msgstr "Die folgenden Dateien werden gelöscht. Fortfahren?"
+
+#: ../../../default.c:485
+msgid "Yes, delete all"
+msgstr "Ja, alle löschen"
+
+#: ../../../default.c:488
+msgid "No files matched the criteria"
+msgstr "Keine Dateien passen zum Kriterium"
+
+#: ../../../default.c:491
+msgid "Back to Maintenance"
+msgstr "Zurück zur Wartung"
+
+#: ../../../default.c:518
+msgid "Are you sure you want to delete the selected groups?"
+msgstr "Sind Sie sicher, dass Sie die ausgewählten Gruppen löschen möchten?"
+
+#: ../../../default.c:521
+msgid "Are you sure you want to delete the selected group?"
+msgstr "Sind Sie sicher, dass Sie die ausgewählte Gruppe löschen möchten?"
+
+#: ../../../default.c:524
+msgid "Group Name"
+msgstr "Gruppenname"
+
+#: ../../../default.c:533
+msgid "Here you can administer"
+msgstr "Hier können Sie administrieren"
+
+#: ../../../default.c:557
+msgid "Banned IPs"
+msgstr "Geblockte IPs"
+
+#: ../../../default.c:560
+msgid "Logs / Statistics"
+msgstr "Protokolle / Statistiken"
+
+#: ../../../default.c:563
+msgid "PLEASE BE CAREFULL WHEN MODIFING THE RIGHTS!"
+msgstr "BITTE SEINEN SIE BEIM ÄNDERN VON RECHTEN VORSICHTIG!"
+
+#: ../../../default.c:566
+msgid "Editing rights for group"
+msgstr "Ändern von Gruppenrchten"
+
+#: ../../../default.c:578
+msgid "Right"
+msgstr "Rechte"
+
+#: ../../../default.c:581
+msgid "Resulting ACL"
+msgstr "Resultierende ACL"
+
+#: ../../../default.c:584
+msgid "From ACL"
+msgstr "Von ACL"
+
+#: ../../../default.c:587
+msgid "default"
+msgstr "Standard"
+
+#: ../../../default.c:599
+msgid "<< Back"
+msgstr "<< Zurück"
+
+#: ../../../default.c:602
+msgid "Apply changes"
+msgstr "Änderungen anwenden"
+
+#: ../../../default.c:605
+msgid "Files List"
+msgstr "Dateiliste"
+
+#: ../../../default.c:608
+msgid "Maintenance"
+msgstr "Wartung"
+
+#: ../../../default.c:644
+msgid "Are you sure you want to delete the selected files?"
+msgstr "Sind Sie sicher, dass Sie die ausgewählten Dateien löschen möchten?"
+
+#: ../../../default.c:647
+msgid "Are you sure you want to delete the selected file?"
+msgstr "Sind Sie sicher, dass Sie die ausgewählte Datei löschen möchten?"
+
+#: ../../../default.c:653
+msgid "Id"
+msgstr "ID"
+
+#: ../../../default.c:665
+msgid "Upload Date"
+msgstr "Upload Datum"
+
+#: ../../../default.c:680
+msgid "You requested to remove the following file"
+msgstr "Sie möchten die folgende Datei entfernen"
+
+#: ../../../default.c:683
+#: ../../../default.c:737
+#: ../../../default.c:767
+msgid "File description"
+msgstr "Dateibeschreibung"
+
+#: ../../../default.c:686
+#: ../../../default.c:743
+#: ../../../default.c:752
+msgid "File name"
+msgstr "Dateiname"
+
+#: ../../../default.c:689
+#: ../../../default.c:746
+#: ../../../default.c:755
+msgid "File size"
+msgstr "Dateigröße"
+
+#: ../../../default.c:692
+#: ../../../default.c:740
+#: ../../../default.c:770
+msgid "Uploaded on"
+msgstr "Hochgeladen am"
+
+#: ../../../default.c:695
+msgid "Confirm removal"
+msgstr "Bestätigen Sie die Löschung"
+
+#: ../../../default.c:698
+msgid "Download link"
+msgstr "Download Link"
+
+#: ../../../default.c:701
+msgid "Remove link"
+msgstr "Entfernen Link"
+
+#: ../../../default.c:704
+msgid "Upload a new file"
+msgstr "Einen neue Datei hochladen"
+
+#: ../../../default.c:707
+msgid "Uploading"
+msgstr "Hochladen"
+
+#: ../../../default.c:710
+msgid "please wait ..."
+msgstr "Bitte warten ..."
+
+#: ../../../default.c:713
+msgid "Please enter the File Information requested"
+msgstr "Bitte geben Sie die gewünschten Datei-Informationen ein"
+
+#: ../../../default.c:716
+msgid "File code"
+msgstr "Dateicode"
+
+#: ../../../default.c:722
+msgid "Select the file to be uploaded"
+msgstr "Wählen Sie die hochzuladenen Dateien aus"
+
+#: ../../../default.c:725
+msgid "Maximum allowed upload size"
+msgstr "Maximale Uploadgröße"
+
+#: ../../../default.c:728
+msgid "Upload"
+msgstr "Upload"
+
+#: ../../../default.c:734
+msgid "You can now proceed downloading the file"
+msgstr "Sie können jetzt mit dem Download der Datei fortfahren"
+
+#: ../../../default.c:749
+msgid "Download file"
+msgstr "Download Datei"
+
+#: ../../../default.c:761
+msgid "Complete upload"
+msgstr "Vollständiger Upload"
+
+#: ../../../default.c:764
+msgid "FILE HAS BEEN SUCCESSFULLY REMOVED"
+msgstr "DIE DATEI WURDE ERFOLGREICH GELÖSCHT"
+
+#: ../../../default.c:791
+#: ../../../default.c:806
+msgid "Dear "
+msgstr "Hallo"
+
+#: ../../../default.c:794
+#: ../../../default.c:809
+msgid "This e-mail message is sent to you to confirm your account registration has a valid e-mail address."
+msgstr "Diese E-Mail ist eine Bestätigung, das Ihre Registrierung eine gültige E-Mail Adresse verwendet."
+
+#: ../../../default.c:797
+#: ../../../default.c:812
+msgid "Open the following link in a browser to confirm your account."
+msgstr "Öffnen Sie bitte den folgenden Link in Ihrem Browser, um Ihr Konto zu bestätigen."
+
+#: ../../../default.c:800
+#: ../../../default.c:815
+msgid "Best regards"
+msgstr "Viele Grüße"
+
+#: ../../../default.c:821
+msgid "User login"
+msgstr "Benutzerlogin"
+
+#: ../../../default.c:824
+msgid "User name"
+msgstr "Benutzername"
+
+#: ../../../default.c:830
+msgid "Login"
+msgstr "Anmelden"
+
+#: ../../../default.c:833
+msgid "You don't have an account?"
+msgstr "Sie haben kein Konto?"
+
+#: ../../../default.c:836
+msgid "Register here"
+msgstr "Registrieren Sie sich hier"
+
+#: ../../../default.c:839
+msgid "or you can"
+msgstr "oder Sie können sich"
+
+#: ../../../default.c:842
+msgid "Login here"
+msgstr "hier Anmelden"
+
+#: ../../../default.c:854
+msgid "Language"
+msgstr "Sprache"
+
+#: ../../../default.c:857
+msgid "Change"
+msgstr "Ändern"
+
+#: ../../../default.c:860
+msgid "Registration succeeded"
+msgstr "Registrierung erfolgreich"
+
+#: ../../../default.c:863
+msgid "An e-mail has been sent for the account activation"
+msgstr "Für die Aktivierung Ihres Konto wurde Ihnen eine E-Mail gesendet."
+
+#: ../../../default.c:866
+msgid "Please follow the e-mail instructions to activate your account."
+msgstr "Bitte folgen Sie den Anweisungen in der E-Mail für die Aktivierung Ihres Kontos."
+
+#: ../../../default.c:869
+msgid "back to home"
+msgstr "Zurück zur Home-Seite"
+
+#: ../../../default.c:884
+msgid "Old password"
+msgstr "Altes Passwort"
+
+#: ../../../default.c:887
+msgid "New password"
+msgstr "Neues Passwort"
+
+#: ../../../default.c:890
+msgid "Retype password"
+msgstr "Passwort erneut eingeben"
+
+#: ../../../default.c:893
+msgid "Cancel"
+msgstr "Abbrechen"
+
+#: ../../../default.c:899
+msgid "Your account registration has been confirmed."
+msgstr "Ihre Konto-Registrierung wurde bestätigt."
+
+#: ../../../default.c:902
+msgid "You can now proceed with the login"
+msgstr "Sie können jetzt mit dem Login fortfahren"
+
+#: ../../../default.c:905
+msgid "here"
+msgstr "hier"
+
+#~ msgid "Additional file upload"
+#~ msgstr "File aggiuntivo"
+#~ msgid "File ID"
+#~ msgstr "ID File"
+
Added: trunk/templates/default/locale/de.inc.php
===================================================================
--- trunk/templates/default/locale/de.inc.php (rev 0)
+++ trunk/templates/default/locale/de.inc.php 2009-01-15 11:17:30 UTC (rev 217)
@@ -0,0 +1,192 @@
+<?php
+$tr["Your IP has been blocked!"] = "Ihre IP wurde geblockt!";
+$tr["You cannot use this site."] = "Sie dürfen diese Site nicht benutzen.";
+$tr["If you think this is a misconfiguration please send an email to the site owner"] = "Wenn Sie meinen das dies eine falsche Konfiguration ist, senden Sie bitte eine Email an den Websitebetreiber";
+$tr["Captcha code"] = "Captcha code";
+$tr["Reload Image"] = "Bild neuladen";
+$tr["Please enter the following captcha to proceed for the download"] = "Bitte geben Sie den folgenden Captcha an um zum Download zu gelangen";
+$tr["Use Captcha"] = "Captcha benutzen";
+$tr["Compress the files"] = "Dateien komprimieren";
+$tr["No compression"] = "Keine Komprimierung";
+$tr["The download is password protected."] = "Der Download ist Passwort geschützt.";
+$tr["Password"] = "Passwort";
+$tr["Password protect"] = "Passwort geschützt";
+$tr["You are receiving this message because someone uploaded a file on our OpenUpload server for you."] = "Sie erhalten diesen Nachricht, da jemand eine Datei für die Sie auf unseren OpenUpload Server geladen hat.";
+$tr["Description"] = "Beschreibung";
+$tr["User message"] = "Benutzernachricht";
+$tr["To download the file open the following link in a browser"] = "Um die Datei herunterzuladen, öffnen Sie bitte den folgenden Link in Ihrem Browser";
+$tr["To remove the file from our server open the following link in a browser"] = "Um die Datei von unserem Server zu entfernen öffnen Sie bitte den folgenden Link in Ihrem Browser";
+$tr["For complains please send an email to"] = "Bei Beschwerden senden Sie bitte eine E-mail an";
+$tr["Send me an e-mail"] = "Senden Sie mir eine E-Mail";
+$tr["Your e-mail address"] = "Ihre E-Mailadresse";
+$tr["Send e-mail to"] = "Sende E-Mail an";
+$tr["Send remove link"] = "Sende Entfernen Link";
+$tr["e-mail Subject"] = "E-Mail Betreff";
+$tr["e-mail Message"] = "E-Mail Nachricht";
+$tr["Only the following mime types are allowed"] = "Nur die folgenden Dateitypen sind zugelassen";
+$tr["Are you sure you want to delete the selected plugins?"] = "Sind Sie sicher, dass Sie die ausgewählten Plugins löschen möchten?";
+$tr["Are you sure you want to delete the selected plugin?"] = "Sind Sie sicher, dass Sie das ausgewählte Plugin löschen möchten?";
+$tr["Plugin"] = "Plugin";
+$tr["Group"] = "Gruppe";
+$tr["Access"] = "Zugriff";
+$tr["Add"] = "Hinzufügen";
+$tr["IP"] = "IP";
+$tr["Priority"] = "Priorität";
+$tr["Confirm"] = "Bestätigen";
+$tr["Name"] = "Name";
+$tr["Gruppo"] = "Gruppe";
+$tr["Rights set?"] = "Rechte gesetzt?";
+$tr["Any"] = "Alle";
+$tr["Yes"] = "Ja";
+$tr["No"] = "Nein";
+$tr["Plugins ACL"] = "ACL Plugins";
+$tr["Plugins Options"] = "Plugin-Optionen";
+$tr["Settings"] = "Einstellungen";
+$tr["Options"] = "Optionen";
+$tr["Login name"] = "Loginname";
+$tr["Retype Password"] = "Passwort erneut eingeben";
+$tr["Full Name"] = "Kompletter Name";
+$tr["e-mail"] = "E-mail";
+$tr["Preferred language"] = "Gewünschte Sprache";
+$tr["Active"] = "Aktiv";
+$tr["Are you sure you want to delete the selected banned ips?"] = "Sind Sie sicher, dass Sie die ausgewählten geblockten IPs löschen möchten?";
+$tr["Are you sure you want to delete the selected banned ip?"] = "Sind Sie sicher, dass Sie die ausgewählte geblockte IP löschen möchten?";
+$tr["S"] = "S";
+$tr["Actions"] = "Aktion";
+$tr["Are you sure you want to delete the selected languages?"] = "Sind Sie sicher, dass Sie die ausgewählten Sprachen löschen möchten?";
+$tr["Are you sure you want to delete the selected language?"] = "Sind Sie sicher, dass Sie die ausgewählte Sprache löschen möchten?";
+$tr["ID"] = "ID";
+$tr["Locale"] = "Locale";
+$tr["Browser recon"] = "Browser recon";
+$tr["Charset"] = "Zeichensatz";
+$tr["Plugin does not have any option to be configured"] = "Das Plugin hat keine konfigurierbare Optionen";
+$tr["Translation module"] = "Übersetzungsmodul";
+$tr["Select one"] = "Wähle einen";
+$tr["Default language"] = "Standardsprache";
+$tr["Authentication module"] = "Authentifikationsmodul";
+$tr["(LDAP Configuration needs to be done<br> by hand for now)"] = "(Die LDAP Konfiguration muss zurzeit per<br> Hand vorgenommen werden)";
+$tr["Site title"] = "Website-Titel";
+$tr["WebMaster E-mail"] = "Webmaster E-Mail";
+$tr["Site E-mail"] = "Website E-Mail";
+$tr["Confirm registration with e-mail"] = "Bestätige Registrierung per E-Mail";
+$tr["Template"] = "Vorlage";
+$tr["Template Footer"] = "Fußzeile Vorlage";
+$tr["Maximum upload size (in MB)"] = "Maximale Uploadgröße (MB)";
+$tr["Maximum download time (in Min)"] = "Maximale Downloadzeit (in Min)";
+$tr["0 disables it"] = "0 deaktiviert";
+$tr["Max num. of file uploaded per upload"] = "Maximale Anz. der gleichzeitig hochladbaren Dateien";
+$tr["Upload tracking method"] = "Uploadverfolgungs-Methode";
+$tr["Enable activity logging?"] = "Aktiviere Logging?";
+$tr["Database logging level"] = "Datenbank-Loggingebene";
+$tr["Syslog logging level"] = "Syslog Loggingebene";
+$tr["Save Changes"] = "Speichere Änderungen";
+$tr["Download config file"] = "Konfigurationsdatei herunterladen";
+$tr["This are the configured settings for a review"] = "Dies sind die konfigurierten Einstellungen für eine Review";
+$tr["Filter"] = "Filter";
+$tr["All"] = "Alle";
+$tr["Errors"] = "Fehler";
+$tr["Security"] = "Sicherheit";
+$tr["Warnings"] = "Warnungen";
+$tr["Notice"] = "Hinweis";
+$tr["Info"] = "Info";
+$tr["Date"] = "Datum";
+$tr["Type"] = "Typ";
+$tr["User"] = "Benutzer";
+$tr["Module"] = "Modul";
+$tr["Action"] = "Aktion";
+$tr["Real Action"] = "Tatsächliche Aktion";
+$tr["Result"] = "Ergebnis";
+$tr["Additional Info"] = "Zusätz. Info";
+$tr["Maintenence"] = "Wartung";
+$tr["This options let you delete files based on some options."] = "Diese Optionen lassen Sie Dateien basierend auf einigen Optionen löschen.";
+$tr["Please select one or more criteria for file deletion"] = "Bitte wählen Sie eine oder mehr Kriterien für das Löschen aus";
+$tr["Delete files older than"] = "Datei älter als löschen";
+$tr["days"] = "Tage";
+$tr["Which user name is"] = "Deren Benutzername ist";
+$tr["Which upload day is"] = "Deren Upload Tag ist";
+$tr["Which size is bigger than"] = "Deren Größe größer ist als";
+$tr["Proceed"] = "Fortfahren";
+$tr["Expiration plugin"] = "Ablauf Plugin";
+$tr["To delete files marked as expired by the expire plugin press the \"Delete expired\" button."] = "Um die Dateien, die als abgelaufen markiert sind, zu löschen, drücken Sie bitte den \"Lösche abgelaufen\" Button.";
+$tr["Delete expired"] = "Lösche abgelaufene";
+$tr["Are you sure you want to delete the selected users?"] = "Sind Sie sicher, dass Sie die ausgewählten Benutzer löschen möchten?";
+$tr["Are you sure you want to delete the selected user?"] = "Sind Sie sicher, dass Sie den ausgewählten Benutzer löschen möchten?";
+$tr["Plugins"] = "Plugins";
+$tr["Files"] = "Dateien";
+$tr["Users"] = "Benutzer";
+$tr["Groups"] = "Gruppen";
+$tr["Rights"] = "Rechte";
+$tr["Languages"] = "Sprachen";
+$tr["Banned"] = "Geblockt";
+$tr["Logs"] = "Protokolle";
+$tr["Deletion Result"] = "Löschergebnis";
+$tr["The following files have been deleted."] = "Die folgenden Dateien wurden gelöscht.";
+$tr["The following files will be deleted, proceed?"] = "Die folgenden Dateien werden gelöscht. Fortfahren?";
+$tr["Yes, delete all"] = "Ja, alle löschen";
+$tr["No files matched the criteria"] = "Keine Dateien passen zum Kriterium";
+$tr["Back to Maintenance"] = "Zurück zur Wartung";
+$tr["Are you sure you want to delete the selected groups?"] = "Sind Sie sicher, dass Sie die ausgewählten Gruppen löschen möchten?";
+$tr["Are you sure you want to delete the selected group?"] = "Sind Sie sicher, dass Sie die ausgewählte Gruppe löschen möchten?";
+$tr["Group Name"] = "Gruppenname";
+$tr["Here you can administer"] = "Hier können Sie administrieren";
+$tr["Banned IPs"] = "Geblockte IPs";
+$tr["Logs / Statistics"] = "Protokolle / Statistiken";
+$tr["PLEASE BE CAREFULL WHEN MODIFING THE RIGHTS!"] = "BITTE SEINEN SIE BEIM ÄNDERN VON RECHTEN VORSICHTIG!";
+$tr["Editing rights for group"] = "Ändern von Gruppenrchten";
+$tr["Right"] = "Rechte";
+$tr["Resulting ACL"] = "Resultierende ACL";
+$tr["From ACL"] = "Von ACL";
+$tr["default"] = "Standard";
+$tr["<< Back"] = "<< Zurück";
+$tr["Apply changes"] = "Änderungen anwenden";
+$tr["Files List"] = "Dateiliste";
+$tr["Maintenance"] = "Wartung";
+$tr["Are you sure you want to delete the selected files?"] = "Sind Sie sicher, dass Sie die ausgewählten Dateien löschen möchten?";
+$tr["Are you sure you want to delete the selected file?"] = "Sind Sie sicher, dass Sie die ausgewählte Datei löschen möchten?";
+$tr["Id"] = "ID";
+$tr["Upload Date"] = "Upload Datum";
+$tr["You requested to remove the following file"] = "Sie möchten die folgende Datei entfernen";
+$tr["File description"] = "Dateibeschreibung";
+$tr["File name"] = "Dateiname";
+$tr["File size"] = "Dateigröße";
+$tr["Uploaded on"] = "Hochgeladen am";
+$tr["Confirm removal"] = "Bestätigen Sie die Löschung";
+$tr["Download link"] = "Download Link";
+$tr["Remove link"] = "Entfernen Link";
+$tr["Upload a new file"] = "Einen neue Datei hochladen";
+$tr["Uploading"] = "Hochladen";
+$tr["please wait ..."] = "Bitte warten ...";
+$tr["Please enter the File Information requested"] = "Bitte geben Sie die gewünschten Datei-Informationen ein";
+$tr["File code"] = "Dateicode";
+$tr["Select the file to be uploaded"] = "Wählen Sie die hochzuladenen Dateien aus";
+$tr["Maximum allowed upload size"] = "Maximale Uploadgröße";
+$tr["Upload"] = "Upload";
+$tr["You can now proceed downloading the file"] = "Sie können jetzt mit dem Download der Datei fortfahren";
+$tr["Download file"] = "Download Datei";
+$tr["Complete upload"] = "Vollständiger Upload";
+$tr["FILE HAS BEEN SUCCESSFULLY REMOVED"] = "DIE DATEI WURDE ERFOLGREICH GELÖSCHT";
+$tr["Dear "] = "Hallo";
+$tr["This e-mail message is sent to you to confirm your account registration has a valid e-mail address."] = "Diese E-Mail ist eine Bestätigung, das Ihre Registrierung eine gültige E-Mail Adresse verwendet.";
+$tr["Open the following link in a browser to confirm your account."] = "Öffnen Sie bitte den folgenden Link in Ihrem Browser, um Ihr Konto zu bestätigen.";
+$tr["Best regards"] = "Viele Grüße";
+$tr["User login"] = "Benutzerlogin";
+$tr["User name"] = "Benutzername";
+$tr["Login"] = "Anmelden";
+$tr["You don't have an account?"] = "Sie haben kein Konto?";
+$tr["Register here"] = "Registrieren Sie sich hier";
+$tr["or you can"] = "oder Sie können sich";
+$tr["Login here"] = "hier Anmelden";
+$tr["Language"] = "Sprache";
+$tr["Change"] = "Ändern";
+$tr["Registration succeeded"] = "Registrierung erfolgreich";
+$tr["An e-mail has been sent for the account activation"] = "Für die Aktivierung Ihres Konto wurde Ihnen eine E-Mail gesendet.";
+$tr["Please follow the e-mail instructions to activate your account."] = "Bitte folgen Sie den Anweisungen in der E-Mail für die Aktivierung Ihres Kontos.";
+$tr["back to home"] = "Zurück zur Home-Seite";
+$tr["Old password"] = "Altes Passwort";
+$tr["New password"] = "Neues Passwort";
+$tr["Retype password"] = "Passwort erneut eingeben";
+$tr["Cancel"] = "Abbrechen";
+$tr["Your account registration has been confirmed."] = "Ihre Konto-Registrierung wurde bestätigt.";
+$tr["You can now proceed with the login"] = "Sie können jetzt mit dem Login fortfahren";
+$tr["here"] = "hier";
+?>
Modified: trunk/templates/default/modules/admin/langs.tpl
===================================================================
--- trunk/templates/default/modules/admin/langs.tpl 2009-01-14 18:37:04 UTC (rev 216)
+++ trunk/templates/default/modules/admin/langs.tpl 2009-01-15 11:17:30 UTC (rev 217)
@@ -15,11 +15,11 @@
<table border="0" id="dbtable">
<tr>
<th width="10">S</th>
- <th width="100">ID</th>
- <th width="200">Name</th>
- <th width="100">Locale</th>
- <th width="20">Active</th>
- <th width="100">Actions</th>
+ <th width="100">{tr}ID{/tr}</th>
+ <th width="200">{tr}Name{/tr}</th>
+ <th width="100">{tr}Locale{/tr}</th>
+ <th width="20">{tr}Active{/tr}</th>
+ <th width="100">{tr}Actions{/tr}</th>
</tr>
{foreach from=$langlist item=l}
{cycle values="row1,row2" advance=true assign=rid}
Modified: trunk/templates/default/modules/admin/users.tpl
===================================================================
--- trunk/templates/default/modules/admin/users.tpl 2009-01-14 18:37:04 UTC (rev 216)
+++ trunk/templates/default/modules/admin/users.tpl 2009-01-15 11:17:30 UTC (rev 217)
@@ -15,12 +15,12 @@
<table border="0" id="dbtable">
<tr>
<th width="10">S</th>
- <th width="100">Login</th>
- <th width="200">Name</th>
- <th width="100">Group</th>
- <th width="200">E-mail</th>
- <th width="20">Active</th>
- <th width="100">Actions</th>
+ <th width="100">{tr}Login{/tr}</th>
+ <th width="200">{tr}Name{/tr}</th>
+ <th width="100">{tr}Group{/tr}</th>
+ <th width="200">{tr}E-mail{/tr}</th>
+ <th width="20">{tr}Active{/tr}</th>
+ <th width="100">{tr}Actions{/tr}</th>
</tr>
{foreach from=$users item=u}
{cycle values="row1,row2" advance=true assign=rid}
Modified: trunk/www/setup.inc.php
===================================================================
--- trunk/www/setup.inc.php 2009-01-14 18:37:04 UTC (rev 216)
+++ trunk/www/setup.inc.php 2009-01-15 11:17:30 UTC (rev 217)
@@ -223,9 +223,10 @@
array ( 'id' => 2, 'ip' => '0.0.0.0/0', 'access' => 'allow', 'priority' => 9999999),
),
'langs' => array (
- array ('id' => 'en', 'name' => 'English', 'locale' => 'en_EN', 'browser' => '[en];[en-EN]', 'charset' => 'utf8', 'active' => 1),
+ array ('id' => 'en', 'name' => 'English', 'locale' => 'en_EN', 'browser' => '[en];[en-EN];[en-US]', 'charset' => 'utf8', 'active' => 1),
array ('id' => 'it', 'name' => 'Italiano', 'locale' => 'it_IT.utf8', 'browser' => '[it];[it-IT]', 'charset' => 'utf8', 'active' => 1),
array ('id' => 'fr', 'name' => 'Français', 'locale' => 'fr_FR.utf8', 'browser' => '[fr];[fr-FR]', '...
[truncated message content] |
|
From: <ts...@us...> - 2009-01-14 18:37:15
|
Revision: 216
http://openupload.svn.sourceforge.net/openupload/?rev=216&view=rev
Author: tsdogs
Date: 2009-01-14 18:37:04 +0000 (Wed, 14 Jan 2009)
Log Message:
-----------
changelog updated
Modified Paths:
--------------
trunk/CHANGELOG
Modified: trunk/CHANGELOG
===================================================================
--- trunk/CHANGELOG 2009-01-14 18:33:27 UTC (rev 215)
+++ trunk/CHANGELOG 2009-01-14 18:37:04 UTC (rev 216)
@@ -1,4 +1,4 @@
-Changelog from release 0.3b to 0.4
+Changelog from release 0.3c to 0.4
* General
Reviewed the logo / default theme
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ts...@us...> - 2009-01-14 18:33:38
|
Revision: 215
http://openupload.svn.sourceforge.net/openupload/?rev=215&view=rev
Author: tsdogs
Date: 2009-01-14 18:33:27 +0000 (Wed, 14 Jan 2009)
Log Message:
-----------
fix wrongly closed th html element: bug #2507419 (Peter Velan)
Modified Paths:
--------------
trunk/templates/default/modules/admin/groups.tpl
Modified: trunk/templates/default/modules/admin/groups.tpl
===================================================================
--- trunk/templates/default/modules/admin/groups.tpl 2008-12-29 10:53:18 UTC (rev 214)
+++ trunk/templates/default/modules/admin/groups.tpl 2009-01-14 18:33:27 UTC (rev 215)
@@ -16,7 +16,7 @@
<tr>
<th width="10">S</th>
<th width="100">{tr}Group Name{/tr}</th>
- <th>width="200">{tr}Description{/tr}</th>
+ <th width="200">{tr}Description{/tr}</th>
<th width="100">{tr}Actions{/tr}</th>
</tr>
{foreach from=$groups item=g}
@@ -32,4 +32,4 @@
</tr>
{/foreach}
</table>
-</form>
\ No newline at end of file
+</form>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ts...@us...> - 2008-12-29 10:53:22
|
Revision: 214
http://openupload.svn.sourceforge.net/openupload/?rev=214&view=rev
Author: tsdogs
Date: 2008-12-29 10:53:18 +0000 (Mon, 29 Dec 2008)
Log Message:
-----------
security fix on windows
a couple of additional config options to better support smarty configurations
Modified Paths:
--------------
trunk/lib/general.inc.php
trunk/lib/main.inc.php
Modified: trunk/lib/general.inc.php
===================================================================
--- trunk/lib/general.inc.php 2008-12-29 09:54:56 UTC (rev 213)
+++ trunk/lib/general.inc.php 2008-12-29 10:53:18 UTC (rev 214)
@@ -4,7 +4,10 @@
ob_start();
session_start();
-define('SMARTY_DIR', $CONFIG['INSTALL_ROOT'].'/lib/smarty/');
+if (isset($CONFIG['SMARTY_DIR']))
+ define('SMARTY_DIR', $CONFIG['SMARTY_DIR']);
+else
+ define('SMARTY_DIR', $CONFIG['INSTALL_ROOT'].'/lib/smarty/');
require(SMARTY_DIR . 'Smarty.class.php');
require_once($CONFIG['INSTALL_ROOT'].'/lib/classes.inc.php');
require_once($CONFIG['INSTALL_ROOT'].'/lib/user.inc.php');
@@ -117,7 +120,7 @@
-- Support on Windows PHP for the function 'checkdnsrr'
used within the 'validEmail' function has been added.
-- Pending further investigation.
- -- Discovery/Solution thanks to: Korn\x8El
+ -- Discovery/Solution thanks to: Korn�l
-- http://hu.php.net/manual/en/function.checkdnsrr.php#75158
*/
function validEmail($email){
@@ -129,7 +132,7 @@
if($recType == ''){
$recType = "MX";
}
- exec("nslookup -type=$recType $hostName", $result);
+ exec("nslookup -type=$recType ".escapeshellcmd($hostName), $result);
// check each line to find the one that starts with the host
// name. If it exists then the function succeeded.
foreach ($result as $line) {
Modified: trunk/lib/main.inc.php
===================================================================
--- trunk/lib/main.inc.php 2008-12-29 09:54:56 UTC (rev 213)
+++ trunk/lib/main.inc.php 2008-12-29 10:53:18 UTC (rev 214)
@@ -22,9 +22,14 @@
/* initialize template engine */
$this->tpl = new Smarty();
$this->tpl->template_dir = $this->config['INSTALL_ROOT'].'/templates';
- $this->tpl->compile_dir = $this->config['INSTALL_ROOT'].'/templates_c/';
- $this->tpl->config_dir = SMARTY_DIR.'/config';
- $this->tpl->cache_dir = $this->config['INSTALL_ROOT'].'/cache';
+ if (isset($this->config['SMARTY_DATA'])) {
+ $this->tpl->compile_dir = $this->config['SMARTY_DATA'].'/templates_c/';
+ $this->tpl->cache_dir = $this->config['SMARTY_DATA'].'/cache';
+ } else {
+ $this->tpl->compile_dir = $this->config['INSTALL_ROOT'].'/templates_c/';
+ $this->tpl->cache_dir = $this->config['INSTALL_ROOT'].'/cache';
+ }
+ $this->tpl->config_dir = SMARTY_DIR.'/configs';
$this->tpl->caching = $this->config['site']['caching'];
$this->page['template']= $this->config['WWW_ROOT'].'/templates/'.$this->config['site']['template'];
@@ -53,7 +58,7 @@
if (isset($this->config['translator'])) {
$trname = $this->config['translator'];
} else {
- $trname = 'gettext';
+ $trname = 'null';
}
require_once($this->config['INSTALL_ROOT'].'/lib/modules/tr/'.$trname.'.inc.php');
$tr = $trname.'Translator';
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <rl...@us...> - 2008-12-29 09:55:06
|
Revision: 213
http://openupload.svn.sourceforge.net/openupload/?rev=213&view=rev
Author: rlelek
Date: 2008-12-29 09:54:56 +0000 (Mon, 29 Dec 2008)
Log Message:
-----------
-- Windows Bug Fix --
* Bug Update (2008-12-29 by Ryan Lelek):
-- Support on Windows PHP for the function 'checkdnsrr'
used within the 'validEmail' function has been added.
-- Pending further investigation.
-- Discovery/Solution thanks to: Korne?\204?\129l
-- http://hu.php.net/manual/en/function.checkdnsrr.php#75158
Modified Paths:
--------------
trunk/lib/general.inc.php
Modified: trunk/lib/general.inc.php
===================================================================
--- trunk/lib/general.inc.php 2008-12-25 04:15:31 UTC (rev 212)
+++ trunk/lib/general.inc.php 2008-12-29 09:54:56 UTC (rev 213)
@@ -112,9 +112,39 @@
Returns true if the email address has the email
address format and the domain exists.
Note: taken from here: http://www.linuxjournal.com/article/9585
+
+* Bug Update (2008-12-29 by Ryan Lelek):
+ -- Support on Windows PHP for the function 'checkdnsrr'
+ used within the 'validEmail' function has been added.
+ -- Pending further investigation.
+ -- Discovery/Solution thanks to: Korn\x8El
+ -- http://hu.php.net/manual/en/function.checkdnsrr.php#75158
*/
-function validEmail($email)
-{
+function validEmail($email){
+
+ // Begin Bug Fix
+ if(!function_exists('checkdnsrr')){
+ function checkdnsrr($hostName, $recType = ''){
+ if(!empty($hostName)){
+ if($recType == ''){
+ $recType = "MX";
+ }
+ exec("nslookup -type=$recType $hostName", $result);
+ // check each line to find the one that starts with the host
+ // name. If it exists then the function succeeded.
+ foreach ($result as $line) {
+ if(eregi("^$hostName",$line)) {
+ return true;
+ }
+ }
+ // otherwise there was no mail handler for the domain
+ return false;
+ }
+ return false;
+ }
+ }
+ // End Bug Fix
+
$isValid = true;
$atIndex = strrpos($email, "@");
if (is_bool($atIndex) && !$atIndex)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <rl...@us...> - 2008-12-25 04:15:35
|
Revision: 212
http://openupload.svn.sourceforge.net/openupload/?rev=212&view=rev
Author: rlelek
Date: 2008-12-25 04:15:31 +0000 (Thu, 25 Dec 2008)
Log Message:
-----------
-- Minor Change --
changed HTML <br> tags and incorrect <br/> tags to <br />
in preparation for Strict XHTML support.
Modified Paths:
--------------
trunk/lib/smarty/internals/core.assign_smarty_interface.php
trunk/lib/smarty/internals/core.display_debug_console.php
trunk/lib/smarty/plugins/block.textformat.php
trunk/lib/smarty/plugins/block.tr.php
trunk/lib/smarty/plugins/compiler.assign.php
trunk/lib/smarty/plugins/function.assign_debug_info.php
trunk/lib/smarty/plugins/function.config_load.php
trunk/lib/smarty/plugins/function.counter.php
trunk/lib/smarty/plugins/function.cycle.php
trunk/lib/smarty/plugins/function.debug.php
trunk/lib/smarty/plugins/function.eval.php
trunk/lib/smarty/plugins/function.fetch.php
trunk/lib/smarty/plugins/function.html_checkboxes.php
trunk/lib/smarty/plugins/function.html_image.php
trunk/lib/smarty/plugins/function.html_options.php
trunk/lib/smarty/plugins/function.html_radios.php
trunk/lib/smarty/plugins/function.html_select_date.php
trunk/lib/smarty/plugins/function.html_select_time.php
trunk/lib/smarty/plugins/function.html_table.php
trunk/lib/smarty/plugins/function.mailto.php
trunk/lib/smarty/plugins/function.math.php
trunk/lib/smarty/plugins/function.popup.php
trunk/lib/smarty/plugins/function.popup_init.php
trunk/lib/smarty/plugins/function.tpl.php
trunk/lib/smarty/plugins/modifier.capitalize.php
trunk/lib/smarty/plugins/modifier.cat.php
trunk/lib/smarty/plugins/modifier.count_characters.php
trunk/lib/smarty/plugins/modifier.count_paragraphs.php
trunk/lib/smarty/plugins/modifier.count_sentences.php
trunk/lib/smarty/plugins/modifier.count_words.php
trunk/lib/smarty/plugins/modifier.date_format.php
trunk/lib/smarty/plugins/modifier.debug_print_var.php
trunk/lib/smarty/plugins/modifier.default.php
trunk/lib/smarty/plugins/modifier.escape.php
trunk/lib/smarty/plugins/modifier.indent.php
trunk/lib/smarty/plugins/modifier.lower.php
trunk/lib/smarty/plugins/modifier.nl2br.php
trunk/lib/smarty/plugins/modifier.regex_replace.php
trunk/lib/smarty/plugins/modifier.replace.php
trunk/lib/smarty/plugins/modifier.spacify.php
trunk/lib/smarty/plugins/modifier.string_format.php
trunk/lib/smarty/plugins/modifier.strip.php
trunk/lib/smarty/plugins/modifier.strip_tags.php
trunk/lib/smarty/plugins/modifier.truncate.php
trunk/lib/smarty/plugins/modifier.upper.php
trunk/lib/smarty/plugins/modifier.wordwrap.php
trunk/lib/smarty/plugins/outputfilter.trimwhitespace.php
trunk/lib/smarty/plugins/shared.escape_special_chars.php
trunk/lib/smarty/plugins/shared.make_timestamp.php
trunk/templates/default/banned.tpl
trunk/templates/default/index.tpl
trunk/templates/default/locale/it/LC_MESSAGES/template.po
trunk/templates/default/locale/it.inc.php
trunk/templates/default/modules/admin/admin.tpl
trunk/templates/default/modules/admin/adminmenu.tpl
trunk/templates/default/modules/admin/banned.tpl
trunk/templates/default/modules/admin/files.tpl
trunk/templates/default/modules/admin/filesmenu.tpl
trunk/templates/default/modules/admin/groups.tpl
trunk/templates/default/modules/admin/langs.tpl
trunk/templates/default/modules/admin/logs.tpl
trunk/templates/default/modules/admin/maintenance.tpl
trunk/templates/default/modules/admin/maintenancerun.tpl
trunk/templates/default/modules/admin/options.tpl
trunk/templates/default/modules/admin/pluginoptiondetail.tpl
trunk/templates/default/modules/admin/pluginoptions.tpl
trunk/templates/default/modules/admin/plugins.tpl
trunk/templates/default/modules/admin/pluginsacl.tpl
trunk/templates/default/modules/admin/rightedit.tpl
trunk/templates/default/modules/admin/rights.tpl
trunk/templates/default/modules/admin/settings.tpl
trunk/templates/default/modules/admin/settingsmenu.tpl
trunk/templates/default/modules/admin/users.tpl
trunk/templates/default/modules/auth/emailconfirm.tpl
trunk/templates/default/modules/auth/registerConfirm.tpl
trunk/templates/default/modules/auth/registerEnable.tpl
trunk/templates/default/modules/files/downloadConfirm.tpl
trunk/templates/default/modules/files/removeRequest.tpl
trunk/templates/default/modules/files/removeResult.tpl
trunk/templates/default/modules/files/uploadFileInfo.tpl
trunk/templates/default/modules/files/uploadForm.tpl
trunk/templates/default/plugins/captcha/registerForm.tpl
trunk/templates/default/plugins/email/notify.tpl
trunk/www/setup.inc.php
Modified: trunk/lib/smarty/internals/core.assign_smarty_interface.php
===================================================================
--- trunk/lib/smarty/internals/core.assign_smarty_interface.php 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/lib/smarty/internals/core.assign_smarty_interface.php 2008-12-25 04:15:31 UTC (rev 212)
@@ -8,8 +8,8 @@
/**
* Smarty assign_smarty_interface core plugin
*
- * Type: core<br>
- * Name: assign_smarty_interface<br>
+ * Type: core
+ * Name: assign_smarty_interface
* Purpose: assign the $smarty interface variable
* @param array Format: null
* @param Smarty
Modified: trunk/lib/smarty/internals/core.display_debug_console.php
===================================================================
--- trunk/lib/smarty/internals/core.display_debug_console.php 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/lib/smarty/internals/core.display_debug_console.php 2008-12-25 04:15:31 UTC (rev 212)
@@ -8,8 +8,8 @@
/**
* Smarty debug_console function plugin
*
- * Type: core<br>
- * Name: display_debug_console<br>
+ * Type: core
+ * Name: display_debug_console
* Purpose: display the javascript debug console window
* @param array Format: null
* @param Smarty
Modified: trunk/lib/smarty/plugins/block.textformat.php
===================================================================
--- trunk/lib/smarty/plugins/block.textformat.php 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/lib/smarty/plugins/block.textformat.php 2008-12-25 04:15:31 UTC (rev 212)
@@ -8,10 +8,10 @@
/**
* Smarty {textformat}{/textformat} block plugin
*
- * Type: block function<br>
- * Name: textformat<br>
+ * Type: block function
+ * Name: textformat
* Purpose: format text a certain way with preset styles
- * or custom wrap/indent settings<br>
+ * or custom wrap/indent settings
* @link http://smarty.php.net/manual/en/language.function.textformat.php {textformat}
* (Smarty online manual)
* @param array
Modified: trunk/lib/smarty/plugins/block.tr.php
===================================================================
--- trunk/lib/smarty/plugins/block.tr.php 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/lib/smarty/plugins/block.tr.php 2008-12-25 04:15:31 UTC (rev 212)
@@ -9,8 +9,8 @@
/**
* Smarty {tr} block plugin
*
- * Type: block<br>
- * Name: tr<br>
+ * Type: block
+ * Name: tr
* Purpose: Translate contained text with a user defined function "translate"
* @author Alessandro Briosi
* @param array
Modified: trunk/lib/smarty/plugins/compiler.assign.php
===================================================================
--- trunk/lib/smarty/plugins/compiler.assign.php 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/lib/smarty/plugins/compiler.assign.php 2008-12-25 04:15:31 UTC (rev 212)
@@ -8,8 +8,8 @@
/**
* Smarty {assign} compiler function plugin
*
- * Type: compiler function<br>
- * Name: assign<br>
+ * Type: compiler function
+ * Name: assign
* Purpose: assign a value to a template variable
* @link http://smarty.php.net/manual/en/language.custom.functions.php#LANGUAGE.FUNCTION.ASSIGN {assign}
* (Smarty online manual)
Modified: trunk/lib/smarty/plugins/function.assign_debug_info.php
===================================================================
--- trunk/lib/smarty/plugins/function.assign_debug_info.php 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/lib/smarty/plugins/function.assign_debug_info.php 2008-12-25 04:15:31 UTC (rev 212)
@@ -8,9 +8,9 @@
/**
* Smarty {assign_debug_info} function plugin
*
- * Type: function<br>
- * Name: assign_debug_info<br>
- * Purpose: assign debug info to the template<br>
+ * Type: function
+ * Name: assign_debug_info
+ * Purpose: assign debug info to the template
* @author Monte Ohrt <monte at ohrt dot com>
* @param array unused in this plugin, this plugin uses {@link Smarty::$_config},
* {@link Smarty::$_tpl_vars} and {@link Smarty::$_smarty_debug_info}
Modified: trunk/lib/smarty/plugins/function.config_load.php
===================================================================
--- trunk/lib/smarty/plugins/function.config_load.php 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/lib/smarty/plugins/function.config_load.php 2008-12-25 04:15:31 UTC (rev 212)
@@ -8,8 +8,8 @@
/**
* Smarty {config_load} function plugin
*
- * Type: function<br>
- * Name: config_load<br>
+ * Type: function
+ * Name: config_load
* Purpose: load config file vars
* @link http://smarty.php.net/manual/en/language.function.config.load.php {config_load}
* (Smarty online manual)
Modified: trunk/lib/smarty/plugins/function.counter.php
===================================================================
--- trunk/lib/smarty/plugins/function.counter.php 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/lib/smarty/plugins/function.counter.php 2008-12-25 04:15:31 UTC (rev 212)
@@ -9,8 +9,8 @@
/**
* Smarty {counter} function plugin
*
- * Type: function<br>
- * Name: counter<br>
+ * Type: function
+ * Name: counter
* Purpose: print out a counter value
* @author Monte Ohrt <monte at ohrt dot com>
* @link http://smarty.php.net/manual/en/language.function.counter.php {counter}
Modified: trunk/lib/smarty/plugins/function.cycle.php
===================================================================
--- trunk/lib/smarty/plugins/function.cycle.php 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/lib/smarty/plugins/function.cycle.php 2008-12-25 04:15:31 UTC (rev 212)
@@ -8,10 +8,10 @@
/**
* Smarty {cycle} function plugin
*
- * Type: function<br>
- * Name: cycle<br>
- * Date: May 3, 2002<br>
- * Purpose: cycle through given values<br>
+ * Type: function
+ * Name: cycle
+ * Date: May 3, 2002
+ * Purpose: cycle through given values
* Input:
* - name = name of cycle (optional)
* - values = comma separated list of values to cycle,
@@ -24,7 +24,7 @@
* - assign = boolean, assigns to template var instead of
* printed.
*
- * Examples:<br>
+ * Examples:
* <pre>
* {cycle values="#eeeeee,#d0d0d0d"}
* {cycle name=row values="one,two,three" reset=true}
Modified: trunk/lib/smarty/plugins/function.debug.php
===================================================================
--- trunk/lib/smarty/plugins/function.debug.php 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/lib/smarty/plugins/function.debug.php 2008-12-25 04:15:31 UTC (rev 212)
@@ -9,9 +9,9 @@
/**
* Smarty {debug} function plugin
*
- * Type: function<br>
- * Name: debug<br>
- * Date: July 1, 2002<br>
+ * Type: function
+ * Name: debug
+ * Date: July 1, 2002
* Purpose: popup debug window
* @link http://smarty.php.net/manual/en/language.function.debug.php {debug}
* (Smarty online manual)
Modified: trunk/lib/smarty/plugins/function.eval.php
===================================================================
--- trunk/lib/smarty/plugins/function.eval.php 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/lib/smarty/plugins/function.eval.php 2008-12-25 04:15:31 UTC (rev 212)
@@ -9,9 +9,9 @@
/**
* Smarty {eval} function plugin
*
- * Type: function<br>
- * Name: eval<br>
- * Purpose: evaluate a template variable as a template<br>
+ * Type: function
+ * Name: eval
+ * Purpose: evaluate a template variable as a template
* @link http://smarty.php.net/manual/en/language.function.eval.php {eval}
* (Smarty online manual)
* @author Monte Ohrt <monte at ohrt dot com>
Modified: trunk/lib/smarty/plugins/function.fetch.php
===================================================================
--- trunk/lib/smarty/plugins/function.fetch.php 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/lib/smarty/plugins/function.fetch.php 2008-12-25 04:15:31 UTC (rev 212)
@@ -9,8 +9,8 @@
/**
* Smarty {fetch} plugin
*
- * Type: function<br>
- * Name: fetch<br>
+ * Type: function
+ * Name: fetch
* Purpose: fetch file, web or ftp data and display results
* @link http://smarty.php.net/manual/en/language.function.fetch.php {fetch}
* (Smarty online manual)
Modified: trunk/lib/smarty/plugins/function.html_checkboxes.php
===================================================================
--- trunk/lib/smarty/plugins/function.html_checkboxes.php 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/lib/smarty/plugins/function.html_checkboxes.php 2008-12-25 04:15:31 UTC (rev 212)
@@ -9,17 +9,17 @@
/**
* Smarty {html_checkboxes} function plugin
*
- * File: function.html_checkboxes.php<br>
- * Type: function<br>
- * Name: html_checkboxes<br>
- * Date: 24.Feb.2003<br>
- * Purpose: Prints out a list of checkbox input types<br>
- * Input:<br>
+ * File: function.html_checkboxes.php
+ * Type: function
+ * Name: html_checkboxes
+ * Date: 24.Feb.2003
+ * Purpose: Prints out a list of checkbox input types
+ * Input:
* - name (optional) - string default "checkbox"
* - values (required) - array
* - options (optional) - associative array
* - checked (optional) - array default not set
- * - separator (optional) - ie <br> or
+ * - separator (optional) - ie <br> or (possibly <br />)
* - output (optional) - the output next to each checkbox
* - assign (optional) - assign the output as an array to this variable
* Examples:
Modified: trunk/lib/smarty/plugins/function.html_image.php
===================================================================
--- trunk/lib/smarty/plugins/function.html_image.php 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/lib/smarty/plugins/function.html_image.php 2008-12-25 04:15:31 UTC (rev 212)
@@ -9,11 +9,11 @@
/**
* Smarty {html_image} function plugin
*
- * Type: function<br>
- * Name: html_image<br>
- * Date: Feb 24, 2003<br>
- * Purpose: format HTML tags for the image<br>
- * Input:<br>
+ * Type: function
+ * Name: html_image
+ * Date: Feb 24, 2003
+ * Purpose: format HTML tags for the image
+ * Input:
* - file = file (and path) of image (required)
* - height = image height (optional, default actual height)
* - width = image width (optional, default actual width)
Modified: trunk/lib/smarty/plugins/function.html_options.php
===================================================================
--- trunk/lib/smarty/plugins/function.html_options.php 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/lib/smarty/plugins/function.html_options.php 2008-12-25 04:15:31 UTC (rev 212)
@@ -9,9 +9,9 @@
/**
* Smarty {html_options} function plugin
*
- * Type: function<br>
- * Name: html_options<br>
- * Input:<br>
+ * Type: function
+ * Name: html_options
+ * Input:
* - name (optional) - string default "select"
* - values (required if no options supplied) - array
* - options (required if no values supplied) - associative array
Modified: trunk/lib/smarty/plugins/function.html_radios.php
===================================================================
--- trunk/lib/smarty/plugins/function.html_radios.php 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/lib/smarty/plugins/function.html_radios.php 2008-12-25 04:15:31 UTC (rev 212)
@@ -9,17 +9,17 @@
/**
* Smarty {html_radios} function plugin
*
- * File: function.html_radios.php<br>
- * Type: function<br>
- * Name: html_radios<br>
- * Date: 24.Feb.2003<br>
- * Purpose: Prints out a list of radio input types<br>
- * Input:<br>
+ * File: function.html_radios.php
+ * Type: function
+ * Name: html_radios
+ * Date: 24.Feb.2003
+ * Purpose: Prints out a list of radio input types
+ * Input:
* - name (optional) - string default "radio"
* - values (required) - array
* - options (optional) - associative array
* - checked (optional) - array default not set
- * - separator (optional) - ie <br> or
+ * - separator (optional) - ie <br> or (possibly <br />)
* - output (optional) - the output next to each radio button
* - assign (optional) - assign the output as an array to this variable
* Examples:
Modified: trunk/lib/smarty/plugins/function.html_select_date.php
===================================================================
--- trunk/lib/smarty/plugins/function.html_select_date.php 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/lib/smarty/plugins/function.html_select_date.php 2008-12-25 04:15:31 UTC (rev 212)
@@ -8,11 +8,11 @@
/**
* Smarty {html_select_date} plugin
*
- * Type: function<br>
- * Name: html_select_date<br>
+ * Type: function
+ * Name: html_select_date
* Purpose: Prints the dropdowns for date selection.
*
- * ChangeLog:<br>
+ * ChangeLog:
* - 1.0 initial release
* - 1.1 added support for +/- N syntax for begin
* and end year values. (Monte)
Modified: trunk/lib/smarty/plugins/function.html_select_time.php
===================================================================
--- trunk/lib/smarty/plugins/function.html_select_time.php 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/lib/smarty/plugins/function.html_select_time.php 2008-12-25 04:15:31 UTC (rev 212)
@@ -9,8 +9,8 @@
/**
* Smarty {html_select_time} function plugin
*
- * Type: function<br>
- * Name: html_select_time<br>
+ * Type: function
+ * Name: html_select_time
* Purpose: Prints the dropdowns for time selection
* @link http://smarty.php.net/manual/en/language.function.html.select.time.php {html_select_time}
* (Smarty online manual)
Modified: trunk/lib/smarty/plugins/function.html_table.php
===================================================================
--- trunk/lib/smarty/plugins/function.html_table.php 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/lib/smarty/plugins/function.html_table.php 2008-12-25 04:15:31 UTC (rev 212)
@@ -9,11 +9,11 @@
/**
* Smarty {html_table} function plugin
*
- * Type: function<br>
- * Name: html_table<br>
- * Date: Feb 17, 2003<br>
- * Purpose: make an html table from an array of data<br>
- * Input:<br>
+ * Type: function
+ * Name: html_table
+ * Date: Feb 17, 2003
+ * Purpose: make an html table from an array of data
+ * Input:
* - loop = array to loop through
* - cols = number of columns, comma separated list of column names
* or array of column names
Modified: trunk/lib/smarty/plugins/function.mailto.php
===================================================================
--- trunk/lib/smarty/plugins/function.mailto.php 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/lib/smarty/plugins/function.mailto.php 2008-12-25 04:15:31 UTC (rev 212)
@@ -9,12 +9,12 @@
/**
* Smarty {mailto} function plugin
*
- * Type: function<br>
- * Name: mailto<br>
+ * Type: function
+ * Name: mailto
* Date: May 21, 2002
* Purpose: automate mailto address link creation, and optionally
- * encode them.<br>
- * Input:<br>
+ * encode them.
+ * Input:
* - address = e-mail address
* - text = (optional) text to display, default is address
* - encode = (optional) can be one of:
Modified: trunk/lib/smarty/plugins/function.math.php
===================================================================
--- trunk/lib/smarty/plugins/function.math.php 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/lib/smarty/plugins/function.math.php 2008-12-25 04:15:31 UTC (rev 212)
@@ -9,9 +9,9 @@
/**
* Smarty {math} function plugin
*
- * Type: function<br>
- * Name: math<br>
- * Purpose: handle math computations in template<br>
+ * Type: function
+ * Name: math
+ * Purpose: handle math computations in template
* @link http://smarty.php.net/manual/en/language.function.math.php {math}
* (Smarty online manual)
* @author Monte Ohrt <monte at ohrt dot com>
Modified: trunk/lib/smarty/plugins/function.popup.php
===================================================================
--- trunk/lib/smarty/plugins/function.popup.php 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/lib/smarty/plugins/function.popup.php 2008-12-25 04:15:31 UTC (rev 212)
@@ -9,8 +9,8 @@
/**
* Smarty {popup} function plugin
*
- * Type: function<br>
- * Name: popup<br>
+ * Type: function
+ * Name: popup
* Purpose: make text pop up in windows via overlib
* @link http://smarty.php.net/manual/en/language.function.popup.php {popup}
* (Smarty online manual)
Modified: trunk/lib/smarty/plugins/function.popup_init.php
===================================================================
--- trunk/lib/smarty/plugins/function.popup_init.php 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/lib/smarty/plugins/function.popup_init.php 2008-12-25 04:15:31 UTC (rev 212)
@@ -9,8 +9,8 @@
/**
* Smarty {popup_init} function plugin
*
- * Type: function<br>
- * Name: popup_init<br>
+ * Type: function
+ * Name: popup_init
* Purpose: initialize overlib
* @link http://smarty.php.net/manual/en/language.function.popup.init.php {popup_init}
* (Smarty online manual)
Modified: trunk/lib/smarty/plugins/function.tpl.php
===================================================================
--- trunk/lib/smarty/plugins/function.tpl.php 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/lib/smarty/plugins/function.tpl.php 2008-12-25 04:15:31 UTC (rev 212)
@@ -9,9 +9,9 @@
/**
* Smarty {tpl} function plugin
*
- * Type: function<br>
- * Name: tpl<br>
- * Input:<br>
+ * Type: function
+ * Name: tpl
+ * Input:
* - file (required) - string containing template sub file
* Purpose: Returns a file from the template folder, if it does not exsist
* it returns a file from the default template
Modified: trunk/lib/smarty/plugins/modifier.capitalize.php
===================================================================
--- trunk/lib/smarty/plugins/modifier.capitalize.php 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/lib/smarty/plugins/modifier.capitalize.php 2008-12-25 04:15:31 UTC (rev 212)
@@ -9,8 +9,8 @@
/**
* Smarty capitalize modifier plugin
*
- * Type: modifier<br>
- * Name: capitalize<br>
+ * Type: modifier
+ * Name: capitalize
* Purpose: capitalize words in the string
* @link http://smarty.php.net/manual/en/language.modifiers.php#LANGUAGE.MODIFIER.CAPITALIZE
* capitalize (Smarty online manual)
Modified: trunk/lib/smarty/plugins/modifier.cat.php
===================================================================
--- trunk/lib/smarty/plugins/modifier.cat.php 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/lib/smarty/plugins/modifier.cat.php 2008-12-25 04:15:31 UTC (rev 212)
@@ -9,8 +9,8 @@
/**
* Smarty cat modifier plugin
*
- * Type: modifier<br>
- * Name: cat<br>
+ * Type: modifier
+ * Name: cat
* Date: Feb 24, 2003
* Purpose: catenate a value to a variable
* Input: string to catenate
Modified: trunk/lib/smarty/plugins/modifier.count_characters.php
===================================================================
--- trunk/lib/smarty/plugins/modifier.count_characters.php 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/lib/smarty/plugins/modifier.count_characters.php 2008-12-25 04:15:31 UTC (rev 212)
@@ -9,8 +9,8 @@
/**
* Smarty count_characters modifier plugin
*
- * Type: modifier<br>
- * Name: count_characteres<br>
+ * Type: modifier
+ * Name: count_characteres
* Purpose: count the number of characters in a text
* @link http://smarty.php.net/manual/en/language.modifier.count.characters.php
* count_characters (Smarty online manual)
Modified: trunk/lib/smarty/plugins/modifier.count_paragraphs.php
===================================================================
--- trunk/lib/smarty/plugins/modifier.count_paragraphs.php 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/lib/smarty/plugins/modifier.count_paragraphs.php 2008-12-25 04:15:31 UTC (rev 212)
@@ -9,8 +9,8 @@
/**
* Smarty count_paragraphs modifier plugin
*
- * Type: modifier<br>
- * Name: count_paragraphs<br>
+ * Type: modifier
+ * Name: count_paragraphs
* Purpose: count the number of paragraphs in a text
* @link http://smarty.php.net/manual/en/language.modifier.count.paragraphs.php
* count_paragraphs (Smarty online manual)
Modified: trunk/lib/smarty/plugins/modifier.count_sentences.php
===================================================================
--- trunk/lib/smarty/plugins/modifier.count_sentences.php 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/lib/smarty/plugins/modifier.count_sentences.php 2008-12-25 04:15:31 UTC (rev 212)
@@ -9,7 +9,7 @@
/**
* Smarty count_sentences modifier plugin
*
- * Type: modifier<br>
+ * Type: modifier
* Name: count_sentences
* Purpose: count the number of sentences in a text
* @link http://smarty.php.net/manual/en/language.modifier.count.paragraphs.php
Modified: trunk/lib/smarty/plugins/modifier.count_words.php
===================================================================
--- trunk/lib/smarty/plugins/modifier.count_words.php 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/lib/smarty/plugins/modifier.count_words.php 2008-12-25 04:15:31 UTC (rev 212)
@@ -9,8 +9,8 @@
/**
* Smarty count_words modifier plugin
*
- * Type: modifier<br>
- * Name: count_words<br>
+ * Type: modifier
+ * Name: count_words
* Purpose: count the number of words in a text
* @link http://smarty.php.net/manual/en/language.modifier.count.words.php
* count_words (Smarty online manual)
Modified: trunk/lib/smarty/plugins/modifier.date_format.php
===================================================================
--- trunk/lib/smarty/plugins/modifier.date_format.php 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/lib/smarty/plugins/modifier.date_format.php 2008-12-25 04:15:31 UTC (rev 212)
@@ -12,10 +12,10 @@
/**
* Smarty date_format modifier plugin
*
- * Type: modifier<br>
- * Name: date_format<br>
- * Purpose: format datestamps via strftime<br>
- * Input:<br>
+ * Type: modifier
+ * Name: date_format
+ * Purpose: format datestamps via strftime
+ * Input:
* - string: input date string
* - format: strftime format for output
* - default_date: default date if $string is empty
Modified: trunk/lib/smarty/plugins/modifier.debug_print_var.php
===================================================================
--- trunk/lib/smarty/plugins/modifier.debug_print_var.php 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/lib/smarty/plugins/modifier.debug_print_var.php 2008-12-25 04:15:31 UTC (rev 212)
@@ -9,8 +9,8 @@
/**
* Smarty debug_print_var modifier plugin
*
- * Type: modifier<br>
- * Name: debug_print_var<br>
+ * Type: modifier
+ * Name: debug_print_var
* Purpose: formats variable contents for display in the console
* @link http://smarty.php.net/manual/en/language.modifier.debug.print.var.php
* debug_print_var (Smarty online manual)
@@ -32,7 +32,7 @@
case 'array' :
$results = '<b>Array (' . count($var) . ')</b>';
foreach ($var as $curr_key => $curr_val) {
- $results .= '<br>' . str_repeat(' ', $depth * 2)
+ $results .= '<br />' . str_repeat(' ', $depth * 2)
. '<b>' . strtr($curr_key, $_replace) . '</b> => '
. smarty_modifier_debug_print_var($curr_val, ++$depth, $length);
$depth--;
@@ -42,7 +42,7 @@
$object_vars = get_object_vars($var);
$results = '<b>' . get_class($var) . ' Object (' . count($object_vars) . ')</b>';
foreach ($object_vars as $curr_key => $curr_val) {
- $results .= '<br>' . str_repeat(' ', $depth * 2)
+ $results .= '<br />' . str_repeat(' ', $depth * 2)
. '<b> ->' . strtr($curr_key, $_replace) . '</b> = '
. smarty_modifier_debug_print_var($curr_val, ++$depth, $length);
$depth--;
Modified: trunk/lib/smarty/plugins/modifier.default.php
===================================================================
--- trunk/lib/smarty/plugins/modifier.default.php 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/lib/smarty/plugins/modifier.default.php 2008-12-25 04:15:31 UTC (rev 212)
@@ -9,8 +9,8 @@
/**
* Smarty default modifier plugin
*
- * Type: modifier<br>
- * Name: default<br>
+ * Type: modifier
+ * Name: default
* Purpose: designate default value for empty variables
* @link http://smarty.php.net/manual/en/language.modifier.default.php
* default (Smarty online manual)
Modified: trunk/lib/smarty/plugins/modifier.escape.php
===================================================================
--- trunk/lib/smarty/plugins/modifier.escape.php 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/lib/smarty/plugins/modifier.escape.php 2008-12-25 04:15:31 UTC (rev 212)
@@ -9,8 +9,8 @@
/**
* Smarty escape modifier plugin
*
- * Type: modifier<br>
- * Name: escape<br>
+ * Type: modifier
+ * Name: escape
* Purpose: Escape the string according to escapement type
* @link http://smarty.php.net/manual/en/language.modifier.escape.php
* escape (Smarty online manual)
Modified: trunk/lib/smarty/plugins/modifier.indent.php
===================================================================
--- trunk/lib/smarty/plugins/modifier.indent.php 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/lib/smarty/plugins/modifier.indent.php 2008-12-25 04:15:31 UTC (rev 212)
@@ -9,8 +9,8 @@
/**
* Smarty indent modifier plugin
*
- * Type: modifier<br>
- * Name: indent<br>
+ * Type: modifier
+ * Name: indent
* Purpose: indent lines of text
* @link http://smarty.php.net/manual/en/language.modifier.indent.php
* indent (Smarty online manual)
Modified: trunk/lib/smarty/plugins/modifier.lower.php
===================================================================
--- trunk/lib/smarty/plugins/modifier.lower.php 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/lib/smarty/plugins/modifier.lower.php 2008-12-25 04:15:31 UTC (rev 212)
@@ -9,8 +9,8 @@
/**
* Smarty lower modifier plugin
*
- * Type: modifier<br>
- * Name: lower<br>
+ * Type: modifier
+ * Name: lower
* Purpose: convert string to lowercase
* @link http://smarty.php.net/manual/en/language.modifier.lower.php
* lower (Smarty online manual)
Modified: trunk/lib/smarty/plugins/modifier.nl2br.php
===================================================================
--- trunk/lib/smarty/plugins/modifier.nl2br.php 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/lib/smarty/plugins/modifier.nl2br.php 2008-12-25 04:15:31 UTC (rev 212)
@@ -9,11 +9,11 @@
/**
* Smarty plugin
*
- * Type: modifier<br>
- * Name: nl2br<br>
+ * Type: modifier
+ * Name: nl2br
* Date: Feb 26, 2003
* Purpose: convert \r\n, \r or \n to <<br>>
- * Input:<br>
+ * Input:
* - contents = contents to replace
* - preceed_test = if true, includes preceeding break tags
* in replacement
Modified: trunk/lib/smarty/plugins/modifier.regex_replace.php
===================================================================
--- trunk/lib/smarty/plugins/modifier.regex_replace.php 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/lib/smarty/plugins/modifier.regex_replace.php 2008-12-25 04:15:31 UTC (rev 212)
@@ -9,8 +9,8 @@
/**
* Smarty regex_replace modifier plugin
*
- * Type: modifier<br>
- * Name: regex_replace<br>
+ * Type: modifier
+ * Name: regex_replace
* Purpose: regular expression search/replace
* @link http://smarty.php.net/manual/en/language.modifier.regex.replace.php
* regex_replace (Smarty online manual)
Modified: trunk/lib/smarty/plugins/modifier.replace.php
===================================================================
--- trunk/lib/smarty/plugins/modifier.replace.php 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/lib/smarty/plugins/modifier.replace.php 2008-12-25 04:15:31 UTC (rev 212)
@@ -9,8 +9,8 @@
/**
* Smarty replace modifier plugin
*
- * Type: modifier<br>
- * Name: replace<br>
+ * Type: modifier
+ * Name: replace
* Purpose: simple search/replace
* @link http://smarty.php.net/manual/en/language.modifier.replace.php
* replace (Smarty online manual)
Modified: trunk/lib/smarty/plugins/modifier.spacify.php
===================================================================
--- trunk/lib/smarty/plugins/modifier.spacify.php 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/lib/smarty/plugins/modifier.spacify.php 2008-12-25 04:15:31 UTC (rev 212)
@@ -9,8 +9,8 @@
/**
* Smarty spacify modifier plugin
*
- * Type: modifier<br>
- * Name: spacify<br>
+ * Type: modifier
+ * Name: spacify
* Purpose: add spaces between characters in a string
* @link http://smarty.php.net/manual/en/language.modifier.spacify.php
* spacify (Smarty online manual)
Modified: trunk/lib/smarty/plugins/modifier.string_format.php
===================================================================
--- trunk/lib/smarty/plugins/modifier.string_format.php 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/lib/smarty/plugins/modifier.string_format.php 2008-12-25 04:15:31 UTC (rev 212)
@@ -9,8 +9,8 @@
/**
* Smarty string_format modifier plugin
*
- * Type: modifier<br>
- * Name: string_format<br>
+ * Type: modifier
+ * Name: string_format
* Purpose: format strings via sprintf
* @link http://smarty.php.net/manual/en/language.modifier.string.format.php
* string_format (Smarty online manual)
Modified: trunk/lib/smarty/plugins/modifier.strip.php
===================================================================
--- trunk/lib/smarty/plugins/modifier.strip.php 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/lib/smarty/plugins/modifier.strip.php 2008-12-25 04:15:31 UTC (rev 212)
@@ -9,10 +9,10 @@
/**
* Smarty strip modifier plugin
*
- * Type: modifier<br>
- * Name: strip<br>
+ * Type: modifier
+ * Name: strip
* Purpose: Replace all repeated spaces, newlines, tabs
- * with a single space or supplied replacement string.<br>
+ * with a single space or supplied replacement string.
* Example: {$var|strip} {$var|strip:" "}
* Date: September 25th, 2002
* @link http://smarty.php.net/manual/en/language.modifier.strip.php
Modified: trunk/lib/smarty/plugins/modifier.strip_tags.php
===================================================================
--- trunk/lib/smarty/plugins/modifier.strip_tags.php 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/lib/smarty/plugins/modifier.strip_tags.php 2008-12-25 04:15:31 UTC (rev 212)
@@ -9,8 +9,8 @@
/**
* Smarty strip_tags modifier plugin
*
- * Type: modifier<br>
- * Name: strip_tags<br>
+ * Type: modifier
+ * Name: strip_tags
* Purpose: strip html tags from text
* @link http://smarty.php.net/manual/en/language.modifier.strip.tags.php
* strip_tags (Smarty online manual)
Modified: trunk/lib/smarty/plugins/modifier.truncate.php
===================================================================
--- trunk/lib/smarty/plugins/modifier.truncate.php 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/lib/smarty/plugins/modifier.truncate.php 2008-12-25 04:15:31 UTC (rev 212)
@@ -9,8 +9,8 @@
/**
* Smarty truncate modifier plugin
*
- * Type: modifier<br>
- * Name: truncate<br>
+ * Type: modifier
+ * Name: truncate
* Purpose: Truncate a string to a certain length if necessary,
* optionally splitting in the middle of a word, and
* appending the $etc string or inserting $etc into the middle.
Modified: trunk/lib/smarty/plugins/modifier.upper.php
===================================================================
--- trunk/lib/smarty/plugins/modifier.upper.php 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/lib/smarty/plugins/modifier.upper.php 2008-12-25 04:15:31 UTC (rev 212)
@@ -9,8 +9,8 @@
/**
* Smarty upper modifier plugin
*
- * Type: modifier<br>
- * Name: upper<br>
+ * Type: modifier
+ * Name: upper
* Purpose: convert string to uppercase
* @link http://smarty.php.net/manual/en/language.modifier.upper.php
* upper (Smarty online manual)
Modified: trunk/lib/smarty/plugins/modifier.wordwrap.php
===================================================================
--- trunk/lib/smarty/plugins/modifier.wordwrap.php 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/lib/smarty/plugins/modifier.wordwrap.php 2008-12-25 04:15:31 UTC (rev 212)
@@ -9,8 +9,8 @@
/**
* Smarty wordwrap modifier plugin
*
- * Type: modifier<br>
- * Name: wordwrap<br>
+ * Type: modifier
+ * Name: wordwrap
* Purpose: wrap a string of text at a given length
* @link http://smarty.php.net/manual/en/language.modifier.wordwrap.php
* wordwrap (Smarty online manual)
Modified: trunk/lib/smarty/plugins/outputfilter.trimwhitespace.php
===================================================================
--- trunk/lib/smarty/plugins/outputfilter.trimwhitespace.php 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/lib/smarty/plugins/outputfilter.trimwhitespace.php 2008-12-25 04:15:31 UTC (rev 212)
@@ -8,14 +8,14 @@
/**
* Smarty trimwhitespace outputfilter plugin
*
- * File: outputfilter.trimwhitespace.php<br>
- * Type: outputfilter<br>
- * Name: trimwhitespace<br>
- * Date: Jan 25, 2003<br>
+ * File: outputfilter.trimwhitespace.php
+ * Type: outputfilter
+ * Name: trimwhitespace
+ * Date: Jan 25, 2003
* Purpose: trim leading white space and blank lines from
* template source after it gets interpreted, cleaning
* up code and saving bandwidth. Does not affect
- * <<PRE>></PRE> and <SCRIPT></SCRIPT> blocks.<br>
+ * <<PRE>></PRE> and <SCRIPT></SCRIPT> blocks.
* Install: Drop into the plugin directory, call
* <code>$smarty->load_filter('output','trimwhitespace');</code>
* from application.
Modified: trunk/lib/smarty/plugins/shared.escape_special_chars.php
===================================================================
--- trunk/lib/smarty/plugins/shared.escape_special_chars.php 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/lib/smarty/plugins/shared.escape_special_chars.php 2008-12-25 04:15:31 UTC (rev 212)
@@ -9,7 +9,7 @@
/**
* escape_special_chars common function
*
- * Function: smarty_function_escape_special_chars<br>
+ * Function: smarty_function_escape_special_chars
* Purpose: used by other smarty functions to escape
* special chars except for already escaped ones
* @author Monte Ohrt <monte at ohrt dot com>
Modified: trunk/lib/smarty/plugins/shared.make_timestamp.php
===================================================================
--- trunk/lib/smarty/plugins/shared.make_timestamp.php 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/lib/smarty/plugins/shared.make_timestamp.php 2008-12-25 04:15:31 UTC (rev 212)
@@ -7,7 +7,7 @@
/**
- * Function: smarty_make_timestamp<br>
+ * Function: smarty_make_timestamp
* Purpose: used by other smarty functions to make a timestamp
* from a string.
* @author Monte Ohrt <monte at ohrt dot com>
Modified: trunk/templates/default/banned.tpl
===================================================================
--- trunk/templates/default/banned.tpl 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/templates/default/banned.tpl 2008-12-25 04:15:31 UTC (rev 212)
@@ -1,3 +1,3 @@
-{tr}Your IP has been blocked!{/tr}<br>
-{tr}You cannot use this site.{/tr}<br>
+{tr}Your IP has been blocked!{/tr}<br />
+{tr}You cannot use this site.{/tr}<br />
{tr}If you think this is a misconfiguration please send an email to the site owner{/tr}
\ No newline at end of file
Modified: trunk/templates/default/index.tpl
===================================================================
--- trunk/templates/default/index.tpl 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/templates/default/index.tpl 2008-12-25 04:15:31 UTC (rev 212)
@@ -31,7 +31,7 @@
</div> <!-- header end -->
<!-- menu -->
<!-- content -->
-<div id="wrapper"><br>
+<div id="wrapper"><br />
{foreach from=$user.messages item=m}
<div id="message">{$m}</div>
{/foreach}
@@ -42,7 +42,7 @@
{$page.content}
</div> <!-- content end -->
</div> <!-- wrapper -->
-<br> <br>
+<br /> <br />
<!-- footer -->
<div id="footer">{$site.footer}</div>
</body>
Modified: trunk/templates/default/locale/it/LC_MESSAGES/template.po
===================================================================
--- trunk/templates/default/locale/it/LC_MESSAGES/template.po 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/templates/default/locale/it/LC_MESSAGES/template.po 2008-12-25 04:15:31 UTC (rev 212)
@@ -361,8 +361,8 @@
msgstr "Modulo Authenticazione"
#: ../../../default.c:278
-msgid "(LDAP Configuration needs to be done<br> by hand for now)"
-msgstr "(La configurazione del modulo LDAP <br>deve essere fatta a mano per ora)"
+msgid "(LDAP Configuration needs to be done<br /> by hand for now)"
+msgstr "(La configurazione del modulo LDAP <br />deve essere fatta a mano per ora)"
#: ../../../default.c:284
msgid "Site title"
Modified: trunk/templates/default/locale/it.inc.php
===================================================================
--- trunk/templates/default/locale/it.inc.php 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/templates/default/locale/it.inc.php 2008-12-25 04:15:31 UTC (rev 212)
@@ -64,7 +64,7 @@
$tr["Select one"] = "Seleziona";
$tr["Default language"] = "Lingua Predefinita";
$tr["Authentication module"] = "Modulo Authenticazione";
-$tr["(LDAP Configuration needs to be done<br> by hand for now)"] = "(La configurazione del modulo LDAP <br>deve essere fatta a mano per ora)";
+$tr["(LDAP Configuration needs to be done<br /> by hand for now)"] = "(La configurazione del modulo LDAP <br />deve essere fatta a mano per ora)";
$tr["Site title"] = "Titolo Sito";
$tr["WebMaster E-mail"] = "E-Mail WebMaster";
$tr["Site E-mail"] = "E-mail Sito";
Modified: trunk/templates/default/modules/admin/admin.tpl
===================================================================
--- trunk/templates/default/modules/admin/admin.tpl 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/templates/default/modules/admin/admin.tpl 2008-12-25 04:15:31 UTC (rev 212)
@@ -1,19 +1,19 @@
{tr}Here you can administer{/tr}:<hr>
<table border="0" width="400" height="300">
<tr>
- <td align="center"><a href="{$script}?action=adminsettings"><img src="{tpl file=/img/admin/settings.png}" border="0" ><br>{tr}Settings{/tr}</a></td>
- <td align="center"><a href="{$script}?action=adminplugins"><img src="{tpl file=/img/admin/plugins.png}" border="0" align="center"><br>{tr}Plugins{/tr}</a></td>
- <td align="center"><a href="{$script}?action=adminfiles"><img src="{tpl file=/img/admin/files.png}" border="0" ><br>{tr}Files{/tr}</a></td>
+ <td align="center"><a href="{$script}?action=adminsettings"><img src="{tpl file=/img/admin/settings.png}" border="0" ><br />{tr}Settings{/tr}</a></td>
+ <td align="center"><a href="{$script}?action=adminplugins"><img src="{tpl file=/img/admin/plugins.png}" border="0" align="center"><br />{tr}Plugins{/tr}</a></td>
+ <td align="center"><a href="{$script}?action=adminfiles"><img src="{tpl file=/img/admin/files.png}" border="0" ><br />{tr}Files{/tr}</a></td>
</tr>
<tr>
- <td align="center"><a href="{$script}?action=adminusers"><img src="{tpl file=/img/admin/users.png}" border="0" ><br>{tr}Users{/tr}</a></td>
- <td align="center"><a href="{$script}?action=admingroups"><img src="{tpl file=/img/admin/groups.png}" border="0" ><br>{tr}Groups{/tr}</a></td>
- <td align="center"><a href="{$script}?action=adminrights"><img src="{tpl file=/img/admin/rights.png}" border="0" ><br>{tr}Rights{/tr}</a></td>
+ <td align="center"><a href="{$script}?action=adminusers"><img src="{tpl file=/img/admin/users.png}" border="0" ><br />{tr}Users{/tr}</a></td>
+ <td align="center"><a href="{$script}?action=admingroups"><img src="{tpl file=/img/admin/groups.png}" border="0" ><br />{tr}Groups{/tr}</a></td>
+ <td align="center"><a href="{$script}?action=adminrights"><img src="{tpl file=/img/admin/rights.png}" border="0" ><br />{tr}Rights{/tr}</a></td>
</tr>
<tr>
- <td align="center"><a href="{$script}?action=adminlangs"><img src="{tpl file=/img/admin/langs.png}" border="0" ><br>{tr}Languages{/tr}</a></td>
- <td align="center"><a href="{$script}?action=adminbanned"><img src="{tpl file=/img/admin/banned.png}" border="0" ><br>{tr}Banned IPs{/tr}</a></td>
- <td align="center"><a href="{$script}?action=adminlogs"><img src="{tpl file=/img/admin/log.png}" border="0" ><br>{tr}Logs / Statistics{/tr}</td>
+ <td align="center"><a href="{$script}?action=adminlangs"><img src="{tpl file=/img/admin/langs.png}" border="0" ><br />{tr}Languages{/tr}</a></td>
+ <td align="center"><a href="{$script}?action=adminbanned"><img src="{tpl file=/img/admin/banned.png}" border="0" ><br />{tr}Banned IPs{/tr}</a></td>
+ <td align="center"><a href="{$script}?action=adminlogs"><img src="{tpl file=/img/admin/log.png}" border="0" ><br />{tr}Logs / Statistics{/tr}</td>
</tr>
{$plugins}
</table>
\ No newline at end of file
Modified: trunk/templates/default/modules/admin/adminmenu.tpl
===================================================================
--- trunk/templates/default/modules/admin/adminmenu.tpl 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/templates/default/modules/admin/adminmenu.tpl 2008-12-25 04:15:31 UTC (rev 212)
@@ -11,4 +11,4 @@
<li style="border-right: 0px;"><a href="{$script}?action=adminlogs">{tr}Logs{/tr}</a></li>
</ul>
</div>
-<br>
\ No newline at end of file
+<br />
\ No newline at end of file
Modified: trunk/templates/default/modules/admin/banned.tpl
===================================================================
--- trunk/templates/default/modules/admin/banned.tpl 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/templates/default/modules/admin/banned.tpl 2008-12-25 04:15:31 UTC (rev 212)
@@ -8,7 +8,7 @@
<a href="{$script}?action={$action}&step=2"><img src="{tpl file=/img/admin/tadd.png}"></a>
<a href="{$script}?action={$action}&step={$step}" onclick="return multidelete();"><img src="{tpl file=/img/admin/tdelete.png}"></a>
</div>
-<br>
+<br />
{if $pages>2}
<center>{section name=page loop=$pages start=1 max=20}
{if $pagen==$smarty.section.page.index}
@@ -19,7 +19,7 @@
{/section} </center>
{/if}
-<br>
+<br />
<form name="deleteform" id="deleteform" action="{$script}" method="POST">
<input type="hidden" name="action" value="{$action}">
<input type="hidden" name="step" value="5">
Modified: trunk/templates/default/modules/admin/files.tpl
===================================================================
--- trunk/templates/default/modules/admin/files.tpl 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/templates/default/modules/admin/files.tpl 2008-12-25 04:15:31 UTC (rev 212)
@@ -8,7 +8,7 @@
<div id="toolbar">
<a href="{$script}?action={$action}&step={$step}" onclick="return multidelete();"><img src="{tpl file=/img/admin/tdelete.png}"></a>
</div>
-<br>
+<br />
{if $pages>2}
<center>{section name=page loop=$pages start=1 max=20}
{if $pagen==$smarty.section.page.index}
@@ -19,7 +19,7 @@
{/section} </center>
{/if}
-<br>
+<br />
<form name="deleteform" id="deleteform" action="{$script}" method="POST">
<input type="hidden" name="action" value="{$action}">
<input type="hidden" name="step" value="4">
Modified: trunk/templates/default/modules/admin/filesmenu.tpl
===================================================================
--- trunk/templates/default/modules/admin/filesmenu.tpl 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/templates/default/modules/admin/filesmenu.tpl 2008-12-25 04:15:31 UTC (rev 212)
@@ -4,4 +4,4 @@
<li style="border-right: 0px;"><a href="{$script}?action=adminmaintenance">{tr}Maintenance{/tr}</a></li>
</ul>
</div>
-<br>
\ No newline at end of file
+<br />
\ No newline at end of file
Modified: trunk/templates/default/modules/admin/groups.tpl
===================================================================
--- trunk/templates/default/modules/admin/groups.tpl 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/templates/default/modules/admin/groups.tpl 2008-12-25 04:15:31 UTC (rev 212)
@@ -8,7 +8,7 @@
<a href="{$script}?action={$action}&step=2&id={$u.id}"><img src="{tpl file=/img/admin/tadd_group.png}"></a>
<a href="{$script}?action={$action}&step={$step}" onclick="return multidelete();"><img src="{tpl file=/img/admin/tdelete_group.png}"></a>
</div>
-<br>
+<br />
<form name="deleteform" id="deleteform" action="{$script}" method="POST">
<input type="hidden" name="action" value="{$action}">
<input type="hidden" name="step" value="5">
Modified: trunk/templates/default/modules/admin/langs.tpl
===================================================================
--- trunk/templates/default/modules/admin/langs.tpl 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/templates/default/modules/admin/langs.tpl 2008-12-25 04:15:31 UTC (rev 212)
@@ -8,7 +8,7 @@
<a href="{$script}?action={$action}&step=2&id={$u.id}"><img src="{tpl file=/img/admin/tadd.png}"></a>
<a href="{$script}?action={$action}&step={$step}" onclick="return multidelete();"><img src="{tpl file=/img/admin/tdelete.png}"></a>
</div>
-<br>
+<br />
<form name="deleteform" id="deleteform" action="{$script}" method="POST">
<input type="hidden" name="action" value="{$action}">
<input type="hidden" name="step" value="6">
Modified: trunk/templates/default/modules/admin/logs.tpl
===================================================================
--- trunk/templates/default/modules/admin/logs.tpl 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/templates/default/modules/admin/logs.tpl 2008-12-25 04:15:31 UTC (rev 212)
@@ -1,5 +1,5 @@
{include file="default/modules/admin/adminmenu.tpl"}
-<br>
+<br />
<div id="filter">
<form action="index.php" id="filterform" method="GET">
<input type="hidden" name="action" value="{$action}">
@@ -25,7 +25,7 @@
{/section} </center>
{/if}
-<br>
+<br />
<table border="0" id="dbtable">
<tr>
<th width="100">{tr}Date{/tr}</th>
Modified: trunk/templates/default/modules/admin/maintenance.tpl
===================================================================
--- trunk/templates/default/modules/admin/maintenance.tpl 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/templates/default/modules/admin/maintenance.tpl 2008-12-25 04:15:31 UTC (rev 212)
@@ -4,8 +4,8 @@
<fieldset style="width: 100%">
<legend>{tr}Maintenence{/tr}</legend>
<p align="left">
-{tr}This options let you delete files based on some options.{/tr}<br>
-{tr}Please select one or more criteria for file deletion{/tr}<br>
+{tr}This options let you delete files based on some options.{/tr}<br />
+{tr}Please select one or more criteria for file deletion{/tr}<br />
<form action="{$script}" method="POST">
<input type="hidden" name="action" value="{$action}">
<input type="hidden" name="step" value="2">
@@ -29,7 +29,7 @@
</form>
</fieldset>
{if $expireplugin=='yes'}
-<br><hr><br>
+<br /><hr><br />
<fieldset style="text-align: left; width: 100%;">
<legend>{tr}Expiration plugin{/tr}</legend>
<p align="left">
Modified: trunk/templates/default/modules/admin/maintenancerun.tpl
===================================================================
--- trunk/templates/default/modules/admin/maintenancerun.tpl 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/templates/default/modules/admin/maintenancerun.tpl 2008-12-25 04:15:31 UTC (rev 212)
@@ -2,7 +2,7 @@
{include file="default/modules/admin/filesmenu.tpl"}
<h2>{tr}Deletion Result{/tr}</h2>
-<br>
+<br />
<div id="message">
{if count($files)>0}
{if isset($deleted)}
@@ -26,5 +26,5 @@
{tr}No files matched the criteria{/tr}
{/if}
</div>
-<br>
+<br />
<a href="{$script}?action={$action}"><< {tr}Back to Maintenance{/tr}</a>
\ No newline at end of file
Modified: trunk/templates/default/modules/admin/options.tpl
===================================================================
--- trunk/templates/default/modules/admin/options.tpl 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/templates/default/modules/admin/options.tpl 2008-12-25 04:15:31 UTC (rev 212)
@@ -14,7 +14,7 @@
</select>
</td></tr>
<tr><td>{tr}Default language{/tr}:</td><td><input type="text" name="defaultlang" value="{$config.defaultlang}"></td></tr>
-<tr><td>{tr}Authentication module{/tr}:<br>{tr}(LDAP Configuration needs to be done<br> by hand for now){/tr}</td><td>
+<tr><td>{tr}Authentication module{/tr}:<br />{tr}(LDAP Configuration needs to be done<br /> by hand for now){/tr}</td><td>
<select name="auth">
<option value="">-- {tr}Select one{/tr} --</option>
{foreach from=$auth item=t}
@@ -37,7 +37,7 @@
</td></tr>
<tr><td>{tr}Template Footer{/tr}:</td><td><textarea name="sitefooter" cols="50" rows="5">{$config.site.footer}</textarea></td></tr>
<tr><td>{tr}Maximum upload size (in MB){/tr}:</td><td><input type="text" name="max_upload_size" value="{$config.max_upload_size}"></td></tr>
-<tr><td>{tr}Maximum download time (in Min){/tr}<br>{tr}0 disables it{/tr}:</td><td><input type="text" name="max_download_time" value="{$config.max_download_time}"></td></tr>
+<tr><td>{tr}Maximum download time (in Min){/tr}<br /w>{tr}0 disables it{/tr}:</td><td><input type="text" name="max_download_time" value="{$config.max_download_time}"></td></tr>
<tr><td>{tr}Max num. of file uploaded per upload{/tr}:</td><td><input type="text" name="multiupload" value="{$config.multiupload}"></td></tr>
<tr><td>{tr}Upload tracking method{/tr}:</td><td><select name="progress">
{foreach from=$progress item=t}
Modified: trunk/templates/default/modules/admin/pluginoptiondetail.tpl
===================================================================
--- trunk/templates/default/modules/admin/pluginoptiondetail.tpl 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/templates/default/modules/admin/pluginoptiondetail.tpl 2008-12-25 04:15:31 UTC (rev 212)
@@ -8,7 +8,7 @@
<a href="{$script}?action={$action}&step=3&id={$pluginname}"><img src="{tpl file=/img/admin/tadd.png}"></a>
<img src="{tpl file=/img/admin/tdelete.png}">
</div>
-<br>
+<br />
<table border="0" id="dbtable">
<tr>
<th width="150">{tr}Group{/tr}</th>
Modified: trunk/templates/default/modules/admin/pluginoptions.tpl
===================================================================
--- trunk/templates/default/modules/admin/pluginoptions.tpl 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/templates/default/modules/admin/pluginoptions.tpl 2008-12-25 04:15:31 UTC (rev 212)
@@ -1,5 +1,5 @@
{include file="default/modules/admin/adminmenu.tpl"}
-<br>
+<br />
<table border="0" id="dbtable">
<tr>
<th width="100">Plugin</th>
Modified: trunk/templates/default/modules/admin/plugins.tpl
===================================================================
--- trunk/templates/default/modules/admin/plugins.tpl 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/templates/default/modules/admin/plugins.tpl 2008-12-25 04:15:31 UTC (rev 212)
@@ -1,10 +1,10 @@
{include file="default/modules/admin/adminmenu.tpl"}
-<br>
+<br />
<center>
<table border="0" width="400" height="200">
<tr>
- <td align="center"><a href="{$script}?action=adminpluginsacl"><img src="{tpl file=/img/admin/plugins.png}" border="0" ><br>{tr}Plugins ACL{/tr}</a></td>
- <td align="center"><a href="{$script}?action=adminpluginsoptions"><img src="{tpl file=/img/admin/plugins.png}" border="0" align="center"><br>{tr}Plugins Options{/tr}</a></td>
+ <td align="center"><a href="{$script}?action=adminpluginsacl"><img src="{tpl file=/img/admin/plugins.png}" border="0" ><br />{tr}Plugins ACL{/tr}</a></td>
+ <td align="center"><a href="{$script}?action=adminpluginsoptions"><img src="{tpl file=/img/admin/plugins.png}" border="0" align="center"><br />{tr}Plugins Options{/tr}</a></td>
</tr>
{$plugins}
</table>
Modified: trunk/templates/default/modules/admin/pluginsacl.tpl
===================================================================
--- trunk/templates/default/modules/admin/pluginsacl.tpl 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/templates/default/modules/admin/pluginsacl.tpl 2008-12-25 04:15:31 UTC (rev 212)
@@ -8,7 +8,7 @@
<a href="{$script}?action={$action}&step=2&id={$u.id}"><img src="{tpl file=/img/admin/plugins.png}"></a>
<a href="{$script}?action={$action}&step={$step}" onclick="return multidelete();"><img src="{tpl file=/img/admin/tdelete.png}"></a>
</div>
-<br>
+<br />
<form name="deleteform" id="deleteform" action="{$script}" method="POST">
<input type="hidden" name="action" value="{$action}">
<input type="hidden" name="step" value="5">
Modified: trunk/templates/default/modules/admin/rightedit.tpl
===================================================================
--- trunk/templates/default/modules/admin/rightedit.tpl 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/templates/default/modules/admin/rightedit.tpl 2008-12-25 04:15:31 UTC (rev 212)
@@ -1,8 +1,8 @@
{include file="default/modules/admin/adminmenu.tpl"}
-<div id="message" style="color: #ffaa00; font-size: 11pt; font-weight: bold;">{tr}PLEASE BE CAREFULL WHEN MODIFING THE RIGHTS!{/tr}</div><br>
+<div id="message" style="color: #ffaa00; font-size: 11pt; font-weight: bold;">{tr}PLEASE BE CAREFULL WHEN MODIFING THE RIGHTS!{/tr}</div><br />
<div id="message" style="color: #000000; font-size: 12pt; font-weight: bold;">{tr}Editing rights for group{/tr}:
{if $group=='*'}[{tr}Any{/tr}]{else}{$group}{/if}</div>
-<br>
+<br />
<form action="{$script}" method="POST">
<input type="hidden" name="action" value="{$action}">
<input type="hidden" name="step" value="{$step}">
@@ -38,7 +38,7 @@
</tr>
{/foreach}
{/foreach}
-</table><br>
+</table><br />
<input type="button" class="submit" value="{tr}<< Back{/tr}" onclick="document.location='{$script}?action={$action}';">
<input type="submit" class="submit" value="{tr}Apply changes{/tr}">
</form>
Modified: trunk/templates/default/modules/admin/rights.tpl
===================================================================
--- trunk/templates/default/modules/admin/rights.tpl 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/templates/default/modules/admin/rights.tpl 2008-12-25 04:15:31 UTC (rev 212)
@@ -1,5 +1,5 @@
{include file="default/modules/admin/adminmenu.tpl"}
-<br>
+<br />
<table border="0" id="dbtable">
<tr>
<th width="100">{tr}Gruppo{/tr}</th>
Modified: trunk/templates/default/modules/admin/settings.tpl
===================================================================
--- trunk/templates/default/modules/admin/settings.tpl 2008-12-14 23:42:28 UTC (rev 211)
+++ trunk/templates/default/modules/admin/settings.tpl 2008-12-25 04:15:31 UTC (rev 212)
@@ -1,7 +1,7 @@
{include file="default/modules/admin/adminmenu.tpl"}
{include file="default/modules/admin/settingsmenu.tpl"}
-{tr}This are the configured settings for a review{/tr}:<br>
+{tr}This are the configured settings for a review{/tr}:<br />
<table border="1">
{foreach from=$config item=c key=k}
@@ -18,4 +18,4 @@
</td></tr>
{/foreach}
</table>
-<br/><br/><br/><br/>
\ No newline at end of file
+<br /><br /><br /><br />
\ No newline at end of file
Modified: trunk/templates/default/modules/admin/settingsmenu.tpl
===================================================...
[truncated message content] |
|
From: <rl...@us...> - 2008-12-14 23:42:31
|
Revision: 211
http://openupload.svn.sourceforge.net/openupload/?rev=211&view=rev
Author: rlelek
Date: 2008-12-14 23:42:28 +0000 (Sun, 14 Dec 2008)
Log Message:
-----------
-- Update Website to Web 2.0 Style --
Part of Open Upload Web 2.0 HTML Code
Modified Paths:
--------------
web/css/main.css
web/index.html
Modified: web/css/main.css
===================================================================
--- web/css/main.css 2008-12-14 23:31:07 UTC (rev 210)
+++ web/css/main.css 2008-12-14 23:42:28 UTC (rev 211)
@@ -1,26 +1,37 @@
body {
- font-family: Helvetica, Arial;
- font-size: 11pt;
- background-color: #fdfdfd;
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 12px;
+ color: #FFFFFF;
+ text-align: left;
+ background-color: #4d4d4d;
}
img {
- border: 0px;
+ border: 0px none;
}
-#header {
- height: 115px;
- border-bottom: 2px solid #ee7625;
+a {
+ font-size: 12px;
+ color: #FFFFFF;
+ font-weight: bold;
+ font-size: 12px;
+ text-decoration: none;
}
-#logo {
- float: left;
+a:visited {
+ color: #FFFFFF;
+ font-weight: bold;
+ font-size: 12px;
+ text-decoration: none;
}
-#sponsors {
- float: right;
+a:hover {
+ color: #000000;
+ font-weight: bold;
+ font-size: 12px;
+ text-decoration: none;
}
-#container {
- clear: both;
-}
+
+/*
+
#menu {
float: left;
width: 200px;
@@ -36,61 +47,64 @@
padding-bottom: 20px;
margin-top: 0px;
}
-#content {
- margin-left: 200px;
- margin-top: 20px;
+*/
+
+#header_top {
+ white-space: nowrap;
+ position: relative;
+ top: -8px;
}
-.section {
- margin-bottom: 30px;
+
+#header_bottom {
+ white-space: nowrap;
+ position: relative;
+ top: -14px;
}
-.title {
- font-size: 14pt;
- font-weight: bold;
- margin-bottom: 2px;
- border-bottom: 1px solid #ee7625;
+
+#wrapper {
+ width: 1024px;
+ margin: 0px auto;
+ padding: 0px;
+ text-align: left;
}
-.text {
- text-align: justify;
+
+#content {
+ border: 0px none;
+ margin-left: 47px;
+ margin-top: -20px;
+ padding-top: 15px;
+ padding-bottom: 10px;
+ padding-left: 32px;
+ text-align: left;
+ background-color: #565656;
+ width: 894px;
}
-#footer {
- position: fixed;
- bottom: 0px;
- height: 20px;
- width: 100%;
- font-weight: bold;
- font-size: 9pt;
- border-top: 1px solid #000000;
- text-align: center;
- background-color: #ffffff;
+
+h1.title {
+ width: 893px;
+ margin-left: -33px;
+ padding-left: 33px;
+ font-size: 14pt;
+ font-weight: bold;
+ margin-bottom: 2px;
+ background-image: url(../img/bar.jpg);
+ background-repeat: repeat-y;
}
-#footer a {
- color: #3161cf;
- font-weight: bold;
- font-size: 9pt;
- text-decoration: none;
+
+.code {
+ font-family : monospace;
+ padding-left: 50px;
}
-#footer a:visited {
- color: #3161cf;
- font-weight: bold;
- font-size: 9pt;
- text-decoration: none;
+
+#footer {
+ width: 926px;
+ height: 30px;
+ background-image: url(../img/footer.jpg);
+ background-repeat: no-repeat;
+ text-align: center;
+ margin-left: 48px;
}
-a {
- font-size: 11pt;
- color: #3161cf;
- font-weight: bold;
- font-size: 11pt;
- text-decoration: none;
-}
-a:visited {
- color: #3161cf;
- font-weight: bold;
- font-size: 11pt;
- text-decoration: none;
-}
-a:hover {
- color: #4c8dff;
- font-weight: bold;
- font-size: 11pt;
- text-decoration: none;
+
+#badges {
+ text-align: center;
}
\ No newline at end of file
Modified: web/index.html
===================================================================
--- web/index.html 2008-12-14 23:31:07 UTC (rev 210)
+++ web/index.html 2008-12-14 23:42:28 UTC (rev 211)
@@ -1,104 +1,109 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
-<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
-<meta name="keywords" content="Open Upload, Rapidshare clone, personal web file server" />
-<meta name="description" content="Open Upload is a PHP application to create a private / public file download server" />
-<meta name="robots" content="index, follow" />
-<meta name="rating" content="general" />
-<meta name="revisit-after" content="15 days" />
-<title>Welcome to Open Upload Project web site</title>
-<link rel="stylesheet" type="text/css" href="css/main.css" />
-<script type="text/javascript" src="js/main.js"></script>
+ <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
+ <meta name="keywords" content="Open Upload, Rapidshare clone, personal web file server" />
+ <meta name="description" content="Open Upload is a PHP application to create a private / public file download server" />
+ <meta name="robots" content="index, follow" />
+ <meta name="rating" content="general" />
+ <meta name="revisit-after" content="15 days" />
+ <title>Welcome to Open Upload Project web site</title>
+ <link rel="stylesheet" type="text/css" href="css/main.css" />
+ <script type="text/javascript" src="js/main.js"></script>
</head>
+<body>
-<body>
- <div id="header">
- <div id="logo">
- <img src="./img/openupload.jpg" alt="" />
- </div>
- <div id="sponsors">
- <a href="http://sourceforge.net">
- <img src="http://sflogo.sourceforge.net/sflogo.php?group_id=242018&type=5" width="210" height="62" alt="SourceForge.net Logo" />
- </a>
- </div>
- </div>
- <div id="container">
- <div id="menu">
- <ul>
- <li><a href="http://sourceforge.net/project/screenshots.php?group_id=242018&ssid=92531" rel="external">Screenshots</a></li>
- <li><a href="http://sourceforge.net/project/showfiles.php?group_id=242018" rel="external">Download</a></li>
- <li><a href="http://sourceforge.net/mail/?group_id=242018" rel="external">Mailing lists</a></li>
- <li><a href="http://openupload.svn.sourceforge.net/viewvc/openupload/" rel="external">SVN Code</a></li>
- <li><a href="http://www.sourceforge.net/projects/openupload">SF.Net Project Page</a></li>
- </ul>
- </div>
- <!-- menu -->
- <div id="content">
- <div class="section">
- <div class="title">Welcome to Open Upload Project</div>
- <div class="text">Open Upload is a PHP application to create a private / public file download server.</div>
- </div>
- <div class="section">
- <div class="title">Features</div>
- <div class="text">Open Upload has been designed to be extendable<br />This are the main features:
- <ul>
- <li>Access control by groups</li>
- <li>Template driven</li>
- <li>Internationalization</li>
- <li>Multiple db backends (MySQL, Postgress, Flat file)</li>
- <li>Multiple user authentication backends (database, LDAP, AD)</li>
- <li>Plugins to control file upload/download limits / functionality (password protection, captcha, email, banned IP,...)</li>
- </ul>
- </div>
- <!-- text -->
- </div>
- <!-- section -->
- <div class="section">
- <div class="title">Screenshots</div>
- <div class="text">See the screenshots to have an idea on what Open Upload is. <a href="http://sourceforge.net/project/screenshots.php?group_id=242018&ssid=92531" rel="external">Screenshots</a></div>
- </div>
- <div class="section">
- <div class="title">Download</div>
- <div class="text">2008.12.06<br /><b>New bug fix, last 0.3 planned release.</b><br />Release 0.3c Click <a rel="external" href="http://sourceforge.net/project/showfiles.php?group_id=242018&package_id=294593&release_id=645359">here</a> to download.</div>
- </div>
- <br />
- <div class="text">2008.12.12<br /><b>Development version 0.4beta1</b><br />
- I have now released a BETA version of the upcoming 0.4 release<br />
- Major changes are:
- <ul>
- <li>New logo</li>
- <li>Setup script, and settings administration</li>
- <li>Rights administration improvements</li>
- <li>Plugin options now can be configured</li>
- <li>PostgreSQL support</li>
- <li>Upload progress</li>
- <li>Multiple file upload/download</li>
- <li>Added plugins: Maximum File Size Limit per Group, Compression, Expiration date</li>
- </ul>
- As it's a beta it needs further testing...<br />
- Click <a rel="external" href="http://sourceforge.net/project/showfiles.php?group_id=242018&package_id=294593&release_id=646780">here</a> to download.
- </div>
- <br />
- <div class="section">
- <div class="title">Mailing lists</div>
- <div class="text">
- There are 2 mailing lists now. 1 for svn commit tracking, and one open for general discussion.<br />
- To report bugs, get support, or simply let me know how you are using this software <a href="https://lists.sourceforge.net/lists/listinfo/openupload-devel">click here</a>.
- </div>
- </div>
- <div class="section">
- <div class="title">SVN</div>
- <div class="text">
- To checkout svn:<br />
- <pre>svn co https://openupload.svn.sourceforge.net/svnroot/openupload/trunk openupload</pre>
- For further info: <a href="http://sourceforge.net/svn/?group_id=242018">Project Page</a>
- </div>
- </div>
- </div> <!-- content -->
- </div> <!-- container -->
- <div id="footer">
- <a href="http://openupload.sf.net">Open Upload</a> - Created by Alessandro Briosi © 2008
- </div>
+<div id="wrapper">
+
+ <div id="header">
+ <div id="header_top">
+ <a href="https://sourceforge.net/donate/index.php?group_id=242018" rel="external"><img src="img/1.jpg" alt="" /></a><img src="img/3.jpg" alt="" /><a href="https://sourceforge.net/tracker/?group_id=242018" rel="external"><img src="img/4.jpg" alt="" /></a>
+ </div>
+ <div id="header_bottom">
+ <a href="http://sourceforge.net/project/screenshots.php?group_id=242018&ssid=92531" rel="external"><img src="img/2.jpg" alt="" /></a><img src="img/5.jpg" alt="" /><a href="https://sourceforge.net/project/showfiles.php?group_id=242018" rel="external"><img src="img/6.jpg" alt="" /></a>
+ </div>
+ </div>
+
+ <div id="content">
+ <div class="section">
+ <h1 class="title">Welcome to the Open Upload Project</h1>
+ <p>Open Upload is a PHP application to create a private / public file download server similar to MegaUpload or RapidShare.</p>
+ </div>
+ <div class="section">
+ <h1 class="title">Features</h1>
+ <p>Open Upload has been designed to be extendable<br />These are the main features:</p>
+ <ul>
+ <li>Access control by groups</li>
+ <li>Template Driven</li>
+ <li>Internationalization</li>
+ <li>Vast Database Support (MySQL, Postgress, Flat file)</li>
+ <li>Multiple user authentication backends (database, LDAP, AD)</li>
+ <li>Plugins to control file upload/download limits / functionality (password protection, captcha, email, banned IP,...)</li>
+ </ul>
+ </div>
+ <div class="section">
+ <h1 class="title">Download</h1>
+ <p>
+ 2008.12.06<br />
+ <b>New bug fix, last 0.3 planned release.</b><br />
+ Release 0.3c Click <a href="http://sourceforge.net/project/showfiles.php?group_id=242018&package_id=294593&release_id=645359" rel="external">here</a> to download.
+ </p>
+ <div class="text">
+ 2008.12.12<br /><b>Development version 0.4beta1</b><br />
+ I have now released a BETA version of the upcoming 0.4 release<br />
+ Major changes are:
+ <ul>
+ <li>New logo</li>
+ <li>Setup script, and settings administration</li>
+ <li>Rights administration improvements</li>
+ <li>Plugin options now can be configured</li>
+ <li>PostgreSQL support</li>
+ <li>Upload progress</li>
+ <li>Multiple file upload/download</li>
+ <li>Added plugins: Maximum File Size Limit per Group, Compression, Expiration date</li>
+ </ul>
+ As it's a beta it needs further testing...<br />
+ Click <a href="http://sourceforge.net/project/showfiles.php?group_id=242018&package_id=294593&release_id=646780" rel="external">here</a> to download.
+ </div>
+ </div>
+ <div class="section">
+ <h1 class="title">Mailing Lists</h1>
+ <p>
+ There are 2 mailing lists now. 1 for svn commit tracking, and one open for general discussion.<br />
+ To report bugs, get support, or simply let me know how you are using this software <a href="https://lists.sourceforge.net/lists/listinfo/openupload-devel" rel="external">click here</a>.
+ </p>
+ </div>
+ <div class="section">
+ <h1 class="title">SVN</h1>
+ <p>To checkout SVN of Open Upload, type the following command into a terminal or similar program:</p>
+ <p class="code">svn co https://openupload.svn.sourceforge.net/svnroot/openupload/trunk openupload</p>
+ <p>For more information on SVN, see the <a href="http://sourceforge.net/svn/?group_id=242018" rel="external">Open Upload SVN Page</a></p>
+ </div>
+ <div class="section">
+ <h1 class="title">Want to Learn More?</h1>
+ <p>For more information on Open Upload, see our <a href="https://sourceforge.net/projects/openupload/" rel="external">Project Page</a></p>
+ </div>
+ </div>
+
+ <div id="footer">
+ © 2008 <a href="http://openupload.sourceforge.net">The Open Upload Project</a>
+ </div>
+
+ <div id="badges">
+ <p>
+ <a href="http://validator.w3.org/check?uri=referer" rel="external">
+ <img src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0 Strict" height="31" width="88" />
+ </a>
+ <a href="http://jigsaw.w3.org/css-validator/check?uri=referer" rel="external">
+ <img src="http://jigsaw.w3.org/css-validator/images/vcss" width="88" height="31" alt="Valid CSS" />
+ </a>
+ <a href="http://sourceforge.net" rel="external">
+ <img src="http://sflogo.sourceforge.net/sflogo.php?group_id=242018&type=5" width="105" height="31" alt="SourceForge.net Logo" />
+ </a>
+ </p>
+ </div>
+
+</div>
+
</body>
</html>
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <rl...@us...> - 2008-12-14 23:31:10
|
Revision: 210
http://openupload.svn.sourceforge.net/openupload/?rev=210&view=rev
Author: rlelek
Date: 2008-12-14 23:31:07 +0000 (Sun, 14 Dec 2008)
Log Message:
-----------
-- Update Website to Web 2.0 Style --
Part of Open Upload Web 2.0 Website Header
Added Paths:
-----------
web/img/3.jpg
web/img/4.jpg
web/img/5.jpg
web/img/6.jpg
web/img/bar.jpg
web/img/footer.jpg
Added: web/img/3.jpg
===================================================================
(Binary files differ)
Property changes on: web/img/3.jpg
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: web/img/4.jpg
===================================================================
(Binary files differ)
Property changes on: web/img/4.jpg
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: web/img/5.jpg
===================================================================
(Binary files differ)
Property changes on: web/img/5.jpg
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: web/img/6.jpg
===================================================================
(Binary files differ)
Property changes on: web/img/6.jpg
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: web/img/bar.jpg
===================================================================
(Binary files differ)
Property changes on: web/img/bar.jpg
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: web/img/footer.jpg
===================================================================
(Binary files differ)
Property changes on: web/img/footer.jpg
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <rl...@us...> - 2008-12-14 23:30:33
|
Revision: 209
http://openupload.svn.sourceforge.net/openupload/?rev=209&view=rev
Author: rlelek
Date: 2008-12-14 23:30:30 +0000 (Sun, 14 Dec 2008)
Log Message:
-----------
-- Update Website to Web 2.0 Style --
Part of Open Upload Web 2.0 Website Header
Added Paths:
-----------
web/img/2.jpg
Added: web/img/2.jpg
===================================================================
(Binary files differ)
Property changes on: web/img/2.jpg
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <rl...@us...> - 2008-12-14 23:30:19
|
Revision: 208
http://openupload.svn.sourceforge.net/openupload/?rev=208&view=rev
Author: rlelek
Date: 2008-12-14 23:30:16 +0000 (Sun, 14 Dec 2008)
Log Message:
-----------
-- Update Website to Web 2.0 Style --
Part of Open Upload Web 2.0 Website Header
Added Paths:
-----------
web/img/1.jpg
Added: web/img/1.jpg
===================================================================
(Binary files differ)
Property changes on: web/img/1.jpg
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <rl...@us...> - 2008-12-14 03:28:56
|
Revision: 207
http://openupload.svn.sourceforge.net/openupload/?rev=207&view=rev
Author: rlelek
Date: 2008-12-14 03:28:52 +0000 (Sun, 14 Dec 2008)
Log Message:
-----------
-- Now XHTML 1.0 Strict Compliant --
Also added specific directories for JavaScript and CSS
The relative file names for the home page are:
- js/main.js
- css/main.css
Added Paths:
-----------
web/css/
web/css/main.css
Added: web/css/main.css
===================================================================
--- web/css/main.css (rev 0)
+++ web/css/main.css 2008-12-14 03:28:52 UTC (rev 207)
@@ -0,0 +1,96 @@
+body {
+ font-family: Helvetica, Arial;
+ font-size: 11pt;
+ background-color: #fdfdfd;
+}
+
+img {
+ border: 0px;
+}
+
+#header {
+ height: 115px;
+ border-bottom: 2px solid #ee7625;
+}
+#logo {
+ float: left;
+}
+#sponsors {
+ float: right;
+}
+#container {
+ clear: both;
+}
+#menu {
+ float: left;
+ width: 200px;
+}
+#menu ul {
+ margin-top: 0px;
+ list-style:none;
+ padding: 0px;
+}
+#menu li {
+ padding-right: 8px;
+ padding-left: 15px;
+ padding-bottom: 20px;
+ margin-top: 0px;
+}
+#content {
+ margin-left: 200px;
+ margin-top: 20px;
+}
+.section {
+ margin-bottom: 30px;
+}
+.title {
+ font-size: 14pt;
+ font-weight: bold;
+ margin-bottom: 2px;
+ border-bottom: 1px solid #ee7625;
+}
+.text {
+ text-align: justify;
+}
+#footer {
+ position: fixed;
+ bottom: 0px;
+ height: 20px;
+ width: 100%;
+ font-weight: bold;
+ font-size: 9pt;
+ border-top: 1px solid #000000;
+ text-align: center;
+ background-color: #ffffff;
+}
+#footer a {
+ color: #3161cf;
+ font-weight: bold;
+ font-size: 9pt;
+ text-decoration: none;
+}
+#footer a:visited {
+ color: #3161cf;
+ font-weight: bold;
+ font-size: 9pt;
+ text-decoration: none;
+}
+a {
+ font-size: 11pt;
+ color: #3161cf;
+ font-weight: bold;
+ font-size: 11pt;
+ text-decoration: none;
+}
+a:visited {
+ color: #3161cf;
+ font-weight: bold;
+ font-size: 11pt;
+ text-decoration: none;
+}
+a:hover {
+ color: #4c8dff;
+ font-weight: bold;
+ font-size: 11pt;
+ text-decoration: none;
+}
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <rl...@us...> - 2008-12-14 03:28:51
|
Revision: 206
http://openupload.svn.sourceforge.net/openupload/?rev=206&view=rev
Author: rlelek
Date: 2008-12-14 03:28:42 +0000 (Sun, 14 Dec 2008)
Log Message:
-----------
-- Now XHTML 1.0 Strict Compliant --
Also added specific directories for JavaScript and CSS
The relative file names for the home page are:
- js/main.js
- css/main.css
Added Paths:
-----------
web/js/
web/js/main.js
Added: web/js/main.js
===================================================================
--- web/js/main.js (rev 0)
+++ web/js/main.js 2008-12-14 03:28:42 UTC (rev 206)
@@ -0,0 +1,11 @@
+function externalLinks() {
+ if (!document.getElementsByTagName) return;
+ var anchors = document.getElementsByTagName("a");
+ for (var i=0; i<anchors.length; i++) {
+ var anchor = anchors[i];
+ if (anchor.getAttribute("href") &&
+ anchor.getAttribute("rel") == "external")
+ anchor.target = "_blank";
+ }
+}
+window.onload = externalLinks;
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <rl...@us...> - 2008-12-14 03:28:29
|
Revision: 205
http://openupload.svn.sourceforge.net/openupload/?rev=205&view=rev
Author: rlelek
Date: 2008-12-14 03:28:22 +0000 (Sun, 14 Dec 2008)
Log Message:
-----------
-- Now XHTML 1.0 Strict Compliant --
Also added specific directories for JavaScript and CSS
The relative file names for the home page are:
- js/main.js
- css/main.css
Modified Paths:
--------------
web/index.html
Modified: web/index.html
===================================================================
--- web/index.html 2008-12-13 20:06:02 UTC (rev 204)
+++ web/index.html 2008-12-14 03:28:22 UTC (rev 205)
@@ -1,180 +1,104 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
-<TITLE>Welcome to Open Upload Project web site</TITLE>
-<meta name="keywords" content="Open Upload, Rapidshare clone, personal web file server">
-<meta name="description" content="Open Upload is a PHP application to create a private / public file download server">
-<meta name="robots" content="index, follow">
-<meta name="rating" content="general">
-<meta name="revisit-after" content="15 days">
-<STYLE>
-body {
- font-family: Helvetica, Arial;
- font-size: 11pt;
- background-color: #fdfdfd;
-}
-#header {
- height: 115px;
- border-bottom: 2px solid #ee7625;
-}
-#logo {
- float: left;
-}
-#sponsors {
- float: right;
-}
-#container {
- clear: both;
-}
-#menu {
- float: left;
- width: 200px;
-}
-#menu ul {
- margin-top: 0px;
- list-style:none;
- padding: 0px;
-}
-#menu li {
- padding-right: 8px;
- padding-left: 15px;
- padding-bottom: 20px;
- margin-top: 0px;
-}
-#content {
- margin-left: 200px;
- margin-top: 20px;
-}
-#section {
- margin-bottom: 30px;
-}
-#title {
- font-size: 14pt;
- font-weight: bold;
- margin-bottom: 2px;
- border-bottom: 1px solid #ee7625;
-}
-#text {
- text-align: justify;
-}
-#footer {
- position: fixed;
- bottom: 0px;
- height: 20px;
- width: 100%;
- font-weight: bold;
- font-size: 9pt;
- border-top: 1px solid #000000;
- text-align: center;
- background-color: #ffffff;
-}
-#footer a {
- color: #3161cf;
- font-weight: bold;
- font-size: 9pt;
- text-decoration: none;
-}
-#footer a:visited {
- color: #3161cf;
- font-weight: bold;
- font-size: 9pt;
- text-decoration: none;
-}
-a {
- font-size: 11pt;
- color: #3161cf;
- font-weight: bold;
- font-size: 11pt;
- text-decoration: none;
-}
-a:visited {
- color: #3161cf;
- font-weight: bold;
- font-size: 11pt;
- text-decoration: none;
-}
-a:hover {
- color: #4c8dff;
- font-weight: bold;
- font-size: 11pt;
- text-decoration: none;
-}
-</STYLE>
+<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
+<meta name="keywords" content="Open Upload, Rapidshare clone, personal web file server" />
+<meta name="description" content="Open Upload is a PHP application to create a private / public file download server" />
+<meta name="robots" content="index, follow" />
+<meta name="rating" content="general" />
+<meta name="revisit-after" content="15 days" />
+<title>Welcome to Open Upload Project web site</title>
+<link rel="stylesheet" type="text/css" href="css/main.css" />
+<script type="text/javascript" src="js/main.js"></script>
</head>
-<BODY>
-<div id="header">
-<div id="logo"><img src="./img/openupload.jpg"></div>
-<div id="sponsors">
-<a href="http://sourceforge.net"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=242018&type=5" width="210" height="62" border="0" alt="SourceForge.net Logo" /></a>
-</div>
-</div>
-<div id="container">
-<div id="menu">
-<ul>
-<LI><a href=""><a href="http://sourceforge.net/project/screenshots.php?group_id=242018&ssid=92531" target="_new">Screenshots</a></LI>
-<LI><a href="http://sourceforge.net/project/showfiles.php?group_id=242018" target="_new">Download</a></LI>
-<LI><a href="http://sourceforge.net/mail/?group_id=242018" target="_new">Mailing lists</a></LI>
-<LI><a href="http://openupload.svn.sourceforge.net/viewvc/openupload/" target="_new">SVN Code</a></LI>
-<LI><a href="http://www.sourceforge.net/projects/openupload">SF.Net Project Page</a></LI>
-</ul>
-</div> <!-- menu -->
-<div id="content">
-<div id="section">
-<div id="title">Welcome to Open Upload Project</div>
-<div id="text">Open Upload is a PHP application to create a private / public file download server.</div>
-</div>
-<div id="section">
-<div id="title">Features</div>
-<div id="text">Open Upload has been designed to be extendable<br>This are the main features:
-<ul>
-<LI>Access control by groups</LI>
-<LI>Template driven</LI>
-<LI>Internationalization</LI>
-<LI>Multiple db backends (MySQL, Postgress, Flat file)</LI>
-<LI>Multiple user authentication backends (database, LDAP, AD)</LI>
-<LI>Plugins to control file upload/download limits / functionality (password protection, captcha, email, banned IP,...)</LI>
-</ul>
-</div> <!-- text -->
-</div> <!-- section -->
-<div id="section">
-<div id="title">Screenshots</div>
-<div id="text">See the screenshots to have an idea on what Open Upload is. <a href="http://sourceforge.net/project/screenshots.php?group_id=242018&ssid=92531" target="_new">Screenshots</a></div>
-</div>
-<div id="section">
-<div id="title">Download</div>
-<div id="text">2008.12.06<br><b>New bug fix, last 0.3 planned release.</b><br>Release 0.3c
-Click <a target="_new" href="http://sourceforge.net/project/showfiles.php?group_id=242018&package_id=294593&release_id=645359">here</a> to download.</div>
-<br>
-<div id="text">2008.12.12<br><b>Development version 0.4beta1</b><br>
-I have now released a BETA version of the upcoming 0.4 release<br>
-Major changes are:
-<UL>
- <LI>New logo</LI>
- <LI>Setup script, and settings administration</LI>
- <LI>Rights administration improvements</LI>
- <LI>Plugin options now can be configured</LI>
- <LI>PostgreSQL support</LI>
- <LI>Upload progress</LI>
- <LI>Multiple file upload/download</LI>
- <LI>Added plugins: Maximum File Size Limit per Group, Compression, Expiration date</LI>
-</UL>
-As it's a beta it needs further testing...<br>
-Click <a target="_new" href="http://sourceforge.net/project/showfiles.php?group_id=242018&package_id=294593&release_id=646780">here</a> to download.</div>
-<br>
-<div id="section">
-<div id="title">Mailing lists</div>
-<div id="text">There are 2 mailing lists now. 1 for svn commit tracking, and one open for general discussion.<br>
-To report bugs, get support, or simply let me know how you are using this software
-<a href="https://lists.sourceforge.net/lists/listinfo/openupload-devel">click here</a>.</div>
-</div>
-<div id="section">
-<div id="title">SVN</div>
-<div id="text">To checkout svn:<br>
-<pre>svn co https://openupload.svn.sourceforge.net/svnroot/openupload/trunk openupload</pre>
-For further info: <a href="http://sourceforge.net/svn/?group_id=242018">Project Page</a></div>
-</div>
-</div> <!-- content -->
-</div> <!-- container -->
-<div id="footer"><a href="http://openupload.sf.net">Open Upload</a> - Created by Alessandro Briosi © 2008</div>
-</BODY>
+
+<body>
+ <div id="header">
+ <div id="logo">
+ <img src="./img/openupload.jpg" alt="" />
+ </div>
+ <div id="sponsors">
+ <a href="http://sourceforge.net">
+ <img src="http://sflogo.sourceforge.net/sflogo.php?group_id=242018&type=5" width="210" height="62" alt="SourceForge.net Logo" />
+ </a>
+ </div>
+ </div>
+ <div id="container">
+ <div id="menu">
+ <ul>
+ <li><a href="http://sourceforge.net/project/screenshots.php?group_id=242018&ssid=92531" rel="external">Screenshots</a></li>
+ <li><a href="http://sourceforge.net/project/showfiles.php?group_id=242018" rel="external">Download</a></li>
+ <li><a href="http://sourceforge.net/mail/?group_id=242018" rel="external">Mailing lists</a></li>
+ <li><a href="http://openupload.svn.sourceforge.net/viewvc/openupload/" rel="external">SVN Code</a></li>
+ <li><a href="http://www.sourceforge.net/projects/openupload">SF.Net Project Page</a></li>
+ </ul>
+ </div>
+ <!-- menu -->
+ <div id="content">
+ <div class="section">
+ <div class="title">Welcome to Open Upload Project</div>
+ <div class="text">Open Upload is a PHP application to create a private / public file download server.</div>
+ </div>
+ <div class="section">
+ <div class="title">Features</div>
+ <div class="text">Open Upload has been designed to be extendable<br />This are the main features:
+ <ul>
+ <li>Access control by groups</li>
+ <li>Template driven</li>
+ <li>Internationalization</li>
+ <li>Multiple db backends (MySQL, Postgress, Flat file)</li>
+ <li>Multiple user authentication backends (database, LDAP, AD)</li>
+ <li>Plugins to control file upload/download limits / functionality (password protection, captcha, email, banned IP,...)</li>
+ </ul>
+ </div>
+ <!-- text -->
+ </div>
+ <!-- section -->
+ <div class="section">
+ <div class="title">Screenshots</div>
+ <div class="text">See the screenshots to have an idea on what Open Upload is. <a href="http://sourceforge.net/project/screenshots.php?group_id=242018&ssid=92531" rel="external">Screenshots</a></div>
+ </div>
+ <div class="section">
+ <div class="title">Download</div>
+ <div class="text">2008.12.06<br /><b>New bug fix, last 0.3 planned release.</b><br />Release 0.3c Click <a rel="external" href="http://sourceforge.net/project/showfiles.php?group_id=242018&package_id=294593&release_id=645359">here</a> to download.</div>
+ </div>
+ <br />
+ <div class="text">2008.12.12<br /><b>Development version 0.4beta1</b><br />
+ I have now released a BETA version of the upcoming 0.4 release<br />
+ Major changes are:
+ <ul>
+ <li>New logo</li>
+ <li>Setup script, and settings administration</li>
+ <li>Rights administration improvements</li>
+ <li>Plugin options now can be configured</li>
+ <li>PostgreSQL support</li>
+ <li>Upload progress</li>
+ <li>Multiple file upload/download</li>
+ <li>Added plugins: Maximum File Size Limit per Group, Compression, Expiration date</li>
+ </ul>
+ As it's a beta it needs further testing...<br />
+ Click <a rel="external" href="http://sourceforge.net/project/showfiles.php?group_id=242018&package_id=294593&release_id=646780">here</a> to download.
+ </div>
+ <br />
+ <div class="section">
+ <div class="title">Mailing lists</div>
+ <div class="text">
+ There are 2 mailing lists now. 1 for svn commit tracking, and one open for general discussion.<br />
+ To report bugs, get support, or simply let me know how you are using this software <a href="https://lists.sourceforge.net/lists/listinfo/openupload-devel">click here</a>.
+ </div>
+ </div>
+ <div class="section">
+ <div class="title">SVN</div>
+ <div class="text">
+ To checkout svn:<br />
+ <pre>svn co https://openupload.svn.sourceforge.net/svnroot/openupload/trunk openupload</pre>
+ For further info: <a href="http://sourceforge.net/svn/?group_id=242018">Project Page</a>
+ </div>
+ </div>
+ </div> <!-- content -->
+ </div> <!-- container -->
+ <div id="footer">
+ <a href="http://openupload.sf.net">Open Upload</a> - Created by Alessandro Briosi © 2008
+ </div>
+</body>
</html>
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <rl...@us...> - 2008-12-13 20:06:06
|
Revision: 204
http://openupload.svn.sourceforge.net/openupload/?rev=204&view=rev
Author: rlelek
Date: 2008-12-13 20:06:02 +0000 (Sat, 13 Dec 2008)
Log Message:
-----------
-- Minor Rewrite --
First test of my subversion use.
Rewrote <html> tag to:
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
in order to be in compliance with the also added DOCTYPE declaration for XHTML 1.0 Standard - Strict
Modified Paths:
--------------
web/index.html
Modified: web/index.html
===================================================================
--- web/index.html 2008-12-12 17:31:51 UTC (rev 203)
+++ web/index.html 2008-12-13 20:06:02 UTC (rev 204)
@@ -1,4 +1,5 @@
-<html>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<TITLE>Welcome to Open Upload Project web site</TITLE>
<meta name="keywords" content="Open Upload, Rapidshare clone, personal web file server">
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ts...@us...> - 2008-12-12 17:31:55
|
Revision: 203
http://openupload.svn.sourceforge.net/openupload/?rev=203&view=rev
Author: tsdogs
Date: 2008-12-12 17:31:51 +0000 (Fri, 12 Dec 2008)
Log Message:
-----------
update for 0.4beta1
Modified Paths:
--------------
web/index.html
Modified: web/index.html
===================================================================
--- web/index.html 2008-12-12 17:19:22 UTC (rev 202)
+++ web/index.html 2008-12-12 17:31:51 UTC (rev 203)
@@ -141,6 +141,9 @@
</div>
<div id="section">
<div id="title">Download</div>
+<div id="text">2008.12.06<br><b>New bug fix, last 0.3 planned release.</b><br>Release 0.3c
+Click <a target="_new" href="http://sourceforge.net/project/showfiles.php?group_id=242018&package_id=294593&release_id=645359">here</a> to download.</div>
+<br>
<div id="text">2008.12.12<br><b>Development version 0.4beta1</b><br>
I have now released a BETA version of the upcoming 0.4 release<br>
Major changes are:
@@ -155,21 +158,8 @@
<LI>Added plugins: Maximum File Size Limit per Group, Compression, Expiration date</LI>
</UL>
As it's a beta it needs further testing...<br>
-Click <a target="_new" href="http://sourceforge.net/project/showfiles.php?group_id=242018&package_id=294593&release_id=645359">here</a> to download.</div>
+Click <a target="_new" href="http://sourceforge.net/project/showfiles.php?group_id=242018&package_id=294593&release_id=646780">here</a> to download.</div>
<br>
-<div id="text">2008.12.06<br><b>New bug fix, last 0.3 planned release.</b><br>Release 0.3c
-Click <a target="_new" href="http://sourceforge.net/project/showfiles.php?group_id=242018&package_id=294593&release_id=645359">here</a> to download.</div>
-<br>
-<div id="title">Older Download versions (with bugs)</div>
-<div id="text">2008.11.07<br><b>New bug fix, this shuold be "stable".</b><br>Release 0.3b
-Click <a target="_new" href="http://sourceforge.net/project/showfiles.php?group_id=242018&package_id=294593&release_id=638845">here</a> to download.</div>
-<br>
-<div id="text">2008.11.03<br><b>As there were a couple of bugs I decided to release a bug fix version.</b><br>Release 0.3a
-Click <a target="_new" href="http://sourceforge.net/project/showfiles.php?group_id=242018&package_id=294593&release_id=636546">here</a> to download.</div>
-<br>
-<div id="text">2008.10.28<br>It ain't perfect but I think it's pretty usable.<br>Release 0.3 is out.
-Click <a target="_new" href="http://sourceforge.net/project/showfiles.php?group_id=242018&package_id=294593&release_id=636546">here</a> to download.</div>
-</div>
<div id="section">
<div id="title">Mailing lists</div>
<div id="text">There are 2 mailing lists now. 1 for svn commit tracking, and one open for general discussion.<br>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ts...@us...> - 2008-12-12 17:19:26
|
Revision: 202
http://openupload.svn.sourceforge.net/openupload/?rev=202&view=rev
Author: tsdogs
Date: 2008-12-12 17:19:22 +0000 (Fri, 12 Dec 2008)
Log Message:
-----------
update for 0.4beta1
Modified Paths:
--------------
web/img/openupload.jpg
web/index.html
Modified: web/img/openupload.jpg
===================================================================
(Binary files differ)
Modified: web/index.html
===================================================================
--- web/index.html 2008-12-12 16:41:06 UTC (rev 201)
+++ web/index.html 2008-12-12 17:19:22 UTC (rev 202)
@@ -10,6 +10,7 @@
body {
font-family: Helvetica, Arial;
font-size: 11pt;
+ background-color: #fdfdfd;
}
#header {
height: 115px;
@@ -140,6 +141,22 @@
</div>
<div id="section">
<div id="title">Download</div>
+<div id="text">2008.12.12<br><b>Development version 0.4beta1</b><br>
+I have now released a BETA version of the upcoming 0.4 release<br>
+Major changes are:
+<UL>
+ <LI>New logo</LI>
+ <LI>Setup script, and settings administration</LI>
+ <LI>Rights administration improvements</LI>
+ <LI>Plugin options now can be configured</LI>
+ <LI>PostgreSQL support</LI>
+ <LI>Upload progress</LI>
+ <LI>Multiple file upload/download</LI>
+ <LI>Added plugins: Maximum File Size Limit per Group, Compression, Expiration date</LI>
+</UL>
+As it's a beta it needs further testing...<br>
+Click <a target="_new" href="http://sourceforge.net/project/showfiles.php?group_id=242018&package_id=294593&release_id=645359">here</a> to download.</div>
+<br>
<div id="text">2008.12.06<br><b>New bug fix, last 0.3 planned release.</b><br>Release 0.3c
Click <a target="_new" href="http://sourceforge.net/project/showfiles.php?group_id=242018&package_id=294593&release_id=645359">here</a> to download.</div>
<br>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ts...@us...> - 2008-12-12 16:41:12
|
Revision: 201
http://openupload.svn.sourceforge.net/openupload/?rev=201&view=rev
Author: tsdogs
Date: 2008-12-12 16:41:06 +0000 (Fri, 12 Dec 2008)
Log Message:
-----------
update release doc
Modified Paths:
--------------
trunk/README
trunk/index.php
trunk/www/index.php
trunk/www/setup.inc.php
Modified: trunk/README
===================================================================
--- trunk/README 2008-12-12 16:03:29 UTC (rev 200)
+++ trunk/README 2008-12-12 16:41:06 UTC (rev 201)
@@ -41,22 +41,21 @@
There is a mailing list which can be used to report bugs and feature requests.
(see web site for detail)
I'd really apreciate any feedback.
- As the project is in it's early stages the use of Track might be too much.
- Maybe in the future...
+ The traker is also a good place to report bugs.
Ho, and would really love to have somebody else work on the project.
TRANSLATIONS:
- Right now the program is only translated to Italian (sorry I only know Italian and Engligh)
+ Right now the program is only translated to Italian and French
Translating isn't that hard (at least the default template)
- I have implemented 2 tranlsation modules, but I probably plan to have a tool which converts from
- one to the other.
+ I have implemented 2 tranlsation modules, but there is a tool which converts from
+ one to the other (from gettext to php).
Right now you can choose to translate with a php array, or use gettext tools (like poedit), to
- translate the app to your language.
+ translate the app to your language. Gettext tools are much easier to use.
It's divided in 2 parts. 1 is for the application, and 1 is for the template.
They are located in locale/* for the application and templates/default/locale for the 2nd.
- Once your translation is ready please send it to me or the ML.
+ Once your translation is ready please send it to me or on the ML.
RESTRICTIONS:
Modified: trunk/index.php
===================================================================
--- trunk/index.php 2008-12-12 16:03:29 UTC (rev 200)
+++ trunk/index.php 2008-12-12 16:41:06 UTC (rev 201)
@@ -27,7 +27,7 @@
* @copyright 2008 Alessandro Briosi
* @author Alessandro Briosi <tsdogs at briosix dot org>
* @package OpenUpload
- * @version 0.3
+ * @version 0.4
*/
define('__NOT_MAIN_SCRIPT',true);
require_once('www/index.php');
Modified: trunk/www/index.php
===================================================================
--- trunk/www/index.php 2008-12-12 16:03:29 UTC (rev 200)
+++ trunk/www/index.php 2008-12-12 16:41:06 UTC (rev 201)
@@ -27,7 +27,7 @@
* @copyright 2008 Alessandro Briosi
* @author Alessandro Briosi <tsdogs at briosix dot org>
* @package OpenUpload
- * @version 0.3
+ * @version 0.4
*/
define ('__VALID_CALLING_SCRIPT',true);
Modified: trunk/www/setup.inc.php
===================================================================
--- trunk/www/setup.inc.php 2008-12-12 16:03:29 UTC (rev 200)
+++ trunk/www/setup.inc.php 2008-12-12 16:41:06 UTC (rev 201)
@@ -239,6 +239,7 @@
'plugin_options' => array (
array ( 'id' => '1', 'plugin' => 'mimetypes', 'group_name' => '%5', 'name' => 'message', 'value' => 'Pdf, Jpeg'),
array ( 'id' => '2', 'plugin' => 'mimetypes', 'group_name' => '%5', 'name' => 'allowed', 'value' => 'application/pdf'."\n".'image/jpeg'),
+ array ( 'id' => '3', 'plugin' => 'expire', 'group_name' => '*', 'name' => 'days', 'value' => '30'),
),
),
'mode_1' => array (
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ts...@us...> - 2008-12-12 16:03:34
|
Revision: 200
http://openupload.svn.sourceforge.net/openupload/?rev=200&view=rev
Author: tsdogs
Date: 2008-12-12 16:03:29 +0000 (Fri, 12 Dec 2008)
Log Message:
-----------
update sample config file with additional options
Modified Paths:
--------------
trunk/www/config.inc.php.example
Modified: trunk/www/config.inc.php.example
===================================================================
--- trunk/www/config.inc.php.example 2008-12-12 15:50:45 UTC (rev 199)
+++ trunk/www/config.inc.php.example 2008-12-12 16:03:29 UTC (rev 200)
@@ -25,8 +25,11 @@
* it can be used when no database is available
*/
-/* MYSQL Database */
+/* MYSQL / POSTGRES Database */
+#$CONFIG['database']['type']='pgsql';
$CONFIG['database']['type']='mysql';
+
+/* Detail for dbconnection */
$CONFIG['database']['host']='localhost';
$CONFIG['database']['user']='databaseuser';
$CONFIG['database']['password']='databasepwd';
@@ -46,7 +49,8 @@
/* TRANSLATION MODULE */
-//$CONFIG['translator']='gettext';
+#$CONFIG['translator']='none';
+#$CONFIG['translator']='gettext';
$CONFIG['translator']='phparray';
$CONFIG['defaultlang']='en';
@@ -103,12 +107,6 @@
# $CONFIG['ldap']['gid']='distinguishedname';
# $CONFIG['ldap']['groupfields'] = array ( 'cn' => 'name', 'name' => 'description' );
-/* UPLOAD PROGRESS: specify the type
- * Requires php extensions to be installed
- */
-# $CONFIG['progress'] = 'apc';
-# $CONFIG['progress'] = 'uploadprogress';
-$CONFIG['progress']='none';
/* PLUGINS: here you enable the plugins
* they will need to enable the functionality
@@ -118,6 +116,9 @@
$CONFIG['plugins'][] = 'email';
$CONFIG['plugins'][] = 'password';
$CONFIG['plugins'][] = 'captcha';
+$CONFIG['plugins'][] = 'filesize';
+$CONFIG['plugins'][] = 'expire';
+$CONFIG['plugins'][] = 'compress';
/* Set maximum default upload size in MB*/
$CONFIG['max_upload_size']=100;
@@ -125,6 +126,30 @@
/* Set the maximum time (in minutes) a download should take (putting it to 0 will disable the timeout, but it's not suggested) */
$CONFIG['max_download_time']=120;
+/* Set the number of files to be uploaded in 1 time */
+$CONFIG['multiupload'] = '1';
+
+/* Set the progress upload method to be used */
+/* requires an extension (APC or UPLOADPROGRESS */
+/* possible values are: none, uploadprogress, apc */
+$CONFIG['progress'] = 'none';
+
+/* Logging of the application */
+$CONFIG['logging']['enabled'] = 'yes';
+
+/* Level of logging to the database table */
+/* 0 = none */
+/* 1 = errors */
+/* 2 = security */
+/* 3 = warnings */
+/* 4 = statistics */
+/* 5 = info */
+/* 6 = debug */
+$CONFIG['logging']['db_level'] = '4';
+
+/* Level of logging to syslog */
+$CONFIG['logging']['syslog_level'] = '0';
+
/* if registration is enabled confirm it by e-amil ? */
$CONFIG['registration']['email_confirm']='yes';
@@ -141,7 +166,6 @@
/* registered user by default */
$CONFIG['register']['default_group']='registered';
-
/* SITE STYLE */
$CONFIG['site']['template'] = 'default';
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ts...@us...> - 2008-12-12 15:50:51
|
Revision: 199
http://openupload.svn.sourceforge.net/openupload/?rev=199&view=rev
Author: tsdogs
Date: 2008-12-12 15:50:45 +0000 (Fri, 12 Dec 2008)
Log Message:
-----------
Italian translation update
Modified Paths:
--------------
trunk/locale/it/LC_MESSAGES/openupload.mo
trunk/locale/it/LC_MESSAGES/openupload.po
trunk/templates/default/locale/it/LC_MESSAGES/template.mo
trunk/templates/default/locale/it/LC_MESSAGES/template.po
trunk/templates/default/locale/it.inc.php
Modified: trunk/locale/it/LC_MESSAGES/openupload.mo
===================================================================
(Binary files differ)
Modified: trunk/locale/it/LC_MESSAGES/openupload.po
===================================================================
--- trunk/locale/it/LC_MESSAGES/openupload.po 2008-12-12 15:49:55 UTC (rev 198)
+++ trunk/locale/it/LC_MESSAGES/openupload.po 2008-12-12 15:50:45 UTC (rev 199)
@@ -2,8 +2,8 @@
msgstr ""
"Project-Id-Version: OpenUpload\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-12-11 16:44+0100\n"
-"PO-Revision-Date: 2008-12-11 17:06+0100\n"
+"POT-Creation-Date: 2008-12-12 16:47+0100\n"
+"PO-Revision-Date: 2008-12-12 16:47+0100\n"
"Last-Translator: Alessandro Briosi <ts...@br...>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@@ -322,6 +322,22 @@
msgid "Wrong captcha code! please try again."
msgstr "Captcha errato! Riprova."
+#: ../../../plugins/compress.inc.php:6
+msgid "Compress the uploaded files"
+msgstr "Comprime i file caricati"
+
+#: ../../../plugins/compress.inc.php:8
+msgid "Command to be executed. One per line."
+msgstr "Comandi da eseguire. Uno per riga"
+
+#: ../../../plugins/compress.inc.php:9
+msgid "Extensions corresponding to commands."
+msgstr "Estensioni dei file per i comandi"
+
+#: ../../../plugins/compress.inc.php:10
+msgid "Name of compression commands"
+msgstr "Nomi visualizzati per la compressione"
+
#: ../../../plugins/filesize.inc.php:8
msgid "Limit the maximum size of a uploaded file"
msgstr "Limita la dimensione massima dei file che possono essere caricati"
Modified: trunk/templates/default/locale/it/LC_MESSAGES/template.mo
===================================================================
(Binary files differ)
Modified: trunk/templates/default/locale/it/LC_MESSAGES/template.po
===================================================================
--- trunk/templates/default/locale/it/LC_MESSAGES/template.po 2008-12-12 15:49:55 UTC (rev 198)
+++ trunk/templates/default/locale/it/LC_MESSAGES/template.po 2008-12-12 15:50:45 UTC (rev 199)
@@ -2,8 +2,8 @@
msgstr ""
"Project-Id-Version: OpenUpload default template\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-12-11 16:48+0100\n"
-"PO-Revision-Date: 2008-12-11 16:50+0100\n"
+"POT-Creation-Date: 2008-12-12 16:48+0100\n"
+"PO-Revision-Date: 2008-12-12 16:48+0100\n"
"Last-Translator: Alessandro Briosi <ts...@br...>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@@ -43,844 +43,850 @@
msgstr "Utilizza Captcha"
#: ../../../default.c:26
+msgid "Compress the files"
+msgstr "Comprimi i files"
+
+#: ../../../default.c:29
+msgid "No compression"
+msgstr "Nessuna compressione"
+
+#: ../../../default.c:32
msgid "The download is password protected."
msgstr "Il file è protetto da una password."
-#: ../../../default.c:29
-#: ../../../default.c:41
-#: ../../../default.c:62
-#: ../../../default.c:176
-#: ../../../default.c:617
-#: ../../../default.c:773
-#: ../../../default.c:824
+#: ../../../default.c:35
+#: ../../../default.c:47
+#: ../../../default.c:68
+#: ../../../default.c:179
+#: ../../../default.c:620
+#: ../../../default.c:776
+#: ../../../default.c:827
msgid "Password"
msgstr "Password"
-#: ../../../default.c:32
+#: ../../../default.c:38
msgid "Password protect"
msgstr "Password di protezione"
-#: ../../../default.c:35
-#: ../../../default.c:56
+#: ../../../default.c:41
+#: ../../../default.c:62
msgid "You are receiving this message because someone uploaded a file on our OpenUpload server for you."
msgstr "Hai ricevuto questo messaggio perchè qualcuno ti ha inviato un file attraverso il nostro server OpenUpload."
-#: ../../../default.c:38
-#: ../../../default.c:59
-#: ../../../default.c:137
-#: ../../../default.c:146
-#: ../../../default.c:524
-#: ../../../default.c:671
-#: ../../../default.c:755
+#: ../../../default.c:44
+#: ../../../default.c:65
+#: ../../../default.c:140
+#: ../../../default.c:149
+#: ../../../default.c:527
+#: ../../../default.c:674
+#: ../../../default.c:758
msgid "Description"
msgstr "Descrizione"
-#: ../../../default.c:44
-#: ../../../default.c:65
+#: ../../../default.c:50
+#: ../../../default.c:71
msgid "User message"
msgstr "Messaggio"
-#: ../../../default.c:47
-#: ../../../default.c:68
+#: ../../../default.c:53
+#: ../../../default.c:74
msgid "To download the file open the following link in a browser"
msgstr "Per scaricare il file apri il seguente link in un browser"
-#: ../../../default.c:50
-#: ../../../default.c:71
+#: ../../../default.c:56
+#: ../../../default.c:77
msgid "To remove the file from our server open the following link in a browser"
msgstr "Per rimuovere il file dai ns. server apri il link seguente in un browser"
-#: ../../../default.c:53
-#: ../../../default.c:74
-#: ../../../default.c:800
-#: ../../../default.c:815
+#: ../../../default.c:59
+#: ../../../default.c:80
+#: ../../../default.c:803
+#: ../../../default.c:818
msgid "For complains please send an email to"
msgstr "Per segnalazioni di abuso prego inviare una email a "
-#: ../../../default.c:77
#: ../../../default.c:83
+#: ../../../default.c:89
msgid "Send me an e-mail"
msgstr "Inviami una e-mail"
-#: ../../../default.c:80
+#: ../../../default.c:86
msgid "Your e-mail address"
msgstr "Il tuo indirizzo e-mail"
-#: ../../../default.c:86
+#: ../../../default.c:92
msgid "Send e-mail to"
msgstr "Invia e-mail a"
-#: ../../../default.c:89
+#: ../../../default.c:95
msgid "Send remove link"
msgstr "Invia link per la rimozione"
-#: ../../../default.c:92
+#: ../../../default.c:98
msgid "e-mail Subject"
msgstr "Oggetto e-mail"
-#: ../../../default.c:95
+#: ../../../default.c:101
msgid "e-mail Message"
msgstr "Messaggio e-mail"
-#: ../../../default.c:98
-msgid "Additional file upload"
-msgstr "File aggiuntivo"
-
-#: ../../../default.c:101
+#: ../../../default.c:104
msgid "Only the following mime types are allowed"
msgstr "Solo i seguenti tipi di files possono essere caricati"
-#: ../../../default.c:104
+#: ../../../default.c:107
msgid "Are you sure you want to delete the selected plugins?"
msgstr "Sei sicuro di voler eliminare i plugin selezionati?"
-#: ../../../default.c:107
+#: ../../../default.c:110
msgid "Are you sure you want to delete the selected plugin?"
msgstr "Sei sicuro di voler eliminare il plugin selezionato?"
-#: ../../../default.c:110
-#: ../../../default.c:395
-#: ../../../default.c:503
+#: ../../../default.c:113
+#: ../../../default.c:398
+#: ../../../default.c:506
msgid "Plugin"
msgstr "Plugin"
-#: ../../../default.c:113
-#: ../../../default.c:188
-#: ../../../default.c:227
-#: ../../../default.c:257
-#: ../../../default.c:506
-#: ../../../default.c:587
-#: ../../../default.c:608
-#: ../../../default.c:629
+#: ../../../default.c:116
+#: ../../../default.c:191
+#: ../../../default.c:230
+#: ../../../default.c:260
+#: ../../../default.c:509
+#: ../../../default.c:590
+#: ../../../default.c:611
+#: ../../../default.c:632
msgid "Group"
msgstr "Gruppo"
-#: ../../../default.c:116
-#: ../../../default.c:125
-#: ../../../default.c:212
-#: ../../../default.c:494
-#: ../../../default.c:509
+#: ../../../default.c:119
+#: ../../../default.c:128
+#: ../../../default.c:215
+#: ../../../default.c:497
+#: ../../../default.c:512
msgid "Access"
msgstr "Accesso"
-#: ../../../default.c:119
-#: ../../../default.c:500
-#: ../../../default.c:638
-#: ../../../default.c:674
+#: ../../../default.c:122
+#: ../../../default.c:503
+#: ../../../default.c:641
+#: ../../../default.c:677
msgid "Add"
msgstr "Aggiungi"
-#: ../../../default.c:122
-#: ../../../default.c:209
-#: ../../../default.c:491
-#: ../../../default.c:659
+#: ../../../default.c:125
+#: ../../../default.c:212
+#: ../../../default.c:494
+#: ../../../default.c:662
msgid "IP"
msgstr "IP"
-#: ../../../default.c:128
-#: ../../../default.c:215
-#: ../../../default.c:497
+#: ../../../default.c:131
+#: ../../../default.c:218
+#: ../../../default.c:500
msgid "Priority"
msgstr "Priorità"
-#: ../../../default.c:131
-#: ../../../default.c:140
-#: ../../../default.c:197
-#: ../../../default.c:230
-#: ../../../default.c:251
-#: ../../../default.c:353
-#: ../../../default.c:512
-#: ../../../default.c:611
-#: ../../../default.c:893
+#: ../../../default.c:134
+#: ../../../default.c:143
+#: ../../../default.c:200
+#: ../../../default.c:233
+#: ../../../default.c:254
+#: ../../../default.c:356
+#: ../../../default.c:515
+#: ../../../default.c:614
+#: ../../../default.c:896
msgid "Confirm"
msgstr "Conferma"
-#: ../../../default.c:134
-#: ../../../default.c:236
-#: ../../../default.c:338
-#: ../../../default.c:653
-#: ../../../default.c:668
+#: ../../../default.c:137
+#: ../../../default.c:239
+#: ../../../default.c:341
+#: ../../../default.c:656
+#: ../../../default.c:671
msgid "Name"
msgstr "Nome Completo"
-#: ../../../default.c:143
+#: ../../../default.c:146
msgid "Gruppo"
msgstr "Gruppo"
-#: ../../../default.c:149
+#: ../../../default.c:152
msgid "Rights set?"
msgstr "Permessi impostati?"
-#: ../../../default.c:152
-#: ../../../default.c:566
+#: ../../../default.c:155
+#: ../../../default.c:569
msgid "Any"
msgstr "Tutti"
-#: ../../../default.c:155
+#: ../../../default.c:158
msgid "Yes"
msgstr "Si"
-#: ../../../default.c:158
+#: ../../../default.c:161
msgid "No"
msgstr "No"
-#: ../../../default.c:161
+#: ../../../default.c:164
msgid "Plugins ACL"
msgstr "ACL Plugins"
-#: ../../../default.c:164
+#: ../../../default.c:167
msgid "Plugins Options"
msgstr "Opzioni Plugin"
-#: ../../../default.c:167
-#: ../../../default.c:446
-#: ../../../default.c:533
+#: ../../../default.c:170
+#: ../../../default.c:449
+#: ../../../default.c:536
msgid "Settings"
msgstr "Impostazioni"
-#: ../../../default.c:170
+#: ../../../default.c:173
msgid "Options"
msgstr "Opzioni"
-#: ../../../default.c:173
-#: ../../../default.c:614
-#: ../../../default.c:770
-#: ../../../default.c:842
-#: ../../../default.c:869
+#: ../../../default.c:176
+#: ../../../default.c:617
+#: ../../../default.c:773
+#: ../../../default.c:845
+#: ../../../default.c:872
msgid "Login name"
msgstr "Nome utente"
-#: ../../../default.c:179
-#: ../../../default.c:620
-#: ../../../default.c:776
-msgid "Retype Password"
-msgstr "Reinserisci password"
-
#: ../../../default.c:182
#: ../../../default.c:623
#: ../../../default.c:779
-#: ../../../default.c:845
-#: ../../../default.c:872
-msgid "Full Name"
-msgstr "Nome Completo"
+msgid "Retype Password"
+msgstr "Reinserisci password"
#: ../../../default.c:185
#: ../../../default.c:626
#: ../../../default.c:782
#: ../../../default.c:848
#: ../../../default.c:875
+msgid "Full Name"
+msgstr "Nome Completo"
+
+#: ../../../default.c:188
+#: ../../../default.c:629
+#: ../../../default.c:785
+#: ../../../default.c:851
+#: ../../../default.c:878
msgid "e-mail"
msgstr "E-mail"
-#: ../../../default.c:191
-#: ../../../default.c:632
-#: ../../../default.c:785
-#: ../../../default.c:878
+#: ../../../default.c:194
+#: ../../../default.c:635
+#: ../../../default.c:788
+#: ../../../default.c:881
msgid "Preferred language"
msgstr "Lingua"
-#: ../../../default.c:194
-#: ../../../default.c:248
-#: ../../../default.c:350
-#: ../../../default.c:635
+#: ../../../default.c:197
+#: ../../../default.c:251
+#: ../../../default.c:353
+#: ../../../default.c:638
msgid "Active"
msgstr "Attivo"
-#: ../../../default.c:200
+#: ../../../default.c:203
msgid "Are you sure you want to delete the selected banned ips?"
msgstr "Sei sicuro di voler eliminare gli IP selezionati?"
-#: ../../../default.c:203
+#: ../../../default.c:206
msgid "Are you sure you want to delete the selected banned ip?"
msgstr "Sei sicuro di voler eliminare l'IP selezionato?"
-#: ../../../default.c:206
-#: ../../../default.c:647
+#: ../../../default.c:209
+#: ../../../default.c:650
msgid "S"
msgstr "S"
-#: ../../../default.c:218
-#: ../../../default.c:260
-#: ../../../default.c:527
-#: ../../../default.c:665
+#: ../../../default.c:221
+#: ../../../default.c:263
+#: ../../../default.c:530
+#: ../../../default.c:668
msgid "Actions"
msgstr "Azioni"
-#: ../../../default.c:221
+#: ../../../default.c:224
msgid "Are you sure you want to delete the selected languages?"
msgstr "Sei sicuro di voler eliminare le lingue selezionate?"
-#: ../../../default.c:224
+#: ../../../default.c:227
msgid "Are you sure you want to delete the selected language?"
msgstr "Sei sicuro di voler eliminare la lingua selezionata?"
-#: ../../../default.c:233
-#: ../../../default.c:335
+#: ../../../default.c:236
+#: ../../../default.c:338
msgid "ID"
msgstr "ID"
-#: ../../../default.c:239
-#: ../../../default.c:341
+#: ../../../default.c:242
+#: ../../../default.c:344
msgid "Locale"
msgstr "Localizzazione"
-#: ../../../default.c:242
-#: ../../../default.c:344
+#: ../../../default.c:245
+#: ../../../default.c:347
msgid "Browser recon"
msgstr "Riconoscimento Browser"
-#: ../../../default.c:245
-#: ../../../default.c:347
+#: ../../../default.c:248
+#: ../../../default.c:350
msgid "Charset"
msgstr "Charset"
-#: ../../../default.c:254
+#: ../../../default.c:257
msgid "Plugin does not have any option to be configured"
msgstr "Sei sicuro di voler eliminare gli IP se"
-#: ../../../default.c:263
+#: ../../../default.c:266
msgid "Translation module"
msgstr "Traduci con"
-#: ../../../default.c:266
-#: ../../../default.c:278
-#: ../../../default.c:296
+#: ../../../default.c:269
+#: ../../../default.c:281
+#: ../../../default.c:299
msgid "Select one"
msgstr "Seleziona"
-#: ../../../default.c:269
+#: ../../../default.c:272
msgid "Default language"
msgstr "Lingua Predefinita"
-#: ../../../default.c:272
+#: ../../../default.c:275
msgid "Authentication module"
msgstr "Modulo Authenticazione"
-#: ../../../default.c:275
+#: ../../../default.c:278
msgid "(LDAP Configuration needs to be done<br> by hand for now)"
msgstr "(La configurazione del modulo LDAP <br>deve essere fatta a mano per ora)"
-#: ../../../default.c:281
+#: ../../../default.c:284
msgid "Site title"
msgstr "Titolo Sito"
-#: ../../../default.c:284
+#: ../../../default.c:287
msgid "WebMaster E-mail"
msgstr "E-Mail WebMaster"
-#: ../../../default.c:287
+#: ../../../default.c:290
msgid "Site E-mail"
msgstr "E-mail Sito"
-#: ../../../default.c:290
+#: ../../../default.c:293
msgid "Confirm registration with e-mail"
msgstr "Conferma registrazioni via e-mail"
-#: ../../../default.c:293
+#: ../../../default.c:296
msgid "Template"
msgstr "Template"
-#: ../../../default.c:299
+#: ../../../default.c:302
msgid "Template Footer"
msgstr "Piede del Template"
-#: ../../../default.c:302
+#: ../../../default.c:305
msgid "Maximum upload size (in MB)"
msgstr "Dimensione massima di upload"
-#: ../../../default.c:305
+#: ../../../default.c:308
msgid "Maximum download time (in Min)"
msgstr "Tempo massimo per il download (in Min)"
-#: ../../../default.c:308
+#: ../../../default.c:311
msgid "0 disables it"
msgstr "0 lo disabilita"
-#: ../../../default.c:311
+#: ../../../default.c:314
msgid "Max num. of file uploaded per upload"
msgstr "Massimo num. di file per cui fare l'upload"
-#: ../../../default.c:314
+#: ../../../default.c:317
msgid "Upload tracking method"
msgstr "Metodo controllo stato upload"
-#: ../../../default.c:317
+#: ../../../default.c:320
msgid "Enable activity logging?"
msgstr "Abilita i log?"
-#: ../../../default.c:320
+#: ../../../default.c:323
msgid "Database logging level"
msgstr "Livello log su database"
-#: ../../../default.c:323
+#: ../../../default.c:326
msgid "Syslog logging level"
msgstr "Livello log in Syslog"
-#: ../../../default.c:326
+#: ../../../default.c:329
msgid "Save Changes"
msgstr "Salva Modifiche"
-#: ../../../default.c:329
+#: ../../../default.c:332
msgid "Download config file"
msgstr "Download file di configurazione"
-#: ../../../default.c:332
+#: ../../../default.c:335
msgid "This are the configured settings for a review"
msgstr "Questa è l'attuale configurazione"
-#: ../../../default.c:356
+#: ../../../default.c:359
msgid "Filter"
msgstr "Filtro"
-#: ../../../default.c:359
+#: ../../../default.c:362
msgid "All"
msgstr "Tutti"
-#: ../../../default.c:362
+#: ../../../default.c:365
msgid "Errors"
msgstr "Errori"
-#: ../../../default.c:365
+#: ../../../default.c:368
msgid "Security"
msgstr "Sicurezza"
-#: ../../../default.c:368
+#: ../../../default.c:371
msgid "Warnings"
msgstr "Avvertenze"
-#: ../../../default.c:371
+#: ../../../default.c:374
msgid "Notice"
msgstr "Notifiche"
-#: ../../../default.c:374
+#: ../../../default.c:377
msgid "Info"
msgstr "Info"
-#: ../../../default.c:377
+#: ../../../default.c:380
msgid "Date"
msgstr "Data"
-#: ../../../default.c:380
+#: ../../../default.c:383
msgid "Type"
msgstr "Tipo"
-#: ../../../default.c:383
-#: ../../../default.c:656
+#: ../../../default.c:386
+#: ../../../default.c:659
msgid "User"
msgstr "Utente"
-#: ../../../default.c:386
-#: ../../../default.c:569
-#: ../../../default.c:590
+#: ../../../default.c:389
+#: ../../../default.c:572
+#: ../../../default.c:593
msgid "Module"
msgstr "Modulo"
-#: ../../../default.c:389
-#: ../../../default.c:572
-#: ../../../default.c:593
+#: ../../../default.c:392
+#: ../../../default.c:575
+#: ../../../default.c:596
msgid "Action"
msgstr "Azione"
-#: ../../../default.c:392
+#: ../../../default.c:395
msgid "Real Action"
msgstr "Azione Reale"
-#: ../../../default.c:398
+#: ../../../default.c:401
msgid "Result"
msgstr "Risultato"
-#: ../../../default.c:401
+#: ../../../default.c:404
msgid "Additional Info"
msgstr "Info agg."
-#: ../../../default.c:404
+#: ../../../default.c:407
msgid "Maintenence"
msgstr "Manutenzione"
-#: ../../../default.c:407
+#: ../../../default.c:410
msgid "This options let you delete files based on some options."
msgstr "Questa sezione permette di eliminare i file in base a dei criteri."
-#: ../../../default.c:410
+#: ../../../default.c:413
msgid "Please select one or more criteria for file deletion"
msgstr "Seleziona uno o più criteri per l'eliminazione"
-#: ../../../default.c:413
+#: ../../../default.c:416
msgid "Delete files older than"
msgstr "Elimina file più vecchi di"
-#: ../../../default.c:416
+#: ../../../default.c:419
msgid "days"
msgstr "giorni"
-#: ../../../default.c:419
+#: ../../../default.c:422
msgid "Which user name is"
msgstr "Dove l'utente è"
-#: ../../../default.c:422
+#: ../../../default.c:425
msgid "Which upload day is"
msgstr "Dove il giorno di upload è"
-#: ../../../default.c:425
+#: ../../../default.c:428
msgid "Which size is bigger than"
msgstr "Dove la dimensione è maggiore di"
-#: ../../../default.c:428
-#: ../../../default.c:716
-#: ../../../default.c:728
+#: ../../../default.c:431
+#: ../../../default.c:719
+#: ../../../default.c:731
msgid "Proceed"
msgstr "Procedi"
-#: ../../../default.c:431
+#: ../../../default.c:434
msgid "Expiration plugin"
msgstr "Plugin di Scadenza"
-#: ../../../default.c:434
+#: ../../../default.c:437
msgid "To delete files marked as expired by the expire plugin press the \"Delete expired\" button."
msgstr "Per eliminare i file scaduti dall'expire plugin clicca su \"Elimina scaduti\"."
-#: ../../../default.c:437
+#: ../../../default.c:440
msgid "Delete expired"
msgstr "Elimina scaduti"
-#: ../../../default.c:440
+#: ../../../default.c:443
msgid "Are you sure you want to delete the selected users?"
msgstr "Sei sicuro di voler eliminare gli utenti selezionati?"
-#: ../../../default.c:443
+#: ../../../default.c:446
msgid "Are you sure you want to delete the selected user?"
msgstr "Sei sicuro di voler eliminare l'utente selezionato?"
-#: ../../../default.c:449
-#: ../../../default.c:536
+#: ../../../default.c:452
+#: ../../../default.c:539
msgid "Plugins"
msgstr "Plugin"
-#: ../../../default.c:452
-#: ../../../default.c:539
+#: ../../../default.c:455
+#: ../../../default.c:542
msgid "Files"
msgstr "File"
-#: ../../../default.c:455
-#: ../../../default.c:542
+#: ../../../default.c:458
+#: ../../../default.c:545
msgid "Users"
msgstr "Utenti"
-#: ../../../default.c:458
-#: ../../../default.c:545
+#: ../../../default.c:461
+#: ../../../default.c:548
msgid "Groups"
msgstr "Gruppi"
-#: ../../../default.c:461
-#: ../../../default.c:548
+#: ../../../default.c:464
+#: ../../../default.c:551
msgid "Rights"
msgstr "Permessi"
-#: ../../../default.c:464
-#: ../../../default.c:551
+#: ../../../default.c:467
+#: ../../../default.c:554
msgid "Languages"
msgstr "Lingua"
-#: ../../../default.c:467
+#: ../../../default.c:470
msgid "Banned"
msgstr "Bloccato"
-#: ../../../default.c:470
+#: ../../../default.c:473
msgid "Logs"
msgstr "Log"
-#: ../../../default.c:473
+#: ../../../default.c:476
msgid "Deletion Result"
msgstr "Risultato eliminazione"
-#: ../../../default.c:476
+#: ../../../default.c:479
msgid "The following files have been deleted."
msgstr "I seguenti file sono stati eliminati."
-#: ../../../default.c:479
+#: ../../../default.c:482
msgid "The following files will be deleted, proceed?"
msgstr "I seguenti file saranno eliminati, procedere?"
-#: ../../../default.c:482
+#: ../../../default.c:485
msgid "Yes, delete all"
msgstr "Si, eliminali tutti"
-#: ../../../default.c:485
+#: ../../../default.c:488
msgid "No files matched the criteria"
msgstr "Nessun file trovato"
-#: ../../../default.c:488
+#: ../../../default.c:491
msgid "Back to Maintenance"
msgstr "Torna alla Manutenzione"
-#: ../../../default.c:515
+#: ../../../default.c:518
msgid "Are you sure you want to delete the selected groups?"
msgstr "Sei sicuro di voler eliminare i gruppi selezionati?"
-#: ../../../default.c:518
+#: ../../../default.c:521
msgid "Are you sure you want to delete the selected group?"
msgstr "Sei sicuro di voler eliminare il gruppo selezionato?"
-#: ../../../default.c:521
+#: ../../../default.c:524
msgid "Group Name"
msgstr "Nome Gruppo"
-#: ../../../default.c:530
+#: ../../../default.c:533
msgid "Here you can administer"
msgstr "In questa sezione puoi amministrare"
-#: ../../../default.c:554
+#: ../../../default.c:557
msgid "Banned IPs"
msgstr "IP bloccati"
-#: ../../../default.c:557
+#: ../../../default.c:560
msgid "Logs / Statistics"
msgstr "Log / Statistiche"
-#: ../../../default.c:560
+#: ../../../default.c:563
msgid "PLEASE BE CAREFULL WHEN MODIFING THE RIGHTS!"
msgstr "PREGO FARE ATTENZIONE NELLA MODIFICA DEI PERMESSI!"
-#: ../../../default.c:563
+#: ../../../default.c:566
msgid "Editing rights for group"
msgstr "Modifica permessi per il gruppo"
-#: ../../../default.c:575
+#: ../../../default.c:578
msgid "Right"
msgstr "Permesso"
-#: ../../../default.c:578
+#: ../../../default.c:581
msgid "Resulting ACL"
msgstr "ACL risultante"
-#: ../../../default.c:581
+#: ../../../default.c:584
msgid "From ACL"
msgstr "Da ACL"
-#: ../../../default.c:584
+#: ../../../default.c:587
msgid "default"
msgstr "default"
-#: ../../../default.c:596
+#: ../../../default.c:599
msgid "<< Back"
msgstr "<< Indietro"
-#: ../../../default.c:599
+#: ../../../default.c:602
msgid "Apply changes"
msgstr "Applica modifiche"
-#: ../../../default.c:602
+#: ../../../default.c:605
msgid "Files List"
msgstr "Lista File"
-#: ../../../default.c:605
+#: ../../../default.c:608
msgid "Maintenance"
msgstr "Manutenzione"
-#: ../../../default.c:641
+#: ../../../default.c:644
msgid "Are you sure you want to delete the selected files?"
msgstr "Sei sicuro di voler eliminare i file selezionati?"
-#: ../../../default.c:644
+#: ../../../default.c:647
msgid "Are you sure you want to delete the selected file?"
msgstr "Sei sicuro di voler eliminare il file selezionato?"
-#: ../../../default.c:650
+#: ../../../default.c:653
msgid "Id"
msgstr "Id"
-#: ../../../default.c:662
+#: ../../../default.c:665
msgid "Upload Date"
msgstr "Data"
-#: ../../../default.c:677
+#: ../../../default.c:680
msgid "You requested to remove the following file"
msgstr "Hai richiesto la rimozione del seguente file"
-#: ../../../default.c:680
-#: ../../../default.c:734
-#: ../../../default.c:764
+#: ../../../default.c:683
+#: ../../../default.c:737
+#: ../../../default.c:767
msgid "File description"
msgstr "Descrizione"
-#: ../../../default.c:683
-#: ../../../default.c:740
-#: ../../../default.c:749
+#: ../../../default.c:686
+#: ../../../default.c:743
+#: ../../../default.c:752
msgid "File name"
msgstr "Nome file"
-#: ../../../default.c:686
-#: ../../../default.c:743
-#: ../../../default.c:752
+#: ../../../default.c:689
+#: ../../../default.c:746
+#: ../../../default.c:755
msgid "File size"
msgstr "Dimensione"
-#: ../../../default.c:689
-#: ../../../default.c:737
-#: ../../../default.c:767
+#: ../../../default.c:692
+#: ../../../default.c:740
+#: ../../../default.c:770
msgid "Uploaded on"
msgstr "Caricato il"
-#: ../../../default.c:692
+#: ../../../default.c:695
msgid "Confirm removal"
msgstr "Conferma rimozione"
-#: ../../../default.c:695
+#: ../../../default.c:698
msgid "Download link"
msgstr "Link per lo scaricamento"
-#: ../../../default.c:698
+#: ../../../default.c:701
msgid "Remove link"
msgstr "Link per la rimozione"
-#: ../../../default.c:701
+#: ../../../default.c:704
msgid "Upload a new file"
msgstr "Carica un nuovo file"
-#: ../../../default.c:704
+#: ../../../default.c:707
msgid "Uploading"
msgstr "Caricamento"
-#: ../../../default.c:707
+#: ../../../default.c:710
msgid "please wait ..."
msgstr "attendere prego ..."
-#: ../../../default.c:710
+#: ../../../default.c:713
msgid "Please enter the File Information requested"
msgstr "Prego inserire le informazioni sul File"
-#: ../../../default.c:713
+#: ../../../default.c:716
msgid "File code"
msgstr "Codice file"
-#: ../../../default.c:719
+#: ../../../default.c:722
msgid "Select the file to be uploaded"
msgstr "Seleziona il file da caricare"
-#: ../../../default.c:722
+#: ../../../default.c:725
msgid "Maximum allowed upload size"
msgstr "Dimensione massima di upload"
-#: ../../../default.c:725
+#: ../../../default.c:728
msgid "Upload"
msgstr "Carica"
-#: ../../../default.c:731
+#: ../../../default.c:734
msgid "You can now proceed downloading the file"
msgstr "Puoi ora procedere allo scaricamento del file"
-#: ../../../default.c:746
+#: ../../../default.c:749
msgid "Download file"
msgstr "Scarica file"
-#: ../../../default.c:758
+#: ../../../default.c:761
msgid "Complete upload"
msgstr "Completa caricamento"
-#: ../../../default.c:761
+#: ../../../default.c:764
msgid "FILE HAS BEEN SUCCESSFULLY REMOVED"
msgstr "IL FILE E' STATO RIMOSSO CON SUCCESSO"
-#: ../../../default.c:788
-#: ../../../default.c:803
+#: ../../../default.c:791
+#: ../../../default.c:806
msgid "Dear "
msgstr "Egregio"
-#: ../../../default.c:791
-#: ../../../default.c:806
+#: ../../../default.c:794
+#: ../../../default.c:809
msgid "This e-mail message is sent to you to confirm your account registration has a valid e-mail address."
msgstr "Questo messaggio ti è stato inviato per confermare che il tuo account abbia un indirizzo e-mail valido"
-#: ../../../default.c:794
-#: ../../../default.c:809
+#: ../../../default.c:797
+#: ../../../default.c:812
msgid "Open the following link in a browser to confirm your account."
msgstr "Apri il seguente indirizzo in un browser per confermare il tuo account."
-#: ../../../default.c:797
-#: ../../../default.c:812
+#: ../../../default.c:800
+#: ../../../default.c:815
msgid "Best regards"
msgstr "Cordiali saluti"
-#: ../../../default.c:818
+#: ../../../default.c:821
msgid "User login"
msgstr "Login utente"
-#: ../../../default.c:821
+#: ../../../default.c:824
msgid "User name"
msgstr "Nome Utente"
-#: ../../../default.c:827
+#: ../../../default.c:830
msgid "Login"
msgstr "Accedi"
-#: ../../../default.c:830
+#: ../../../default.c:833
msgid "You don't have an account?"
msgstr "Non possiedi un account?"
-#: ../../../default.c:833
+#: ../../../default.c:836
msgid "Register here"
msgstr "Registrati qui"
-#: ../../../default.c:836
+#: ../../../default.c:839
msgid "or you can"
msgstr "oppure puoi"
-#: ../../../default.c:839
+#: ../../../default.c:842
msgid "Login here"
msgstr "Accedere qui"
-#: ../../../default.c:851
+#: ../../../default.c:854
msgid "Language"
msgstr "Lingua"
-#: ../../../default.c:854
+#: ../../../default.c:857
msgid "Change"
msgstr "Modifica"
-#: ../../../default.c:857
+#: ../../../default.c:860
msgid "Registration succeeded"
msgstr "Registrazione avvenuta con successo"
-#: ../../../default.c:860
+#: ../../../default.c:863
msgid "An e-mail has been sent for the account activation"
msgstr "Un'email ti è stata inviata per confermare l'attivazione del tuo account"
-#: ../../../default.c:863
+#: ../../../default.c:866
msgid "Please follow the e-mail instructions to activate your account."
msgstr "Segui le istruzioni dell'e-mail per attivare il tuo account."
-#: ../../../default.c:866
+#: ../../../default.c:869
msgid "back to home"
msgstr "torna alla pagina principale"
-#: ../../../default.c:881
+#: ../../../default.c:884
msgid "Old password"
msgstr "Vecchia Password"
-#: ../../../default.c:884
+#: ../../../default.c:887
msgid "New password"
msgstr "Nuova Password"
-#: ../../../default.c:887
+#: ../../../default.c:890
msgid "Retype password"
msgstr "Reinserisci password"
-#: ../../../default.c:890
+#: ../../../default.c:893
msgid "Cancel"
msgstr "Annulla"
-#: ../../../default.c:896
+#: ../../../default.c:899
msgid "Your account registration has been confirmed."
msgstr "La registrazione del tuo account ha avuto successo."
-#: ../../../default.c:899
+#: ../../../default.c:902
msgid "You can now proceed with the login"
msgstr "Puoi ora procedere al login"
-#: ../../../default.c:902
+#: ../../../default.c:905
msgid "here"
msgstr "quì"
+#~ msgid "Additional file upload"
+#~ msgstr "File aggiuntivo"
#~ msgid "File ID"
#~ msgstr "ID File"
Modified: trunk/templates/default/locale/it.inc.php
===================================================================
--- trunk/templates/default/locale/it.inc.php 2008-12-12 15:49:55 UTC (rev 198)
+++ trunk/templates/default/locale/it.inc.php 2008-12-12 15:50:45 UTC (rev 199)
@@ -6,6 +6,8 @@
$tr["Reload Image"] = "Ricarica immagine";
$tr["Please enter the following captcha to proceed for the download"] = "Prego inserire il seguente codice captch per procedere al download";
$tr["Use Captcha"] = "Utilizza Captcha";
+$tr["Compress the files"] = "Comprimi i files";
+$tr["No compression"] = "Nessuna compressione";
$tr["The download is password protected."] = "Il file è protetto da una password.";
$tr["Password"] = "Password";
$tr["Password protect"] = "Password di protezione";
@@ -21,7 +23,6 @@
$tr["Send remove link"] = "Invia link per la rimozione";
$tr["e-mail Subject"] = "Oggetto e-mail";
$tr["e-mail Message"] = "Messaggio e-mail";
-$tr["Additional file upload"] = "File aggiuntivo";
$tr["Only the following mime types are allowed"] = "Solo i seguenti tipi di files possono essere caricati";
$tr["Are you sure you want to delete the selected plugins?"] = "Sei sicuro di voler eliminare i plugin selezionati?";
$tr["Are you sure you want to delete the selected plugin?"] = "Sei sicuro di voler eliminare il plugin selezionato?";
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ts...@us...> - 2008-12-12 15:50:00
|
Revision: 198
http://openupload.svn.sourceforge.net/openupload/?rev=198&view=rev
Author: tsdogs
Date: 2008-12-12 15:49:55 +0000 (Fri, 12 Dec 2008)
Log Message:
-----------
todo list update
Modified Paths:
--------------
trunk/TODO
Modified: trunk/TODO
===================================================================
--- trunk/TODO 2008-12-12 07:37:51 UTC (rev 197)
+++ trunk/TODO 2008-12-12 15:49:55 UTC (rev 198)
@@ -3,17 +3,21 @@
******* MUST BE DONE BEFORE RELEASE 0.4 *******
Bugs
-- Fix all bugs I find in 0.3 (I hope somebody else will report some if they exsist)
+ - Fix all bugs I find in 0.3 (I hope somebody else will report some if they exsist)
Database
-- txtdb deep testing (switch ?)
+ - txtdb deep testing (switch ?)
Setup
-- Check for required paths to be writable...
-- Check for zip/tar ?
+ - Check for required paths to be writable...
+ - Check for zip/tar ?
+ - Enable TXTDB initialization
+SQL
+ - Update with default options for plugins
+
Translations
-- Update the translations
+ - Update the translations
******* OTHER THINGS/IDEAS *******
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ts...@us...> - 2008-12-12 07:37:53
|
Revision: 197
http://openupload.svn.sourceforge.net/openupload/?rev=197&view=rev
Author: tsdogs
Date: 2008-12-12 07:37:51 +0000 (Fri, 12 Dec 2008)
Log Message:
-----------
updated changelog
Modified Paths:
--------------
trunk/CHANGELOG
trunk/TODO
Modified: trunk/CHANGELOG
===================================================================
--- trunk/CHANGELOG 2008-12-11 22:00:45 UTC (rev 196)
+++ trunk/CHANGELOG 2008-12-12 07:37:51 UTC (rev 197)
@@ -18,11 +18,11 @@
- Plugin options
- Enabled confirmation on record deletion
- Enabled multi delete option
- - Enabled option configuration page
- - File deletion based on selection
+ - Enabled options configuration page
+ - File deletion for maintenance
* Setup
- - A setup script which should simplify first time configuration.
+ - Added setup script which should simplify first time configuration.
* Logs
- Createed logs which can be used for statistics.
@@ -35,7 +35,12 @@
- Plugin defualt option for groups.
- Upload file size limit by user group
- Expiriration date plugin
+ - Compression options (needs external tools)
+* Translations
+ - Updated Italian
+
+
Changelog from 0.3b to 0.3c (updated 2008.12.06)
* Fixed Bugs
Modified: trunk/TODO
===================================================================
--- trunk/TODO 2008-12-11 22:00:45 UTC (rev 196)
+++ trunk/TODO 2008-12-12 07:37:51 UTC (rev 197)
@@ -8,11 +8,9 @@
Database
- txtdb deep testing (switch ?)
-Maintainence
-- Create a script to clean up the files/tmpfiles.
-
Setup
-- Check for something I don't remember right now :/
+- Check for required paths to be writable...
+- Check for zip/tar ?
Translations
- Update the translations
@@ -39,6 +37,9 @@
- Rights switch mode (to switch from 1 mode to the other)
- Rights better admin tool.
+Maintainence
+- Create a script to clean up the files/tmpfiles.
+
Registration
- Enable registration moderation
@@ -46,8 +47,6 @@
- e-mail change should need a confirmation e-mail too!
- Authentication with NTLM (mainly on LDAP module)
-Download (bug)
-- Fix double click on no blockings for download
Plugins
- (Following are some ideas)
@@ -55,15 +54,11 @@
Download wait time (is this really needed?)
User additional fields for registration request.
Antivirus on upload
- Deletion timeout (should it be a plugin? Maybe only for user interaction on it)
Compression of several files into one zip
Translation
- Add a database translator? not until base isn't complete.
-Maintainence
-- Manage file deletion timeout probably better to be handled here.
-
Template
- Create a sample template.
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|