update tests repos

This commit is contained in:
Thomas NOËL 2014-11-21 11:52:02 +01:00
parent 082c333f1e
commit ac7fc9c915
8 changed files with 11 additions and 47 deletions

View File

@ -2,6 +2,6 @@
<service name="download_url">
<param name="host">repos.entrouvert.org</param>
<param name="protocol">http</param>
<param name="path">/python-entrouvert.git/snapshot/python-entrouvert-803fa50.tar.gz</param>
<param name="path">/python-entrouvert.git/snapshot/python-entrouvert-87131a8.tar.gz</param>
</service>
</services>

View File

@ -1,8 +1,8 @@
%{!?python_sitelib: %global python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
%define tag 6.2.0
%define minor 0
%define commit 803fa50
%define minor 2
%define commit 87131a8
%define version %{tag}.%{minor}.g%{commit}

View File

@ -2,6 +2,6 @@
<service name="download_url">
<param name="host">repos.entrouvert.org</param>
<param name="protocol">http</param>
<param name="path">/auquotidien.git/snapshot/auquotidien-743e9b8.tar.gz</param>
<param name="path">/auquotidien.git/snapshot/auquotidien-ace1cdc.tar.gz</param>
</service>
</services>

View File

@ -1,9 +1,9 @@
%{!?python_sitelib: %define python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
%define tag 1.12.1
%define commit 743e9b8
%define tag 1.12.5
%define commit ace1cdc
# si possible, minor = nombre de commit depuis le tag (à la "git describe")
%define minor 1
%define minor 3
# si minor == 0
#%define version %{tag}

View File

@ -2,6 +2,6 @@
<service name="download_url">
<param name="host">repos.entrouvert.org</param>
<param name="protocol">http</param>
<param name="path">/wcs.git/snapshot/wcs-ab5846d.tar.gz</param>
<param name="path">/wcs.git/snapshot/wcs-8fcee2f.tar.gz</param>
</service>
</services>

View File

@ -1,14 +0,0 @@
diff --git a/wcs/forms/root.py b/wcs/forms/root.py
index e1215ea..346d33f 100644
--- a/wcs/forms/root.py
+++ b/wcs/forms/root.py
@@ -316,6 +316,9 @@ class FormPage(Directory):
session = get_session()
+ if get_request().get_method() == 'POST':
+ get_logger().debug('POST data: %r', get_request().form)
+
existing_formdata = None
if editing:
existing_formdata = editing.data

View File

@ -1,22 +0,0 @@
From 959e21356fde24e4557312203c665d2a787a36a2 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= <fpeters@entrouvert.com>
Date: Tue, 22 Jul 2014 15:36:36 +0200
Subject: workflows: makes sure workflow id is exported as a string (#5198)
diff --git a/wcs/workflows.py b/wcs/workflows.py
index 8e6b870..66b9af3 100644
--- a/wcs/workflows.py
+++ b/wcs/workflows.py
@@ -207,7 +207,7 @@ class Workflow(StorableObject):
charset = get_publisher().site_charset
root = ET.Element('workflow')
if include_id and self.id and not str(self.id).startswith('_'):
- root.attrib['id'] = self.id
+ root.attrib['id'] = str(self.id)
ET.SubElement(root, 'name').text = unicode(self.name, charset)
roles_node = ET.SubElement(root, 'roles')
--
cgit v0.10.2

View File

@ -1,9 +1,9 @@
%{!?python_sitelib: %define python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
%define tag 1.12.4
%define commit ab5846d
%define tag 1.12.5
%define commit 8fcee2f
# si possible, minor = nombre de commit depuis le tag (à la "git describe")
%define minor 5
%define minor 23
# si minor == 0
#%define version %{tag}