rbbt-rest 1.8.22 → 1.8.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/rbbt/rest/workflow/render.rb +1 -1
- data/share/views/job_result/job_control.haml +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6e1612b39b82bff5ceda2944069e98779f1d7fb1
|
|
4
|
+
data.tar.gz: caee41836cfe013910003089aa1a85ee0b1b0110
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b026f3ab97dd7c8c6e8844f2bb9201bf9decdce1ecae345a2e9a23404238bd2523f8346c2318b8aea6aaaed88b3d4fe6756dea561910b8eba1e4fb00a8413939
|
|
7
|
+
data.tar.gz: f6ae195bdfea59e7f6363a88e8490e3aaca797ace2cfc51108b66e78f9d77225ee1305a4beec96631165329b29bc23cab20a648bc2c2d017fdc29143fb59c217
|
|
@@ -26,7 +26,7 @@ module WorkflowRESTHelpers
|
|
|
26
26
|
@step = job
|
|
27
27
|
cache_type = execution_type(workflow, task)
|
|
28
28
|
server_key = $app_name
|
|
29
|
-
html_dir = job.file('html')
|
|
29
|
+
html_dir = job.file('.html')
|
|
30
30
|
FileUtils.mkdir_p html_dir.find unless File.exists? html_dir.find
|
|
31
31
|
cache_file = html_dir[server_key]
|
|
32
32
|
render(template_file, locals, layout_file, [task,workflow,job.name] * "-", :cache_type => cache_type, :cache_file => cache_file)
|
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
%a.ui.small.button(href="/#{[workflow.to_s, task, jobname, "info"] * "/"}") job info
|
|
7
7
|
%a.ui.small.button(href="/#{[workflow.to_s, task, jobname] * "/"}?_format=raw") get raw result file
|
|
8
8
|
|
|
9
|
-
- files = job.files
|
|
10
|
-
- files.reject!{|f| File.basename(File.dirname(f)) == "html"}
|
|
9
|
+
- files = job.files
|
|
10
|
+
- files.reject!{|f| File.basename(File.dirname(f)) == ".html"}
|
|
11
11
|
|
|
12
12
|
- if files.any?
|
|
13
13
|
%dt.ui.header Files
|