Commit 1bda805d authored by Romain Courteaud's avatar Romain Courteaud Committed by Cédric de Saint Martin

Add page template info.

+ datetime fix
+ editorfield support
(cherry picked from commit 1a6716c6)
parent 1121670b
...@@ -111,7 +111,7 @@ def renderField(field, meta_type=None):\n ...@@ -111,7 +111,7 @@ def renderField(field, meta_type=None):\n
elif meta_type in ("StringField", "FloatField", "RelationStringField",\n elif meta_type in ("StringField", "FloatField", "RelationStringField",\n
"MultiRelationStringField", "EmailField", "TextAreaField",\n "MultiRelationStringField", "EmailField", "TextAreaField",\n
"LinesField", "ImageField", "FileField", "IntegerField",\n "LinesField", "ImageField", "FileField", "IntegerField",\n
"PasswordField"):\n "PasswordField", "EditorField"):\n
result = {\n result = {\n
"type": meta_type,\n "type": meta_type,\n
"key": field.generate_field_key(),\n "key": field.generate_field_key(),\n
...@@ -324,6 +324,13 @@ def renderFormDefinition(form, response_dict):\n ...@@ -324,6 +324,13 @@ def renderFormDefinition(form, response_dict):\n
\n \n
group_list.append((group[\'gid\'], field_list))\n group_list.append((group[\'gid\'], field_list))\n
response_dict["group_list"] = group_list\n response_dict["group_list"] = group_list\n
response_dict["title"] = form.getTitle()\n
response_dict["pt"] = form.pt\n
response_dict["action"] = form.action\n
\n
\n
\n
\n
\n \n
\n \n
context.Base_prepareCorsResponse(RESPONSE=response)\n context.Base_prepareCorsResponse(RESPONSE=response)\n
...@@ -649,6 +656,9 @@ elif mode == \'search\':\n ...@@ -649,6 +656,9 @@ elif mode == \'search\':\n
for select in select_list:\n for select in select_list:\n
property_value = document.getProperty(select, d=None)\n property_value = document.getProperty(select, d=None)\n
if property_value is not None:\n if property_value is not None:\n
if same_type(property_value, DateTime()):\n
# Serialize DateTime\n
property_value = property_value.rfc822()\n
document_result[select] = property_value\n document_result[select] = property_value\n
result_list.append(document_result)\n result_list.append(document_result)\n
result_dict[\'_embedded\'] = {"contents": result_list}\n result_dict[\'_embedded\'] = {"contents": result_list}\n
......
18 19
\ No newline at end of file \ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment