/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 pywrap/pcilib.py

  • Committer: Vasilii Chernov
  • Date: 2016-03-03 14:38:32 UTC
  • mto: This revision was merged to the branch mainline in revision 372.
  • Revision ID: vchernov@inr.ru-20160303143832-0rlinjoy3zczhjt2
1. Pcipywrap: add persistent locking wrappings
2. html-server: 
   - add scripts tab
   - change tab view to jQuery tabs

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
         curr_script['name'] = script
29
29
         if 'description' in dir(s.__scipts[script]):
30
30
            curr_script['description'] = s.__scipts[script].description
 
31
         if 'run' in dir(s.__scipts[script]):
 
32
            curr_script['valid'] = True
31
33
         scripts.append(curr_script)
32
34
      return scripts
33
35