t2-web 0.0.8 → 0.0.9

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.
data/CHANGES CHANGED
@@ -1,5 +1,10 @@
1
1
  = Changes log for the Taverna via the Web Gem
2
2
 
3
+
4
+ == Version 0.0.9
5
+ * Changed " to ' in generate_header_table (header HTML block used in JS .write("") method)
6
+ * Provided links for acknowledgements in footer
7
+
3
8
  == Version 0.0.8
4
9
  * Removed "Workflow: " from form's header
5
10
  * Changed image for please not bullet points
data/README CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
 
4
4
  Authors:: Konstantinos Karasavvas
5
- Gem Version:: 0.0.8
5
+ Gem Version:: 0.0.9
6
6
  Contact:: mailto:kostas.karasavvas@nbic.nl
7
7
  Licence:: MIT (See LICENCE or http://www.opensource.org/licenses/mit-license)
8
8
  Copyright:: (c) 2012 Netherlands Bioinformatics Centre, The Netherlands
data/Rakefile CHANGED
@@ -12,7 +12,7 @@ require 'rdoc/task'
12
12
 
13
13
  spec = Gem::Specification.new do |s|
14
14
  s.name = 't2-web'
15
- s.version = '0.0.8'
15
+ s.version = '0.0.9'
16
16
  s.extra_rdoc_files = ['README', 'LICENSE', 'CHANGES']
17
17
  s.summary = 'Web application that generates a Web UI form for a Taverna2 workflow, given its myExperiment id, for ease of execution. The only requirement for the user is a web browser.'
18
18
  s.description = s.summary
data/bin/t2_webapp.rb CHANGED
@@ -86,7 +86,7 @@ END
86
86
  <td class='header-title'>#{@my_exp_wkf.title}</td>
87
87
  </tr>
88
88
  <tr>
89
- <td class='right'>workflow by <a href="http://www.myexperiment.org/users/#{@my_exp_usr.id}.html" target="_blank">#{@my_exp_usr.name}</a></td>
89
+ <td class='right'>workflow by <a href='http://www.myexperiment.org/users/#{@my_exp_usr.id}.html' target='_blank'>#{@my_exp_usr.name}</a></td>
90
90
  </tr>
91
91
  </table>
92
92
  </td>
@@ -76,6 +76,14 @@
76
76
 
77
77
  <h1>Changes log for the Taverna via the Web Gem</h1>
78
78
 
79
+ <h2>Version 0.0.9</h2>
80
+ <ul><li>
81
+ <p>Changed “ to ‘ in generate_header_table (header HTML block used in JS
82
+ .write(”“) method)</p>
83
+ </li><li>
84
+ <p>Provided links for acknowledgements in footer</p>
85
+ </li></ul>
86
+
79
87
  <h2>Version 0.0.8</h2>
80
88
  <ul><li>
81
89
  <p>Removed “Workflow: ” from form’s header</p>
data/doc/rdoc/README.html CHANGED
@@ -80,7 +80,7 @@
80
80
  <p>Konstantinos Karasavvas</p>
81
81
  </td></tr><tr><td class="rdoc-term"><p>Gem Version</p></td>
82
82
  <td>
83
- <p>0.0.8</p>
83
+ <p>0.0.9</p>
84
84
  </td></tr><tr><td class="rdoc-term"><p>Contact</p></td>
85
85
  <td>
86
86
  <p><a href="mailto:kostas.karasavvas@nbic.nl">kostas.karasavvas@nbic.nl</a></p>
data/doc/rdoc/created.rid CHANGED
@@ -1,4 +1,4 @@
1
- Tue, 20 Mar 2012 17:19:23 +0100
1
+ Wed, 21 Mar 2012 16:46:27 +0100
2
2
  LICENSE Fri, 22 Jul 2011 16:33:48 +0200
3
- README Tue, 20 Mar 2012 17:19:01 +0100
4
- CHANGES Tue, 20 Mar 2012 17:18:51 +0100
3
+ README Tue, 20 Mar 2012 17:41:35 +0100
4
+ CHANGES Wed, 21 Mar 2012 15:19:25 +0100
data/doc/rdoc/index.html CHANGED
@@ -29,7 +29,7 @@
29
29
  <p>Konstantinos Karasavvas</p>
30
30
  </td></tr><tr><td class="rdoc-term"><p>Gem Version</p></td>
31
31
  <td>
32
- <p>0.0.8</p>
32
+ <p>0.0.9</p>
33
33
  </td></tr><tr><td class="rdoc-term"><p>Contact</p></td>
34
34
  <td>
35
35
  <p><a href="mailto:kostas.karasavvas@nbic.nl">kostas.karasavvas@nbic.nl</a></p>
@@ -2,11 +2,16 @@ function getSampleOutput(t2_server, uuid, output, wid, wkf_version) {
2
2
  // t2 server REST call to sample output
3
3
  var httpcall = "http://" + document.location.host + "/t2web/run/" + uuid + "/output/" + output +
4
4
  "?server=" + t2_server + "&wid=" + wid + "&wkf_version=" + wkf_version;
5
+
6
+ // display progress cycle icon in output during fetching
7
+
5
8
  // ajax request
6
9
  $.get(httpcall, function (result) {
7
10
  window.frames['data-display'].document.documentElement.innerHTML = result;
8
11
  });
9
12
 
13
+ // remove progress cycle icon in output
14
+
10
15
  }
11
16
 
12
17
  function checkRunStatus(t2_server, uuid) {
data/views/form.haml CHANGED
@@ -135,5 +135,9 @@
135
135
  %table.acknowledgements
136
136
  %tr
137
137
  %td.inputs
138
- The work to generate a web form from a Taverna workflow was based on a collaboration between NBIC, myExperiment, and myGrid.
138
+ The work to generate a web form from a Taverna workflow was based on a collaboration between
139
+ <a href="http://www.nbic.nl/" target="_blank">NBIC</a>,
140
+ <a href="http://www.myexperiment.org/" target="_blank">myExperiment</a>
141
+ and
142
+ <a href="http://www.mygrid.org.uk/" target="_blank">myGrid</a>.
139
143
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: t2-web
3
3
  version: !ruby/object:Gem::Version
4
- hash: 15
4
+ hash: 13
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 8
10
- version: 0.0.8
9
+ - 9
10
+ version: 0.0.9
11
11
  platform: ruby
12
12
  authors:
13
13
  - Kostas Karasavvas
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2012-03-20 00:00:00 Z
18
+ date: 2012-03-21 00:00:00 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: sinatra