/alps/pcitool

To get this branch, use:
bzr branch http://suren.me/webbzr/alps/pcitool

« back to all changes in this revision

Viewing changes to html_server/templates/property_info.html

  • Committer: Vasilii Chernov
  • Date: 2016-03-01 15:42:48 UTC
  • mto: This revision was merged to the branch mainline in revision 367.
  • Revision ID: vchernov@inr.ru-20160301154248-dpu4wdachiezj2fb
1. api-serer:
   - change multiprosessing work mechanism
   - add new pywrap functions handling
2. html-server: 
   - now works through api-server

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 
8
8
<script>
9
9
   function updateProperty(prop) {
10
 
      var pathToGetProperty = "{{ url_for('get_property_json') }}"
 
10
      var pathToGetProperty = "{{ url_for('process_json_command', command = 'get_property') }}"
11
11
      var completePath = pathToGetProperty + '?prop=' + prop
12
12
      
13
13
      $.getJSON(completePath, function(json){
23
23
      if(value == "")
24
24
         return
25
25
      
26
 
      var pathToGetProperty = "{{ url_for('set_property_json') }}"
 
26
      var pathToGetProperty = "{{ url_for('process_json_command', command = 'set_property') }}"
27
27
      var completePath = pathToGetProperty + '?prop=' + prop +
28
 
                     '&val=' + value;
 
28
                     '&value=' + value;
29
29
                        
30
30
      $.getJSON(completePath, 
31
31
                function(json) {