Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xueyun Qian
erp5
Commits
a7671d79
Commit
a7671d79
authored
12 years ago
by
Kazuhiko Shiozaki
Browse files
Options
Download
Plain Diff
Merge branch 'for_testrunner_1'
parents
97d2dbbb
26187d69
master
2017_04
2018_10
2018_10_squashed
HBTreeFolder2
allow_login_change
allow_login_change_wip
arnau
arnau-kns
arnau-kns-without-property-mapping
arnau-merge
arnau-poc
auto_extend_select_list
autoflake
backup_erp5_workflow
bk_erp5ish_actions_tool
bk_sqlcatalog
boc-interaction-drop
bt_owner
cache
catalog_fulltext
catalog_fulltext_old
cedric
cedriclen
cedriclen-eos
cherry-pick-116c24a0
cherry-pick-6f9973dd
cleanJSByJSLint
clean_up_upgrader
compact_title_no_reference
credential_update_action
datetimefield
douglas_forum
dream_distributor
eos-dev
erp5-component
erp5-data-notebook
erp5-forum
erp5-preference
erp5-release
erp5-slapos-upgrade
erp5-util-testing
erp5-vifib
erp5-vifib-cleanup
erp5_calendar
erp5_free_subscription
erp5_workflow
fix_system_processes_ownership
for_testrunner_1
gabriel
gabriel-fix-rounding-in-accounting-generation
gabriel-fix-rounding-in-accounting-generation2
gadget-json-value
http_cache_fix
improve_default_caching_policy_manager
interaction-drop
isDeletable
item_tracking_graph_editor
ivan
jerome-bt-reference-doc
jerome-test
jerome_composition_archived
jerome_events
jerome_graph_editor
jerome_graph_editor_renderjs
jerome_new_style_solve_divergence
jerome_promise_in_tests
jerome_user_preference_time_zone
jio
kns
lignan
lingnan
listbox-generator
mame-bt5-cleanup
mame-erp5_project-cleanup
mame-naming-convention
mame-naming-convention-list_method
mame-test-stock-indexation
mame-work
master-erp5-test-result-scalability
master-erp5-test-result-scalability-rebase
master-test-fix-additionalbt5path
master_no_guard_on_workflow_transition
merge_xhtml_jquery
mmariani-inventory
mrp
new-render-presentation
nexedi-erp5-jp
notification_tool_constraint
ods_style_sheet_per_report_section_deferred_style
officejs
pere
portal_solver_process_security_configuration
presentation
rafael
rafael-interaction-drop-cleanup
rafael-promise
rebased_mrp
romain-fulltext
scalability-master2
scalability-master2-rebase
scalability-rebase
shop-box
shop-box-rebased
simulation
sms_activate
strict_catalog
syncml
test_page
testnode_software_link
timezones
tristan
tristan-merge
tristan-performance
upgradeSite
vivekpab_erp5webrenderjs_layoutconfig
vivekpab_jabberclient
vivekpab_renderjs_interfaces
wenjie
wenjie_branch
xiaowu_newui
yryr
yryr-components-cp
yryr-inventory-cache
yryr-test
yryr-with-components
yusei
erp5.util-0.4.44
erp5.util-0.4.43
erp5.util-0.4.41
erp5.util-0.4.40
erp5.util-0.4.37
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
product/ERP5/Document/SimulationMovement.py
product/ERP5/Document/SimulationMovement.py
+1
-1
product/ERP5/ExplanationCache.py
product/ERP5/ExplanationCache.py
+2
-2
product/ERP5/bootstrap/erp5_core/SkinTemplateItem/portal_skins/erp5_core/Base_getRelatedDocumentList.xml
...em/portal_skins/erp5_core/Base_getRelatedDocumentList.xml
+1
-1
product/ERP5/bootstrap/erp5_core/bt/revision
product/ERP5/bootstrap/erp5_core/bt/revision
+1
-1
No files found.
product/ERP5/Document/SimulationMovement.py
View file @
a7671d79
...
...
@@ -716,7 +716,7 @@ class SimulationMovement(PropertyRecordableMixin, Movement, ExplainableMixin):
catalog_simulation_movement_list
=
portal_catalog
(
portal_type
=
'Simulation Movement'
,
causality_uid
=
[
p
.
getUid
()
for
p
in
remaining_path_set
],
path
=
'%s/%%'
%
self
.
getPath
())
path
=
'%s/%%'
%
self
.
getPath
()
.
replace
(
'_'
,
r
'\_'
)
)
for
movement
in
catalog_simulation_movement_list
:
path
=
movement
.
getCausalityValue
()
...
...
This diff is collapsed.
Click to expand it.
product/ERP5/ExplanationCache.py
View file @
a7671d79
...
...
@@ -137,7 +137,7 @@ class ExplanationCache:
if
not
isinstance
(
value
,
dict
):
# We have a real root
result
.
append
(
'%s/%s'
%
(
prefix
,
key
))
result
.
append
(
'%s/%s/%%'
%
(
prefix
,
key
))
result
.
append
(
(
'%s/%s/%%'
%
(
prefix
,
key
))
.
replace
(
'_'
,
r
'\_'
))
# XXX-JPS here we must add all parent movements XXX-JPS
else
:
browsePathDict
(
'%s/%s'
%
(
prefix
,
key
),
value
)
# Recursing with string append is slow XXX-JPS
...
...
@@ -262,7 +262,7 @@ class ExplanationCache:
if
simulation_path
.
startswith
(
path
):
# Only keep a path pattern which matches current simulation movement
path_set
.
add
(
path
)
path_set
.
add
(
"%s/%%"
%
path
)
path_set
.
add
(
"%s/%%"
%
path
.
replace
(
'_'
,
r
'\_'
)
)
# Lookup in cache based on path_tuple
path_tuple
=
tuple
(
path_set
)
# XXX-JPS is the order guaranteed here ?
...
...
This diff is collapsed.
Click to expand it.
product/ERP5/bootstrap/erp5_core/SkinTemplateItem/portal_skins/erp5_core/Base_getRelatedDocumentList.xml
View file @
a7671d79
...
...
@@ -58,7 +58,7 @@ follow_up_related_document_list = portal_catalog(\n
portal_type=portal_type,\n
follow_up_uid=context.getUid(), **kw)\n
\n
kw[\'query\'] = Query(relative_url=\'%s/%%\' % context.getRelativeUrl())\n
kw[\'query\'] = Query(relative_url=\'%s/%%\' % context.getRelativeUrl()
.replace(\'_\', r\'\\_\')
)\n
if follow_up_related_document_list:\n
kw[\'query\'] = ComplexQuery(\n
kw[\'query\'],\n
...
...
This diff is collapsed.
Click to expand it.
product/ERP5/bootstrap/erp5_core/bt/revision
View file @
a7671d79
41041
\ No newline at end of file
41042
\ No newline at end of file
This diff is collapsed.
Click to expand it.
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