openupload-svn-update Mailing List for Open Upload (Page 4)
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-06-09 21:51:47
|
Revision: 322
http://openupload.svn.sourceforge.net/openupload/?rev=322&view=rev
Author: tsdogs
Date: 2009-06-09 21:50:43 +0000 (Tue, 09 Jun 2009)
Log Message:
-----------
fix missing activitylog structure, bug #2803132
Modified Paths:
--------------
trunk/sql/mysql/1_structure.sql
trunk/sql/pgsql/1_structure.sql
Modified: trunk/sql/mysql/1_structure.sql
===================================================================
--- trunk/sql/mysql/1_structure.sql 2009-06-09 21:50:24 UTC (rev 321)
+++ trunk/sql/mysql/1_structure.sql 2009-06-09 21:50:43 UTC (rev 322)
@@ -155,3 +155,22 @@
PRIMARY KEY (`id`),
UNIQUE KEY `login` (`login`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=0 ;
+
+--
+-- Table structure for `activitylog`
+--
+
+CREATE TABLE `activitylog` (
+ `id` int(20) NOT NULL auto_increment,
+ `level` varchar(20) NOT NULL,
+ `log_time` datetime NOT NULL,
+ `ip` varchar(20) NOT NULL,
+ `user_login` varchar(100) NOT NULL,
+ `module` varchar(50) NOT NULL,
+ `action` varchar(50) NOT NULL,
+ `realaction` varchar(50) default NULL,
+ `plugin` varchar(50) default NULL,
+ `result` varchar(100) default NULL,
+ `moreinfo` text,
+ PRIMARY KEY (`id`)
+) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=0 ;
Modified: trunk/sql/pgsql/1_structure.sql
===================================================================
--- trunk/sql/pgsql/1_structure.sql 2009-06-09 21:50:24 UTC (rev 321)
+++ trunk/sql/pgsql/1_structure.sql 2009-06-09 21:50:43 UTC (rev 322)
@@ -143,7 +143,25 @@
);
+--
+-- Name: activitylog; Type: TABLE; Schema: public; Owner: openupload; Tablespace:
+--
+CREATE TABLE activitylog (
+ id integer NOT NULL,
+ level character varying(20) NOT NULL,
+ log_time timestamp without time zone NOT NULL,
+ ip character varying(20) NOT NULL,
+ user_login character varying(100) NOT NULL,
+ module character varying(50) NOT NULL,
+ action character varying(50) NOT NULL,
+ realaction character varying(50),
+ plugin character varying(50),
+ result character varying(100),
+ moreinfo text
+);
+
+
--
-- Name: acl_id_seq; Type: SEQUENCE; Schema: public; Owner: openupload
--
@@ -257,8 +275,24 @@
ALTER SEQUENCE users_id_seq OWNED BY users.id;
+--
+-- Name: activitylog_id_seq; Type: SEQUENCE; Schema: public; Owner: openupload
+--
+CREATE SEQUENCE activitylog_id_seq
+ INCREMENT BY 1
+ NO MAXVALUE
+ NO MINVALUE
+ CACHE 1;
+
--
+-- Name: activitylog_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: openupload
+--
+
+ALTER SEQUENCE activitylog_id_seq OWNED BY activitylog.id;
+
+
+--
-- Name: id; Type: DEFAULT; Schema: public; Owner: openupload
--
@@ -301,6 +335,13 @@
--
+-- Name: id; Type: DEFAULT; Schema: public; Owner: openupload
+--
+
+ALTER TABLE activitylog ALTER COLUMN id SET DEFAULT nextval('activitylog_id_seq'::regclass);
+
+
+--
-- Name: acl_pkey; Type: CONSTRAINT; Schema: public; Owner: openupload; Tablespace:
--
@@ -371,7 +412,14 @@
ALTER TABLE ONLY users
ADD CONSTRAINT users_pkey PRIMARY KEY (id);
+--
+-- Name: activitylog_pkey; Type: CONSTRAINT; Schema: public; Owner: openupload; Tablespace:
+--
+ALTER TABLE ONLY activitylog
+ ADD CONSTRAINT activitylog_pkey PRIMARY KEY (id);
+
+
--
-- Name: file_id_idx; Type: INDEX; Schema: public; Owner: openupload; Tablespace:
--
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ts...@us...> - 2009-06-09 21:50:51
|
Revision: 321
http://openupload.svn.sourceforge.net/openupload/?rev=321&view=rev
Author: tsdogs
Date: 2009-06-09 21:50:24 +0000 (Tue, 09 Jun 2009)
Log Message:
-----------
fix missing activitylog structure, bug #2803132
Modified Paths:
--------------
branches/v0.4/sql/mysql/1_structure.sql
branches/v0.4/sql/pgsql/1_structure.sql
Modified: branches/v0.4/sql/mysql/1_structure.sql
===================================================================
--- branches/v0.4/sql/mysql/1_structure.sql 2009-05-19 14:44:59 UTC (rev 320)
+++ branches/v0.4/sql/mysql/1_structure.sql 2009-06-09 21:50:24 UTC (rev 321)
@@ -155,3 +155,22 @@
PRIMARY KEY (`id`),
UNIQUE KEY `login` (`login`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=0 ;
+
+--
+-- Table structure for `activitylog`
+--
+
+CREATE TABLE `activitylog` (
+ `id` int(20) NOT NULL auto_increment,
+ `level` varchar(20) NOT NULL,
+ `log_time` datetime NOT NULL,
+ `ip` varchar(20) NOT NULL,
+ `user_login` varchar(100) NOT NULL,
+ `module` varchar(50) NOT NULL,
+ `action` varchar(50) NOT NULL,
+ `realaction` varchar(50) default NULL,
+ `plugin` varchar(50) default NULL,
+ `result` varchar(100) default NULL,
+ `moreinfo` text,
+ PRIMARY KEY (`id`)
+) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=0 ;
Modified: branches/v0.4/sql/pgsql/1_structure.sql
===================================================================
--- branches/v0.4/sql/pgsql/1_structure.sql 2009-05-19 14:44:59 UTC (rev 320)
+++ branches/v0.4/sql/pgsql/1_structure.sql 2009-06-09 21:50:24 UTC (rev 321)
@@ -143,7 +143,25 @@
);
+--
+-- Name: activitylog; Type: TABLE; Schema: public; Owner: openupload; Tablespace:
+--
+CREATE TABLE activitylog (
+ id integer NOT NULL,
+ level character varying(20) NOT NULL,
+ log_time timestamp without time zone NOT NULL,
+ ip character varying(20) NOT NULL,
+ user_login character varying(100) NOT NULL,
+ module character varying(50) NOT NULL,
+ action character varying(50) NOT NULL,
+ realaction character varying(50),
+ plugin character varying(50),
+ result character varying(100),
+ moreinfo text
+);
+
+
--
-- Name: acl_id_seq; Type: SEQUENCE; Schema: public; Owner: openupload
--
@@ -257,8 +275,24 @@
ALTER SEQUENCE users_id_seq OWNED BY users.id;
+--
+-- Name: activitylog_id_seq; Type: SEQUENCE; Schema: public; Owner: openupload
+--
+CREATE SEQUENCE activitylog_id_seq
+ INCREMENT BY 1
+ NO MAXVALUE
+ NO MINVALUE
+ CACHE 1;
+
--
+-- Name: activitylog_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: openupload
+--
+
+ALTER SEQUENCE activitylog_id_seq OWNED BY activitylog.id;
+
+
+--
-- Name: id; Type: DEFAULT; Schema: public; Owner: openupload
--
@@ -301,6 +335,13 @@
--
+-- Name: id; Type: DEFAULT; Schema: public; Owner: openupload
+--
+
+ALTER TABLE activitylog ALTER COLUMN id SET DEFAULT nextval('activitylog_id_seq'::regclass);
+
+
+--
-- Name: acl_pkey; Type: CONSTRAINT; Schema: public; Owner: openupload; Tablespace:
--
@@ -371,7 +412,14 @@
ALTER TABLE ONLY users
ADD CONSTRAINT users_pkey PRIMARY KEY (id);
+--
+-- Name: activitylog_pkey; Type: CONSTRAINT; Schema: public; Owner: openupload; Tablespace:
+--
+ALTER TABLE ONLY activitylog
+ ADD CONSTRAINT activitylog_pkey PRIMARY KEY (id);
+
+
--
-- Name: file_id_idx; Type: INDEX; Schema: public; Owner: openupload; Tablespace:
--
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ts...@us...> - 2009-05-19 14:45:07
|
Revision: 320
http://openupload.svn.sourceforge.net/openupload/?rev=320&view=rev
Author: tsdogs
Date: 2009-05-19 14:44:59 +0000 (Tue, 19 May 2009)
Log Message:
-----------
apply correct fix for SI_IMAGE_JPEG
Modified Paths:
--------------
trunk/www/plugins/captcha.php
Modified: trunk/www/plugins/captcha.php
===================================================================
--- trunk/www/plugins/captcha.php 2009-05-19 14:44:00 UTC (rev 319)
+++ trunk/www/plugins/captcha.php 2009-05-19 14:44:59 UTC (rev 320)
@@ -12,9 +12,9 @@
$img->ttf_file = $CONFIG['INSTALL_ROOT'].'/plugins/securimage/elephant.ttf';
$img->code_length = 6;
$img->image_width = 200;
-$img->image_type = 'SI_IMAGE_JPEG';
+$img->image_type = SI_IMAGE_JPEG;
/* remove all output before the image */
ob_clean();
$img->show();
-?>
\ 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-05-19 14:44:10
|
Revision: 319
http://openupload.svn.sourceforge.net/openupload/?rev=319&view=rev
Author: tsdogs
Date: 2009-05-19 14:44:00 +0000 (Tue, 19 May 2009)
Log Message:
-----------
apply correct fix for SI_IMAGE_JPEG
Modified Paths:
--------------
branches/v0.4/www/plugins/captcha.php
Modified: branches/v0.4/www/plugins/captcha.php
===================================================================
--- branches/v0.4/www/plugins/captcha.php 2009-05-18 20:19:18 UTC (rev 318)
+++ branches/v0.4/www/plugins/captcha.php 2009-05-19 14:44:00 UTC (rev 319)
@@ -12,9 +12,9 @@
$img->ttf_file = $CONFIG['INSTALL_ROOT'].'/plugins/securimage/elephant.ttf';
$img->code_length = 6;
$img->image_width = 200;
-$img->image_type = 'SI_IMAGE_JPEG';
+$img->image_type = SI_IMAGE_JPEG;
/* remove all output before the image */
ob_clean();
$img->show();
-?>
\ 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-05-18 20:19:26
|
Revision: 318
http://openupload.svn.sourceforge.net/openupload/?rev=318&view=rev
Author: tsdogs
Date: 2009-05-18 20:19:18 +0000 (Mon, 18 May 2009)
Log Message:
-----------
remove new line at end of file
Modified Paths:
--------------
trunk/www/plugins/captcha.php
Modified: trunk/www/plugins/captcha.php
===================================================================
--- trunk/www/plugins/captcha.php 2009-05-18 20:17:28 UTC (rev 317)
+++ trunk/www/plugins/captcha.php 2009-05-18 20:19:18 UTC (rev 318)
@@ -17,4 +17,4 @@
ob_clean();
$img->show();
-?>
+?>
\ 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-05-18 20:17:31
|
Revision: 317
http://openupload.svn.sourceforge.net/openupload/?rev=317&view=rev
Author: tsdogs
Date: 2009-05-18 20:17:28 +0000 (Mon, 18 May 2009)
Log Message:
-----------
remove new line at end of file
Modified Paths:
--------------
branches/v0.4/www/plugins/captcha.php
Modified: branches/v0.4/www/plugins/captcha.php
===================================================================
--- branches/v0.4/www/plugins/captcha.php 2009-05-18 20:14:09 UTC (rev 316)
+++ branches/v0.4/www/plugins/captcha.php 2009-05-18 20:17:28 UTC (rev 317)
@@ -17,4 +17,4 @@
ob_clean();
$img->show();
-?>
+?>
\ 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-05-18 20:14:17
|
Revision: 316
http://openupload.svn.sourceforge.net/openupload/?rev=316&view=rev
Author: tsdogs
Date: 2009-05-18 20:14:09 +0000 (Mon, 18 May 2009)
Log Message:
-----------
fix bug #2793336 (SI_IMAGE_JPEG typo)
try to fix problem with OpenSuse sending a 0x0A char (probably from config.inc.php)
Modified Paths:
--------------
trunk/www/plugins/captcha.php
Modified: trunk/www/plugins/captcha.php
===================================================================
--- trunk/www/plugins/captcha.php 2009-05-18 20:12:52 UTC (rev 315)
+++ trunk/www/plugins/captcha.php 2009-05-18 20:14:09 UTC (rev 316)
@@ -1,5 +1,5 @@
<?php
-
+ob_start();
/* disable error reporting to the browser */
ini_set('display_errors',0);
@@ -8,12 +8,13 @@
require_once($CONFIG['INSTALL_ROOT'].'/plugins/securimage/securimage.php');
-
$img = new securimage();
$img->ttf_file = $CONFIG['INSTALL_ROOT'].'/plugins/securimage/elephant.ttf';
$img->code_length = 6;
$img->image_width = 200;
-$img->image_type = 'SI_IMAGE_JPG';
+$img->image_type = 'SI_IMAGE_JPEG';
+/* remove all output before the image */
+ob_clean();
$img->show();
?>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ts...@us...> - 2009-05-18 20:13:01
|
Revision: 315
http://openupload.svn.sourceforge.net/openupload/?rev=315&view=rev
Author: tsdogs
Date: 2009-05-18 20:12:52 +0000 (Mon, 18 May 2009)
Log Message:
-----------
fix bug #2793336 (SI_IMAGE_JPEG typo)
try to fix problem with OpenSuse sending a 0x0A char (probably from config.inc.php)
Modified Paths:
--------------
branches/v0.4/www/plugins/captcha.php
Modified: branches/v0.4/www/plugins/captcha.php
===================================================================
--- branches/v0.4/www/plugins/captcha.php 2009-05-08 20:40:20 UTC (rev 314)
+++ branches/v0.4/www/plugins/captcha.php 2009-05-18 20:12:52 UTC (rev 315)
@@ -1,5 +1,5 @@
<?php
-
+ob_start();
/* disable error reporting to the browser */
ini_set('display_errors',0);
@@ -8,12 +8,13 @@
require_once($CONFIG['INSTALL_ROOT'].'/plugins/securimage/securimage.php');
-
$img = new securimage();
$img->ttf_file = $CONFIG['INSTALL_ROOT'].'/plugins/securimage/elephant.ttf';
$img->code_length = 6;
$img->image_width = 200;
-$img->image_type = 'SI_IMAGE_JPG';
+$img->image_type = 'SI_IMAGE_JPEG';
+/* remove all output before the image */
+ob_clean();
$img->show();
?>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ts...@us...> - 2009-05-08 20:40:38
|
Revision: 314
http://openupload.svn.sourceforge.net/openupload/?rev=314&view=rev
Author: tsdogs
Date: 2009-05-08 20:40:20 +0000 (Fri, 08 May 2009)
Log Message:
-----------
fix Notice about missing constant, preventing display when display_errors is on.
Modified Paths:
--------------
trunk/www/plugins/captcha.php
Modified: trunk/www/plugins/captcha.php
===================================================================
--- trunk/www/plugins/captcha.php 2009-05-08 20:39:00 UTC (rev 313)
+++ trunk/www/plugins/captcha.php 2009-05-08 20:40:20 UTC (rev 314)
@@ -1,5 +1,8 @@
<?php
+/* disable error reporting to the browser */
+ini_set('display_errors',0);
+
/* this generates a chiper and sets the session relative chiper protection */
include ('../config.inc.php');
@@ -10,7 +13,7 @@
$img->ttf_file = $CONFIG['INSTALL_ROOT'].'/plugins/securimage/elephant.ttf';
$img->code_length = 6;
$img->image_width = 200;
-$img->image_type = SI_IMAGE_JPG;
+$img->image_type = 'SI_IMAGE_JPG';
$img->show();
-?>
\ 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-05-08 20:39:10
|
Revision: 313
http://openupload.svn.sourceforge.net/openupload/?rev=313&view=rev
Author: tsdogs
Date: 2009-05-08 20:39:00 +0000 (Fri, 08 May 2009)
Log Message:
-----------
fix Notice about missing constant, preventing display when display_errors is on.
Modified Paths:
--------------
branches/v0.4/www/plugins/captcha.php
Modified: branches/v0.4/www/plugins/captcha.php
===================================================================
--- branches/v0.4/www/plugins/captcha.php 2009-05-01 22:53:46 UTC (rev 312)
+++ branches/v0.4/www/plugins/captcha.php 2009-05-08 20:39:00 UTC (rev 313)
@@ -1,5 +1,8 @@
<?php
+/* disable error reporting to the browser */
+ini_set('display_errors',0);
+
/* this generates a chiper and sets the session relative chiper protection */
include ('../config.inc.php');
@@ -10,7 +13,7 @@
$img->ttf_file = $CONFIG['INSTALL_ROOT'].'/plugins/securimage/elephant.ttf';
$img->code_length = 6;
$img->image_width = 200;
-$img->image_type = SI_IMAGE_JPG;
+$img->image_type = 'SI_IMAGE_JPG';
$img->show();
-?>
\ 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-05-01 22:53:48
|
Revision: 312
http://openupload.svn.sourceforge.net/openupload/?rev=312&view=rev
Author: tsdogs
Date: 2009-05-01 22:53:46 +0000 (Fri, 01 May 2009)
Log Message:
-----------
AD was not working anymore.
needs testing with LDAP.
Modified Paths:
--------------
trunk/lib/modules/auth/ldap.inc.php
Modified: trunk/lib/modules/auth/ldap.inc.php
===================================================================
--- trunk/lib/modules/auth/ldap.inc.php 2009-05-01 22:52:33 UTC (rev 311)
+++ trunk/lib/modules/auth/ldap.inc.php 2009-05-01 22:53:46 UTC (rev 312)
@@ -53,14 +53,13 @@
}
function userinfo($login) {
-
$result = array();
if ($this->connect() and $this->bind()) {
$r = @ldap_search($this->ds, $this->config['userdn'],
'(&('.$this->ufield.'='.$login.')(objectclass='.$this->config['userclass'].'))');
if ($r) {
$res = @ldap_get_entries($this->ds, $r);
- /* associate user fields */echo '<pre>';
+ /* associate user fields */;
$res = $res[0];
foreach ($this->config['userfields'] as $n => $f) {
if ($f == 'group_id') {
@@ -70,24 +69,33 @@
}
}
}
- /* now retrieve the main group */
- for ($g = 0; $g < $result['group_id']['count']; $g++) {
- $r = @ldap_search($this->ds, $this->config['groupdn'],
- '(&('.$this->gfield.'='.$result['group_id'][$g].')(objectclass='.$this->config['groupclass'].'))');
- if ($r) {
- $res = @ldap_get_entries($this->ds, $r);
- /* associate user fields */
- $res = $res[0];
- foreach ($this->config['groupfields'] as $n => $f) {
- if ($f == 'name' and $res[$n][0]!='') {
- $result['group'][] = $res[$n][0];
+ if ($this->config['type']!='AD') {
+ /* now retrieve the main group */
+ for ($g = 0; $g < $result['group_id']['count']; $g++) {
+ $r = @ldap_search($this->ds, $this->config['groupdn'],
+ '(&('.$this->gfield.'='.$result['group_id'][$g].')(objectclass='.$this->config['groupclass'].'))');
+ if ($r) {
+ $res = @ldap_get_entries($this->ds, $r);
+ /* associate user fields */
+ $res = $res[0];
+ foreach ($this->config['groupfields'] as $n => $f) {
+ if ($f == 'name' and $res[$n][0]!='') {
+ $result['group'][] = $res[$n][0];
+ }
}
}
}
+ } else {
+ $result['group'][0] = app()->config['register']['default_group'];
+ $this->config['sgid'] = $this->config['gid'];
+ $this->config['sgroupfields'] = $this->config['groupfields'];
}
+
if (isset($this->config['sgid'])) {
- $r = @ldap_search($this->ds, $this->config['groupdn'],
- '(&('.$this->config['sgid'].'='.$result['login'].')(objectclass='.$this->config['groupclass'].'))');
+ if ($this->config['type']!='AD')
+ $result['uid'] = $result['login'];
+ $filter = '(&('.$this->config['sgid'].'='.$result['uid'].')(objectclass='.$this->config['groupclass'].'))';
+ $r = @ldap_search($this->ds, $this->config['groupdn'], $filter);
if ($r) {
$res = @ldap_get_entries($this->ds, $r);
for ($i = 0; $i<$res['count']; $i++) {
@@ -130,4 +138,4 @@
}
-?>
\ 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-05-01 22:52:44
|
Revision: 311
http://openupload.svn.sourceforge.net/openupload/?rev=311&view=rev
Author: tsdogs
Date: 2009-05-01 22:52:33 +0000 (Fri, 01 May 2009)
Log Message:
-----------
AD was not working anymore.
needs testing with LDAP.
Modified Paths:
--------------
branches/v0.4/lib/modules/auth/ldap.inc.php
Modified: branches/v0.4/lib/modules/auth/ldap.inc.php
===================================================================
--- branches/v0.4/lib/modules/auth/ldap.inc.php 2009-04-28 21:52:37 UTC (rev 310)
+++ branches/v0.4/lib/modules/auth/ldap.inc.php 2009-05-01 22:52:33 UTC (rev 311)
@@ -53,14 +53,13 @@
}
function userinfo($login) {
-
$result = array();
if ($this->connect() and $this->bind()) {
$r = @ldap_search($this->ds, $this->config['userdn'],
'(&('.$this->ufield.'='.$login.')(objectclass='.$this->config['userclass'].'))');
if ($r) {
$res = @ldap_get_entries($this->ds, $r);
- /* associate user fields */echo '<pre>';
+ /* associate user fields */;
$res = $res[0];
foreach ($this->config['userfields'] as $n => $f) {
if ($f == 'group_id') {
@@ -70,24 +69,33 @@
}
}
}
- /* now retrieve the main group */
- for ($g = 0; $g < $result['group_id']['count']; $g++) {
- $r = @ldap_search($this->ds, $this->config['groupdn'],
- '(&('.$this->gfield.'='.$result['group_id'][$g].')(objectclass='.$this->config['groupclass'].'))');
- if ($r) {
- $res = @ldap_get_entries($this->ds, $r);
- /* associate user fields */
- $res = $res[0];
- foreach ($this->config['groupfields'] as $n => $f) {
- if ($f == 'name' and $res[$n][0]!='') {
- $result['group'][] = $res[$n][0];
+ if ($this->config['type']!='AD') {
+ /* now retrieve the main group */
+ for ($g = 0; $g < $result['group_id']['count']; $g++) {
+ $r = @ldap_search($this->ds, $this->config['groupdn'],
+ '(&('.$this->gfield.'='.$result['group_id'][$g].')(objectclass='.$this->config['groupclass'].'))');
+ if ($r) {
+ $res = @ldap_get_entries($this->ds, $r);
+ /* associate user fields */
+ $res = $res[0];
+ foreach ($this->config['groupfields'] as $n => $f) {
+ if ($f == 'name' and $res[$n][0]!='') {
+ $result['group'][] = $res[$n][0];
+ }
}
}
}
+ } else {
+ $result['group'][0] = app()->config['register']['default_group'];
+ $this->config['sgid'] = $this->config['gid'];
+ $this->config['sgroupfields'] = $this->config['groupfields'];
}
+
if (isset($this->config['sgid'])) {
- $r = @ldap_search($this->ds, $this->config['groupdn'],
- '(&('.$this->config['sgid'].'='.$result['login'].')(objectclass='.$this->config['groupclass'].'))');
+ if ($this->config['type']!='AD')
+ $result['uid'] = $result['login'];
+ $filter = '(&('.$this->config['sgid'].'='.$result['uid'].')(objectclass='.$this->config['groupclass'].'))';
+ $r = @ldap_search($this->ds, $this->config['groupdn'], $filter);
if ($r) {
$res = @ldap_get_entries($this->ds, $r);
for ($i = 0; $i<$res['count']; $i++) {
@@ -130,4 +138,4 @@
}
-?>
\ 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-04-28 21:52:47
|
Revision: 310
http://openupload.svn.sourceforge.net/openupload/?rev=310&view=rev
Author: tsdogs
Date: 2009-04-28 21:52:37 +0000 (Tue, 28 Apr 2009)
Log Message:
-----------
misspelled domain
Modified Paths:
--------------
trunk/www/config.inc.php.example
Modified: trunk/www/config.inc.php.example
===================================================================
--- trunk/www/config.inc.php.example 2009-04-28 21:52:20 UTC (rev 309)
+++ trunk/www/config.inc.php.example 2009-04-28 21:52:37 UTC (rev 310)
@@ -90,7 +90,7 @@
# $CONFIG['ldap']['host'] = '127.0.0.1';
/* specify that it is an Active directory */
# $CONFIG['ldap']['type'] = 'AD';
-# $CONFIG['ldap']['user'] = 'rea...@ro...';
+# $CONFIG['ldap']['user'] = 'rea...@yo...';
# $CONFIG['ldap']['password'] = 'readonlypassword';
/* DOMAIN for user login */
# $CONFIG['ldap']['domain'] = 'yourdomain.local';
@@ -99,7 +99,7 @@
# $CONFIG['ldap']['userclass']='user';
# $CONFIG['ldap']['uid']='cn';
# $CONFIG['ldap']['userfields'] = array ( 'cn' => 'login', 'name' => 'name', 'memberof' => 'group_id', 'mail' => 'email');
-# $CONFIG['ldap']['groupdn'] = 'dc=roverdom,dc=local';
+# $CONFIG['ldap']['groupdn'] = 'dc=yourdomain,dc=local';
# $CONFIG['ldap']['groupclass']='group';
# $CONFIG['ldap']['gid']='distinguishedname';
# $CONFIG['ldap']['groupfields'] = array ( 'cn' => 'name', 'name' => 'description' );
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ts...@us...> - 2009-04-28 21:52:30
|
Revision: 309
http://openupload.svn.sourceforge.net/openupload/?rev=309&view=rev
Author: tsdogs
Date: 2009-04-28 21:52:20 +0000 (Tue, 28 Apr 2009)
Log Message:
-----------
misspelled domain
Modified Paths:
--------------
branches/v0.4/www/config.inc.php.example
Modified: branches/v0.4/www/config.inc.php.example
===================================================================
--- branches/v0.4/www/config.inc.php.example 2009-04-18 12:01:06 UTC (rev 308)
+++ branches/v0.4/www/config.inc.php.example 2009-04-28 21:52:20 UTC (rev 309)
@@ -90,7 +90,7 @@
# $CONFIG['ldap']['host'] = '127.0.0.1';
/* specify that it is an Active directory */
# $CONFIG['ldap']['type'] = 'AD';
-# $CONFIG['ldap']['user'] = 'rea...@ro...';
+# $CONFIG['ldap']['user'] = 'rea...@yo...';
# $CONFIG['ldap']['password'] = 'readonlypassword';
/* DOMAIN for user login */
# $CONFIG['ldap']['domain'] = 'yourdomain.local';
@@ -99,7 +99,7 @@
# $CONFIG['ldap']['userclass']='user';
# $CONFIG['ldap']['uid']='cn';
# $CONFIG['ldap']['userfields'] = array ( 'cn' => 'login', 'name' => 'name', 'memberof' => 'group_id', 'mail' => 'email');
-# $CONFIG['ldap']['groupdn'] = 'dc=roverdom,dc=local';
+# $CONFIG['ldap']['groupdn'] = 'dc=yourdomain,dc=local';
# $CONFIG['ldap']['groupclass']='group';
# $CONFIG['ldap']['gid']='distinguishedname';
# $CONFIG['ldap']['groupfields'] = array ( 'cn' => 'name', 'name' => 'description' );
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ts...@us...> - 2009-04-18 12:01:08
|
Revision: 308
http://openupload.svn.sourceforge.net/openupload/?rev=308&view=rev
Author: tsdogs
Date: 2009-04-18 12:01:06 +0000 (Sat, 18 Apr 2009)
Log Message:
-----------
missing tr for wording
Modified Paths:
--------------
trunk/templates/default/modules/files/uploadProgress.tpl
Modified: trunk/templates/default/modules/files/uploadProgress.tpl
===================================================================
--- trunk/templates/default/modules/files/uploadProgress.tpl 2009-04-18 11:57:31 UTC (rev 307)
+++ trunk/templates/default/modules/files/uploadProgress.tpl 2009-04-18 12:01:06 UTC (rev 308)
@@ -1,5 +1,5 @@
<center><img src="{tpl file=/img/wait.gif}"> {tr}Uploading{/tr}:
-{if $progress.complete>0}{$progress.complete|fsize_format} of {$progress.total|fsize_format} <b>({$progress.percentage}%)</b>
+{if $progress.complete>0}{$progress.complete|fsize_format} [tr}of{/tr} {$progress.total|fsize_format} <b>({$progress.percentage}%)</b>
{else}
{tr}please wait ...{/tr}
{/if}</center>
\ 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-04-18 11:57:33
|
Revision: 307
http://openupload.svn.sourceforge.net/openupload/?rev=307&view=rev
Author: tsdogs
Date: 2009-04-18 11:57:31 +0000 (Sat, 18 Apr 2009)
Log Message:
-----------
add v0.4 and some html markup fixes
Modified Paths:
--------------
web/index.html
Modified: web/index.html
===================================================================
--- web/index.html 2009-04-18 11:00:04 UTC (rev 306)
+++ web/index.html 2009-04-18 11:57:31 UTC (rev 307)
@@ -17,10 +17,10 @@
<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>
+ <a href="http://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="http://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" 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>
+ <a href="http://sourceforge.net/project/screenshots.php?group_id=242018" rel="external"><img src="img/2.jpg" alt="" /></a><img src="img/5.jpg" alt="" /><a href="http://sourceforge.net/project/showfiles.php?group_id=242018" rel="external"><img src="img/6.jpg" alt="" /></a>
</div>
</div>
@@ -43,14 +43,9 @@
</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">
- 2009.03.09<br /><b>Development version 0.4rc1</b><br />
- I have now released the RELEASE CANDIDATE version of the upcoming 0.4 release<br />
+ <div style="font-size:11pt"><b>Stable version 0.4</b> - 2009.04.18<br /></div>
+ I'm pleased to announce the availability of the new Open Upload version.<br />
Major changes are:
<ul>
<li>New logo</li>
@@ -62,9 +57,14 @@
<li>Multiple file upload/download</li>
<li>Added plugins: Maximum File Size Limit per Group, Compression, Expiration date</li>
</ul>
- As it's a RC it should be stable...<br />
- Click <a href="http://sourceforge.net/project/showfiles.php?group_id=242018&package_id=294593&release_id=659152" rel="external">here</a> to download.
+ Please report bugs ...<br /> <br />
+ Click <a href="http://sourceforge.net/project/showfiles.php?group_id=242018&package_id=294593&release_id=659152" rel="external">here</a> to download.<br />
</div>
+<hr />
+ <div class="text">
+ <div style="font-size:11pt"><b>Old 0.3 release</b> - 2008.12.06<br /></div>
+ Release 0.3c <br />Click <a href="http://sourceforge.net/project/showfiles.php?group_id=242018&package_id=294593&release_id=636546" rel="external">here</a> to download.
+ </div>
</div>
<div class="section">
<h1 class="title">Mailing Lists</h1>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ts...@us...> - 2009-04-18 11:00:18
|
Revision: 306
http://openupload.svn.sourceforge.net/openupload/?rev=306&view=rev
Author: tsdogs
Date: 2009-04-18 11:00:04 +0000 (Sat, 18 Apr 2009)
Log Message:
-----------
fix utf-8 string
Modified Paths:
--------------
trunk/sql/mysql/2_base.sql
trunk/sql/pgsql/2_base.sql
trunk/sql/txt/langs.txt
Modified: trunk/sql/mysql/2_base.sql
===================================================================
--- trunk/sql/mysql/2_base.sql 2009-04-18 10:59:12 UTC (rev 305)
+++ trunk/sql/mysql/2_base.sql 2009-04-18 11:00:04 UTC (rev 306)
@@ -32,11 +32,11 @@
-- Dump dei dati per la tabella `langs`
--
-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);
-INSERT INTO `langs` (`id`, `name`, `locale`, `browser`, `charset`, `active`) VALUES('zh_CN', '中文', 'zh_CN.utf8', '[zh];[zh-CN]', 'utf8', 1);
+INSERT INTO `langs` (`id`, `name`, `locale`, `browser`, `charset`, `active`) VALUES('en', 'English', 'en_EN', '[en];[en-EN]', 'utf-8', 1);
+INSERT INTO `langs` (`id`, `name`, `locale`, `browser`, `charset`, `active`) VALUES('it', 'Italiano', 'it_IT.utf8', '[it];[it-IT]', 'utf-8', 1);
+INSERT INTO `langs` (`id`, `name`, `locale`, `browser`, `charset`, `active`) VALUES('fr', 'Français', 'fr_FR.utf8', '[fr];[fr-FR]', 'utf-8', 1);
+INSERT INTO `langs` (`id`, `name`, `locale`, `browser`, `charset`, `active`) VALUES('de', 'Deutsch', 'de_DE.utf8', '[de];[de-DE]', 'utf-8', 1);
+INSERT INTO `langs` (`id`, `name`, `locale`, `browser`, `charset`, `active`) VALUES('zh_CN', '中文', 'zh_CN.utf8', '[zh];[zh-CN]', 'utf-8', 1);
--
-- Dump dei dati per la tabella `users`
Modified: trunk/sql/pgsql/2_base.sql
===================================================================
--- trunk/sql/pgsql/2_base.sql 2009-04-18 10:59:12 UTC (rev 305)
+++ trunk/sql/pgsql/2_base.sql 2009-04-18 11:00:04 UTC (rev 306)
@@ -82,11 +82,11 @@
-- Data for Name: langs; Type: TABLE DATA; Schema: public; Owner: openupload
--
-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);
-INSERT INTO langs VALUES ('zh_CN', '中文', 'zh_CN.utf8', '[zh];[zh-CN]', 'utf8', 1);
+INSERT INTO langs VALUES ('en', 'English', 'en_EN', '[en];[en-EN]', 'utf-8', 1);
+INSERT INTO langs VALUES ('it', 'Italiano', 'it_IT.utf8', '[it];[it-IT]', 'utf-8', 1);
+INSERT INTO langs VALUES ('fr', 'Français', 'fr_FR.utf8', '[fr];[fr-FR]', 'utf-8', 1);
+INSERT INTO langs VALUES ('de', 'Deutsch', 'de_DE.utf8', '[de];[de-DE]', 'utf-8', 1);
+INSERT INTO langs VALUES ('zh_CN', '中文', 'zh_CN.utf8', '[zh];[zh-CN]', 'utf-8', 1);
--
Modified: trunk/sql/txt/langs.txt
===================================================================
--- trunk/sql/txt/langs.txt 2009-04-18 10:59:12 UTC (rev 305)
+++ trunk/sql/txt/langs.txt 2009-04-18 11:00:04 UTC (rev 306)
@@ -1,6 +1,6 @@
id|name|locale|browser|charset|active
-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
-zh_CN|中文|zh_CN.utf8|[zh];[zh-CN]|utf8|1
+en|English|en_EN|[en];[en-EN]|utf-8|1
+it|Italiano|it_IT.utf8|[it];[it-IT]|utf-8|1
+fr|Français|fr_FR.utf8|[fr];[fr-FR]|utf-8|1
+de|Deutsch|de_DE.utf8|[de];[de-DE]|utf-8|1
+zh_CN|中文|zh_CN.utf8|[zh];[zh-CN]|utf-8|1
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ts...@us...> - 2009-04-18 10:59:21
|
Revision: 305
http://openupload.svn.sourceforge.net/openupload/?rev=305&view=rev
Author: tsdogs
Date: 2009-04-18 10:59:12 +0000 (Sat, 18 Apr 2009)
Log Message:
-----------
fix utf-8 string
Modified Paths:
--------------
branches/v0.4/sql/mysql/2_base.sql
branches/v0.4/sql/pgsql/2_base.sql
branches/v0.4/sql/txt/langs.txt
Modified: branches/v0.4/sql/mysql/2_base.sql
===================================================================
--- branches/v0.4/sql/mysql/2_base.sql 2009-04-18 10:58:47 UTC (rev 304)
+++ branches/v0.4/sql/mysql/2_base.sql 2009-04-18 10:59:12 UTC (rev 305)
@@ -32,11 +32,11 @@
-- Dump dei dati per la tabella `langs`
--
-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);
-INSERT INTO `langs` (`id`, `name`, `locale`, `browser`, `charset`, `active`) VALUES('zh_CN', '中文', 'zh_CN.utf8', '[zh];[zh-CN]', 'utf8', 1);
+INSERT INTO `langs` (`id`, `name`, `locale`, `browser`, `charset`, `active`) VALUES('en', 'English', 'en_EN', '[en];[en-EN]', 'utf-8', 1);
+INSERT INTO `langs` (`id`, `name`, `locale`, `browser`, `charset`, `active`) VALUES('it', 'Italiano', 'it_IT.utf8', '[it];[it-IT]', 'utf-8', 1);
+INSERT INTO `langs` (`id`, `name`, `locale`, `browser`, `charset`, `active`) VALUES('fr', 'Français', 'fr_FR.utf8', '[fr];[fr-FR]', 'utf-8', 1);
+INSERT INTO `langs` (`id`, `name`, `locale`, `browser`, `charset`, `active`) VALUES('de', 'Deutsch', 'de_DE.utf8', '[de];[de-DE]', 'utf-8', 1);
+INSERT INTO `langs` (`id`, `name`, `locale`, `browser`, `charset`, `active`) VALUES('zh_CN', '中文', 'zh_CN.utf8', '[zh];[zh-CN]', 'utf-8', 1);
--
-- Dump dei dati per la tabella `users`
Modified: branches/v0.4/sql/pgsql/2_base.sql
===================================================================
--- branches/v0.4/sql/pgsql/2_base.sql 2009-04-18 10:58:47 UTC (rev 304)
+++ branches/v0.4/sql/pgsql/2_base.sql 2009-04-18 10:59:12 UTC (rev 305)
@@ -82,11 +82,11 @@
-- Data for Name: langs; Type: TABLE DATA; Schema: public; Owner: openupload
--
-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);
-INSERT INTO langs VALUES ('zh_CN', '中文', 'zh_CN.utf8', '[zh];[zh-CN]', 'utf8', 1);
+INSERT INTO langs VALUES ('en', 'English', 'en_EN', '[en];[en-EN]', 'utf-8', 1);
+INSERT INTO langs VALUES ('it', 'Italiano', 'it_IT.utf8', '[it];[it-IT]', 'utf-8', 1);
+INSERT INTO langs VALUES ('fr', 'Français', 'fr_FR.utf8', '[fr];[fr-FR]', 'utf-8', 1);
+INSERT INTO langs VALUES ('de', 'Deutsch', 'de_DE.utf8', '[de];[de-DE]', 'utf-8', 1);
+INSERT INTO langs VALUES ('zh_CN', '中文', 'zh_CN.utf8', '[zh];[zh-CN]', 'utf-8', 1);
--
Modified: branches/v0.4/sql/txt/langs.txt
===================================================================
--- branches/v0.4/sql/txt/langs.txt 2009-04-18 10:58:47 UTC (rev 304)
+++ branches/v0.4/sql/txt/langs.txt 2009-04-18 10:59:12 UTC (rev 305)
@@ -1,6 +1,6 @@
id|name|locale|browser|charset|active
-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
-zh_CN|中文|zh_CN.utf8|[zh];[zh-CN]|utf8|1
+en|English|en_EN|[en];[en-EN]|utf-8|1
+it|Italiano|it_IT.utf8|[it];[it-IT]|utf-8|1
+fr|Français|fr_FR.utf8|[fr];[fr-FR]|utf-8|1
+de|Deutsch|de_DE.utf8|[de];[de-DE]|utf-8|1
+zh_CN|中文|zh_CN.utf8|[zh];[zh-CN]|utf-8|1
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ts...@us...> - 2009-04-18 10:59:01
|
Revision: 304
http://openupload.svn.sourceforge.net/openupload/?rev=304&view=rev
Author: tsdogs
Date: 2009-04-18 10:58:47 +0000 (Sat, 18 Apr 2009)
Log Message:
-----------
fix italian translation
Modified Paths:
--------------
branches/v0.4/locale/it/LC_MESSAGES/openupload.mo
branches/v0.4/locale/it/LC_MESSAGES/openupload.po
branches/v0.4/locale/it.inc.php
Modified: branches/v0.4/locale/it/LC_MESSAGES/openupload.mo
===================================================================
(Binary files differ)
Modified: branches/v0.4/locale/it/LC_MESSAGES/openupload.po
===================================================================
--- branches/v0.4/locale/it/LC_MESSAGES/openupload.po 2009-04-18 10:52:05 UTC (rev 303)
+++ branches/v0.4/locale/it/LC_MESSAGES/openupload.po 2009-04-18 10:58:47 UTC (rev 304)
@@ -3,7 +3,7 @@
"Project-Id-Version: OpenUpload\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-03-03 11:32+0100\n"
-"PO-Revision-Date: 2009-03-03 11:32+0100\n"
+"PO-Revision-Date: 2009-04-18 12:58+0100\n"
"Last-Translator: Alessandro Briosi <ts...@br...>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@@ -327,7 +327,7 @@
#: /home/alex/devel/php/openupload/trunk/plugins/mimetypes.inc.php:44
msgid "This file type (%1) is not allowed on this site!"
-msgstr "I vs. file saranno mantenuti sul ns. server per %1 giorni"
+msgstr "Questo tipo di file (%1) non è consentito!"
#: /home/alex/devel/php/openupload/trunk/plugins/captcha.inc.php:7
msgid "Add captcha protection to file download and user registration"
Modified: branches/v0.4/locale/it.inc.php
===================================================================
--- branches/v0.4/locale/it.inc.php 2009-04-18 10:52:05 UTC (rev 303)
+++ branches/v0.4/locale/it.inc.php 2009-04-18 10:58:47 UTC (rev 304)
@@ -70,7 +70,7 @@
$tr["Allowed mime types"] = "Tipi mime consentiti";
$tr["Types in message"] = "Messaggio all'utente";
$tr["WARNING: no mime types defined. Plugin has been disabled!"] = "ATTENZIONE: nessun tipo di file definito. Il plugin è stato disabilitato!";
-$tr["This file type (%1) is not allowed on this site!"] = "I vs. file saranno mantenuti sul ns. server per %1 giorni";
+$tr["This file type (%1) is not allowed on this site!"] = "Questo tipo di file (%1) non è consentito!";
$tr["Add captcha protection to file download and user registration"] = "Aggiunge la protezione captcha al download del file e alla registrazione utente";
$tr["Wrong captcha code! please try again."] = "Captcha errato! Riprova.";
$tr["Compress the uploaded files"] = "Comprime i file caricati";
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ts...@us...> - 2009-04-18 10:52:15
|
Revision: 303
http://openupload.svn.sourceforge.net/openupload/?rev=303&view=rev
Author: tsdogs
Date: 2009-04-18 10:52:05 +0000 (Sat, 18 Apr 2009)
Log Message:
-----------
fix italian translation
Modified Paths:
--------------
trunk/locale/it.inc.php
Modified: trunk/locale/it.inc.php
===================================================================
--- trunk/locale/it.inc.php 2009-04-18 10:52:02 UTC (rev 302)
+++ trunk/locale/it.inc.php 2009-04-18 10:52:05 UTC (rev 303)
@@ -70,7 +70,7 @@
$tr["Allowed mime types"] = "Tipi mime consentiti";
$tr["Types in message"] = "Messaggio all'utente";
$tr["WARNING: no mime types defined. Plugin has been disabled!"] = "ATTENZIONE: nessun tipo di file definito. Il plugin è stato disabilitato!";
-$tr["This file type (%1) is not allowed on this site!"] = "I vs. file saranno mantenuti sul ns. server per %1 giorni";
+$tr["This file type (%1) is not allowed on this site!"] = "Questo tipo di file (%1) non è consentito.";
$tr["Add captcha protection to file download and user registration"] = "Aggiunge la protezione captcha al download del file e alla registrazione utente";
$tr["Wrong captcha code! please try again."] = "Captcha errato! Riprova.";
$tr["Compress the uploaded files"] = "Comprime i file caricati";
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ts...@us...> - 2009-04-18 10:52:11
|
Revision: 302
http://openupload.svn.sourceforge.net/openupload/?rev=302&view=rev
Author: tsdogs
Date: 2009-04-18 10:52:02 +0000 (Sat, 18 Apr 2009)
Log Message:
-----------
fix italian translation
Modified Paths:
--------------
trunk/locale/it/LC_MESSAGES/openupload.mo
trunk/locale/it/LC_MESSAGES/openupload.po
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 2009-04-18 10:50:19 UTC (rev 301)
+++ trunk/locale/it/LC_MESSAGES/openupload.po 2009-04-18 10:52:02 UTC (rev 302)
@@ -3,7 +3,7 @@
"Project-Id-Version: OpenUpload\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-03-03 11:32+0100\n"
-"PO-Revision-Date: 2009-03-03 11:32+0100\n"
+"PO-Revision-Date: 2009-03-13 17:20+0100\n"
"Last-Translator: Alessandro Briosi <ts...@br...>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@@ -327,7 +327,7 @@
#: /home/alex/devel/php/openupload/trunk/plugins/mimetypes.inc.php:44
msgid "This file type (%1) is not allowed on this site!"
-msgstr "I vs. file saranno mantenuti sul ns. server per %1 giorni"
+msgstr "Questo tipo di file (%1) non è consentito!"
#: /home/alex/devel/php/openupload/trunk/plugins/captcha.inc.php:7
msgid "Add captcha protection to file download and user registration"
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ts...@us...> - 2009-04-18 10:50:29
|
Revision: 301
http://openupload.svn.sourceforge.net/openupload/?rev=301&view=rev
Author: tsdogs
Date: 2009-04-18 10:50:19 +0000 (Sat, 18 Apr 2009)
Log Message:
-----------
Jochen Derwae - a few html fixes
Modified Paths:
--------------
trunk/www/setup.inc.php
Modified: trunk/www/setup.inc.php
===================================================================
--- trunk/www/setup.inc.php 2009-04-18 10:50:00 UTC (rev 300)
+++ trunk/www/setup.inc.php 2009-04-18 10:50:19 UTC (rev 301)
@@ -1,5 +1,40 @@
<?php
+/**
+ * Project: OpenUpload
+ * File: index.php
+ *
+ * LICENSE:
+ *
+ * Copyright 2008-2009 Alessandro Briosi
+ *
+ * This file is part of OpenUpload.
+ *
+ * OpenUpload is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * OpenUpload is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with OpenUpload; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ *
+ * @link http://openupload.sf.net/
+ * @copyright 2008 Alessandro Briosi
+ * @author Alessandro Briosi <tsdogs at briosix dot org>
+ * @package OpenUpload
+ * @version 0.4
+ *
+ * 2009-04-16 - Jochen Derwae - www.coaladesign.com
+ * There was a small inconsistency in the html code at the bottom: body start tag was missing,
+ * head was closed before the styles and the root div wasn't closed
+ */
+
if (!defined('__VALID_CALLING_SCRIPT')) die('DIRECT ACCESS IS DENIED');
ob_start();
@@ -223,11 +258,11 @@
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];[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]', 'charset' => 'utf8', 'active' => 1),
- array ('id' => 'de', 'name' => 'Deutsch', 'locale' => 'de_DE.utf8', 'browser' => '[de];[de-DE]', 'charset' => 'utf8', 'active' => 1),
- array ('id' => 'zh_CN', 'name' => '中文', 'locale' => 'zh_CN.utf8', 'browser' => '[zh];[zh-CN]', 'charset' => 'utf8', 'active' => 1),
+ array ('id' => 'en', 'name' => 'English', 'locale' => 'en_EN', 'browser' => '[en];[en-EN];[en-US]', 'charset' => 'utf-8', 'active' => 1),
+ array ('id' => 'it', 'name' => 'Italiano', 'locale' => 'it_IT.utf8', 'browser' => '[it];[it-IT]', 'charset' => 'utf-8', 'active' => 1),
+ array ('id' => 'fr', 'name' => 'Français', 'locale' => 'fr_FR.utf8', 'browser' => '[fr];[fr-FR]', 'charset' => 'utf-8', 'active' => 1),
+ array ('id' => 'de', 'name' => 'Deutsch', 'locale' => 'de_DE.utf8', 'browser' => '[de];[de-DE]', 'charset' => 'utf-8', 'active' => 1),
+ array ('id' => 'zh_CN', 'name' => '中文', 'locale' => 'zh_CN.utf8', 'browser' => '[zh];[zh-CN]', 'charset' => 'utf-8', 'active' => 1),
),
'users' => array (
array ( 'id' => 1, 'login' => '%1', 'password' => '%2', 'name' => 'Administrator', 'group_name' => '%3', 'email' => '%6',
@@ -548,7 +583,7 @@
<TD><input type="text" name="www_root" size="50" value="<?php echo $CONFIG['WWW_ROOT']; ?>"></TD></TR>
<TR><TD>DATA PATH:</TD>
<TD><input type="text" name="data_path" size="50" value="<?php echo $CONFIG['DATA_PATH']; ?>"></TD></TR>
-<TR><TD colspan="2"><input type="submit" value="Next >>"</TD></TR>
+<TR><TD colspan="2"><input type="submit" value="Next >>"></TD></TR>
</table>
</form>
<?php
@@ -1452,7 +1487,7 @@
?>
<html>
-<head><TITLE>OpenUpload Setup Script</TITLE></head>
+<head><TITLE>OpenUpload Setup Script</TITLE>
<style>
body {
font-family: Helvetica, Arial;
@@ -1547,6 +1582,8 @@
text-decoration: none;
}
</style>
+</head>
+<body>
<div>
<div id="header">
<div id="logo"><img src="<?php echo $path; ?>/img/openupload.jpg" border="0"></div>
@@ -1592,5 +1629,6 @@
<br /> <br />
<!-- footer -->
<div id="footer"><a href="http://openupload.sf.net">Open Upload</a> - Created by Alessandro Briosi © 2009</div>
+</div>
</body>
</html>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ts...@us...> - 2009-04-18 10:50:11
|
Revision: 300
http://openupload.svn.sourceforge.net/openupload/?rev=300&view=rev
Author: tsdogs
Date: 2009-04-18 10:50:00 +0000 (Sat, 18 Apr 2009)
Log Message:
-----------
Jochen Derwae - a few html fixes
Modified Paths:
--------------
branches/v0.4/www/setup.inc.php
Modified: branches/v0.4/www/setup.inc.php
===================================================================
--- branches/v0.4/www/setup.inc.php 2009-03-27 18:56:22 UTC (rev 299)
+++ branches/v0.4/www/setup.inc.php 2009-04-18 10:50:00 UTC (rev 300)
@@ -1,5 +1,41 @@
<?php
+/**
+ * Project: OpenUpload
+ * File: index.php
+ *
+ * LICENSE:
+ *
+ * Copyright 2008-2009 Alessandro Briosi
+ *
+ * This file is part of OpenUpload.
+ *
+ * OpenUpload is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * OpenUpload is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with OpenUpload; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ *
+ * @link http://openupload.sf.net/
+ * @copyright 2008 Alessandro Briosi
+ * @author Alessandro Briosi <tsdogs at briosix dot org>
+ * @package OpenUpload
+ * @version 0.4
+ *
+ * 2009-04-16 - Jochen Derwae - www.coaladesign.com
+ * There was a small inconsistency in the html code at the bottom: body start tag was missing,
+ * head was closed before the styles and the root div wasn't closed
+ */
+
+
if (!defined('__VALID_CALLING_SCRIPT')) die('DIRECT ACCESS IS DENIED');
ob_start();
@@ -223,11 +259,11 @@
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];[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]', 'charset' => 'utf8', 'active' => 1),
- array ('id' => 'de', 'name' => 'Deutsch', 'locale' => 'de_DE.utf8', 'browser' => '[de];[de-DE]', 'charset' => 'utf8', 'active' => 1),
- array ('id' => 'zh_CN', 'name' => '中文', 'locale' => 'zh_CN.utf8', 'browser' => '[zh];[zh-CN]', 'charset' => 'utf8', 'active' => 1),
+ array ('id' => 'en', 'name' => 'English', 'locale' => 'en_EN', 'browser' => '[en];[en-EN];[en-US]', 'charset' => 'utf-8', 'active' => 1),
+ array ('id' => 'it', 'name' => 'Italiano', 'locale' => 'it_IT.utf8', 'browser' => '[it];[it-IT]', 'charset' => 'utf-8', 'active' => 1),
+ array ('id' => 'fr', 'name' => 'Français', 'locale' => 'fr_FR.utf8', 'browser' => '[fr];[fr-FR]', 'charset' => 'utf-8', 'active' => 1),
+ array ('id' => 'de', 'name' => 'Deutsch', 'locale' => 'de_DE.utf8', 'browser' => '[de];[de-DE]', 'charset' => 'utf-8', 'active' => 1),
+ array ('id' => 'zh_CN', 'name' => '中文', 'locale' => 'zh_CN.utf8', 'browser' => '[zh];[zh-CN]', 'charset' => 'utf-8', 'active' => 1),
),
'users' => array (
array ( 'id' => 1, 'login' => '%1', 'password' => '%2', 'name' => 'Administrator', 'group_name' => '%3', 'email' => '%6',
@@ -548,7 +584,7 @@
<TD><input type="text" name="www_root" size="50" value="<?php echo $CONFIG['WWW_ROOT']; ?>"></TD></TR>
<TR><TD>DATA PATH:</TD>
<TD><input type="text" name="data_path" size="50" value="<?php echo $CONFIG['DATA_PATH']; ?>"></TD></TR>
-<TR><TD colspan="2"><input type="submit" value="Next >>"</TD></TR>
+<TR><TD colspan="2"><input type="submit" value="Next >>"></TD></TR>
</table>
</form>
<?php
@@ -1452,7 +1488,7 @@
?>
<html>
-<head><TITLE>OpenUpload Setup Script</TITLE></head>
+<head><TITLE>OpenUpload Setup Script</TITLE>
<style>
body {
font-family: Helvetica, Arial;
@@ -1547,6 +1583,8 @@
text-decoration: none;
}
</style>
+</head>
+<body>
<div>
<div id="header">
<div id="logo"><img src="<?php echo $path; ?>/img/openupload.jpg" border="0"></div>
@@ -1592,5 +1630,6 @@
<br /> <br />
<!-- footer -->
<div id="footer"><a href="http://openupload.sf.net">Open Upload</a> - Created by Alessandro Briosi © 2009</div>
+</div>
</body>
</html>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ts...@us...> - 2009-03-27 18:56:53
|
Revision: 299
http://openupload.svn.sourceforge.net/openupload/?rev=299&view=rev
Author: tsdogs
Date: 2009-03-27 18:56:22 +0000 (Fri, 27 Mar 2009)
Log Message:
-----------
update the release date
Modified Paths:
--------------
web/index.html
Modified: web/index.html
===================================================================
--- web/index.html 2009-03-27 18:54:24 UTC (rev 298)
+++ web/index.html 2009-03-27 18:56:22 UTC (rev 299)
@@ -49,7 +49,7 @@
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">
- 2009.02.06<br /><b>Development version 0.4rc1</b><br />
+ 2009.03.09<br /><b>Development version 0.4rc1</b><br />
I have now released the RELEASE CANDIDATE version of the upcoming 0.4 release<br />
Major changes are:
<ul>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ts...@us...> - 2009-03-27 18:54:34
|
Revision: 298
http://openupload.svn.sourceforge.net/openupload/?rev=298&view=rev
Author: tsdogs
Date: 2009-03-27 18:54:24 +0000 (Fri, 27 Mar 2009)
Log Message:
-----------
forgot to update for the rc1
Modified Paths:
--------------
web/index.html
Modified: web/index.html
===================================================================
--- web/index.html 2009-03-09 15:57:15 UTC (rev 297)
+++ web/index.html 2009-03-27 18:54:24 UTC (rev 298)
@@ -49,8 +49,8 @@
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">
- 2009.02.06<br /><b>Development version 0.4beta2</b><br />
- I have now released the second BETA version of the upcoming 0.4 release<br />
+ 2009.02.06<br /><b>Development version 0.4rc1</b><br />
+ I have now released the RELEASE CANDIDATE version of the upcoming 0.4 release<br />
Major changes are:
<ul>
<li>New logo</li>
@@ -62,7 +62,7 @@
<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 />
+ As it's a RC it should be stable...<br />
Click <a href="http://sourceforge.net/project/showfiles.php?group_id=242018&package_id=294593&release_id=659152" rel="external">here</a> to download.
</div>
</div>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|