This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "FusionForge".

The branch, master has been updated
       via  7ba3bcb8bd937b3612b7b52f107f7df464bb90f8 (commit)
       via  576af8cbd4efb7b2f5305b8591a29fc4e4c82dd0 (commit)
       via  06f3e23fd2f27c4239213e49becdd7db41042b5e (commit)
      from  071e05ea989ddd7d5e8c7c4ec8ef5ae6c11eca4d (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
https://scm.fusionforge.org/anonscm/gitweb/?p=fusionforge/fusionforge.git;a=commitdiff;h=7ba3bcb8bd937b3612b7b52f107f7df464bb90f8

commit 7ba3bcb8bd937b3612b7b52f107f7df464bb90f8
Author: Franck Villaume <[email protected]>
Date:   Tue Mar 22 22:03:25 2016 +0100

    plugin scmsvn: WRITEDATA requires pycurl >= 7.19.3. CentOS7 is providing 
7.19.0. Use WRITEFUNCTION

diff --git a/src/plugins/scmsvn/libexec/viewvc.cgi 
b/src/plugins/scmsvn/libexec/viewvc.cgi
index 6241aaa..86b0b27 100755
--- a/src/plugins/scmsvn/libexec/viewvc.cgi
+++ b/src/plugins/scmsvn/libexec/viewvc.cgi
@@ -64,7 +64,7 @@ try:
     c.setopt(c.COOKIE, os.environ.get('HTTP_COOKIE', ''))
     c.setopt(c.USERAGENT, os.environ.get('HTTP_USER_AGENT', ''))
     c.setopt(c.HTTPHEADER, ['X-Forwarded-For: 
'+os.environ.get('HTTP_X_FORWARDED_FOR', '')])
-    c.setopt(c.WRITEDATA, buffer)
+    c.setopt(c.WRITEFUNCTION, buffer.write)
     c.perform()
     c.close()
     body = buffer.getvalue()

https://scm.fusionforge.org/anonscm/gitweb/?p=fusionforge/fusionforge.git;a=commitdiff;h=576af8cbd4efb7b2f5305b8591a29fc4e4c82dd0

commit 576af8cbd4efb7b2f5305b8591a29fc4e4c82dd0
Author: Franck Villaume <[email protected]>
Date:   Tue Mar 22 17:45:50 2016 +0100

    tab vs. space

diff --git a/src/www/scm/viewvc.php b/src/www/scm/viewvc.php
index 0c7ba80..e735e67 100644
--- a/src/www/scm/viewvc.php
+++ b/src/www/scm/viewvc.php
@@ -91,8 +91,8 @@ if ($external_scm) {
                $server_script = '/authscm/'.$u->getUnixName().'/viewvc';
        // pass the parameters passed to this script to the remote script in 
the same fashion
        $protocol = forge_get_config('use_ssl', 'scmsvn')? 'https://' : 
'http://';
-    $pathinfo = (isset($_SERVER['PATH_INFO']) ? $_SERVER['PATH_INFO'] : '/');
-    $pathinfo = preg_replace('/ /', '%20', $pathinfo);
+       $pathinfo = (isset($_SERVER['PATH_INFO']) ? $_SERVER['PATH_INFO'] : 
'/');
+       $pathinfo = preg_replace('/ /', '%20', $pathinfo);
        $script_url = $protocol . forge_get_config('scm_host') . $server_script
                . $pathinfo . '?' . $_SERVER["QUERY_STRING"];
        if ($redirect) {

https://scm.fusionforge.org/anonscm/gitweb/?p=fusionforge/fusionforge.git;a=commitdiff;h=06f3e23fd2f27c4239213e49becdd7db41042b5e

commit 06f3e23fd2f27c4239213e49becdd7db41042b5e
Author: Franck Villaume <[email protected]>
Date:   Tue Mar 22 16:23:41 2016 +0100

    plugin scmgit: add missing var

diff --git a/src/plugins/scmgit/common/GitPlugin.class.php 
b/src/plugins/scmgit/common/GitPlugin.class.php
index f272985..99a10f0 100644
--- a/src/plugins/scmgit/common/GitPlugin.class.php
+++ b/src/plugins/scmgit/common/GitPlugin.class.php
@@ -1231,6 +1231,7 @@ control over it to the project's administrator.");
                        $f = fopen($filename, 'r');
                        unlink($filename);
 
+                       $i = 0;
                        while (!feof($f) && $data = fgets($f)) {
                                $line = trim($data);
                                $splitedLine = explode('||', $line);

-----------------------------------------------------------------------

Summary of changes:
 src/plugins/scmgit/common/GitPlugin.class.php | 1 +
 src/plugins/scmsvn/libexec/viewvc.cgi         | 2 +-
 src/www/scm/viewvc.php                        | 4 ++--
 3 files changed, 4 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
FusionForge

_______________________________________________
Fusionforge-commits mailing list
[email protected]
http://lists.fusionforge.org/cgi-bin/mailman/listinfo/fusionforge-commits

Reply via email to