Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
E
erp5_rtl_support
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Romain Courteaud
erp5_rtl_support
Commits
d3598a25
Commit
d3598a25
authored
Jan 24, 2012
by
Łukasz Nowak
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/master' into lazy_simulation_causality
parents
084f3d06
3d7d8c64
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
90 additions
and
3 deletions
+90
-3
bt5/erp5_crm/SkinTemplateItem/portal_skins/erp5_crm/Event_afterClone.xml
...inTemplateItem/portal_skins/erp5_crm/Event_afterClone.xml
+8
-0
bt5/erp5_crm/bt/revision
bt5/erp5_crm/bt/revision
+1
-1
bt5/erp5_ui_test_core/SkinTemplateItem/portal_skins/erp5_ui_test_core/TestTool_getLatestReportId.xml
...al_skins/erp5_ui_test_core/TestTool_getLatestReportId.xml
+79
-0
bt5/erp5_ui_test_core/SkinTemplateItem/portal_skins/erp5_ui_test_core/TestTool_getResults.xml
...em/portal_skins/erp5_ui_test_core/TestTool_getResults.xml
+1
-1
bt5/erp5_ui_test_core/bt/revision
bt5/erp5_ui_test_core/bt/revision
+1
-1
No files found.
bt5/erp5_crm/SkinTemplateItem/portal_skins/erp5_crm/Event_afterClone.xml
View file @
d3598a25
...
@@ -56,6 +56,14 @@ content_dict[\'title\'] = context.getTitle()\n
...
@@ -56,6 +56,14 @@ content_dict[\'title\'] = context.getTitle()\n
content_dict[\'text_content\'] = context.getTextContent()\n
content_dict[\'text_content\'] = context.getTextContent()\n
content_dict[\'content_type\'] = context.getContentType()\n
content_dict[\'content_type\'] = context.getContentType()\n
content_dict[\'data\'] = None\n
content_dict[\'data\'] = None\n
# we may have specified (i.e. user input) source and destination\n
content_dict[\'destination_list\'] = content_dict.get(\'destination_list\', []) + \\\n
[x.getRelativeUrl() for x in context.getDestinationValueList() \\\n
if x.getRelativeUrl() not in content_dict.get(\'destination_list\', [])]\n
content_dict[\'source_list\'] = content_dict.get(\'source_list\', []) + \\\n
[x.getRelativeUrl() for x in context.getSourceValueList() \\\n
if x.getRelativeUrl() not in content_dict.get(\'source_list\', [])]\n
\n
context.edit(**content_dict)\n
context.edit(**content_dict)\n
</string>
</value>
</string>
</value>
</item>
</item>
...
...
bt5/erp5_crm/bt/revision
View file @
d3598a25
587
588
\ No newline at end of file
\ No newline at end of file
bt5/erp5_ui_test_core/SkinTemplateItem/portal_skins/erp5_ui_test_core/TestTool_getLatestReportId.xml
0 → 100644
View file @
d3598a25
<?xml version="1.0"?>
<ZopeData>
<record
id=
"1"
aka=
"AAAAAAAAAAE="
>
<pickle>
<global
name=
"PythonScript"
module=
"Products.PythonScripts.PythonScript"
/>
</pickle>
<pickle>
<dictionary>
<item>
<key>
<string>
Script_magic
</string>
</key>
<value>
<int>
3
</int>
</value>
</item>
<item>
<key>
<string>
_bind_names
</string>
</key>
<value>
<object>
<klass>
<global
name=
"NameAssignments"
module=
"Shared.DC.Scripts.Bindings"
/>
</klass>
<tuple/>
<state>
<dictionary>
<item>
<key>
<string>
_asgns
</string>
</key>
<value>
<dictionary>
<item>
<key>
<string>
name_container
</string>
</key>
<value>
<string>
container
</string>
</value>
</item>
<item>
<key>
<string>
name_context
</string>
</key>
<value>
<string>
context
</string>
</value>
</item>
<item>
<key>
<string>
name_m_self
</string>
</key>
<value>
<string>
script
</string>
</value>
</item>
<item>
<key>
<string>
name_subpath
</string>
</key>
<value>
<string>
traverse_subpath
</string>
</value>
</item>
</dictionary>
</value>
</item>
</dictionary>
</state>
</object>
</value>
</item>
<item>
<key>
<string>
_body
</string>
</key>
<value>
<string>
portal_tests = container.portal_tests\n
if test_zuite_relative_url is not None:\n
# we care for a specific test zuite\n
portal_tests = portal_tests.restrictedTraverse(test_zuite_relative_url,\n
portal_tests)\n
\n
results = portal_tests.objectValues(\'Zuite Results\')\n
#results.sort()\n
\n
if not results:\n
return None\n
\n
return results[len(results) - 1].getId()\n
</string>
</value>
</item>
<item>
<key>
<string>
_params
</string>
</key>
<value>
<string>
test_zuite_relative_url=None
</string>
</value>
</item>
<item>
<key>
<string>
id
</string>
</key>
<value>
<string>
TestTool_getLatestReportId
</string>
</value>
</item>
</dictionary>
</pickle>
</record>
</ZopeData>
bt5/erp5_ui_test_core/SkinTemplateItem/portal_skins/erp5_ui_test_core/TestTool_getResults.xml
View file @
d3598a25
...
@@ -64,7 +64,7 @@ if not results:\n
...
@@ -64,7 +64,7 @@ if not results:\n
\n
\n
# Selenium results tests are just named "testTable.1", "testTable.2" and so forth.\n
# Selenium results tests are just named "testTable.1", "testTable.2" and so forth.\n
# We replace this by the path of the test, this way we can easily see which test has failed.\n
# We replace this by the path of the test, this way we can easily see which test has failed.\n
html = results[
0
].index_html()\n
html = results[
len(results) - 1
].index_html()\n
for idx, test_case in enumerate(portal_tests.listTestCases()):\n
for idx, test_case in enumerate(portal_tests.listTestCases()):\n
html = html.replace(\'>
testTable.%s
</a>
\' % (idx + 1), \'>%s
</a>
\' % test_case[\'path\'])\n
html = html.replace(\'>
testTable.%s
</a>
\' % (idx + 1), \'>%s
</a>
\' % test_case[\'path\'])\n
\n
\n
...
...
bt5/erp5_ui_test_core/bt/revision
View file @
d3598a25
46
48
\ No newline at end of file
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment