<feed xmlns='http://www.w3.org/2005/Atom'>
<title>csa/daq/alps/pcitool.git/views, branch master</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.
</subtitle>
<link rel='alternate' type='text/html' href='http://cgit.master.suren.me/cgit/csa/daq/alps/pcitool.git/'/>
<entry>
<title>Make Python problems non-fatal</title>
<updated>2016-03-02T23:50:59+00:00</updated>
<author>
<name>Suren A. Chilingaryan</name>
<email>csa@suren.me</email>
</author>
<published>2016-03-02T23:50:59+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.master.suren.me/cgit/csa/daq/alps/pcitool.git/commit/?id=195c28f3074486165b6e0935362810f8a1fb9531'/>
<id>195c28f3074486165b6e0935362810f8a1fb9531</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Stabilize merged code</title>
<updated>2016-02-23T07:12:30+00:00</updated>
<author>
<name>Suren A. Chilingaryan</name>
<email>csa@suren.me</email>
</author>
<published>2016-02-23T07:12:30+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.master.suren.me/cgit/csa/daq/alps/pcitool.git/commit/?id=dbef1e0271da298a0cbdc951dda84b7f150bbad0'/>
<id>dbef1e0271da298a0cbdc951dda84b7f150bbad0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge Python scripting support from Vasiliy Chernov</title>
<updated>2016-02-23T06:20:33+00:00</updated>
<author>
<name>Suren A. Chilingaryan</name>
<email>csa@suren.me</email>
</author>
<published>2016-02-23T06:20:33+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.master.suren.me/cgit/csa/daq/alps/pcitool.git/commit/?id=a962c90543955bac98308c1b0d909048070d900a'/>
<id>a962c90543955bac98308c1b0d909048070d900a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>1. Add cmake BUILD_PYTHON_MODULES option.</title>
<updated>2016-02-17T10:01:22+00:00</updated>
<author>
<name>Vasilii Chernov</name>
<email>vchernov@inr.ru</email>
</author>
<published>2016-02-17T10:01:22+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.master.suren.me/cgit/csa/daq/alps/pcitool.git/commit/?id=3269dce32883e14b45cc490a0cc0037b4c808a68'/>
<id>3269dce32883e14b45cc490a0cc0037b4c808a68</id>
<content type='text'>
2. Rename log options getting functions.
3. py:
   - pcilib_init_py() - extract pcilib_py_add_script_dir()
   - pcilib_py_init_script() - extract view-specialized code to
     pcilib_py_get_transform_script_properties()
3. pcilib_open():
   - move pcilib_init_py() to previous position.
   - add extract pcilib_py_add_script_dir()
4. pcilib_script_s - change hash key. Now it is (const char*) and contains 
   script file name with extension
5. pcipywrap:
   - Add pcipywrap.h to remove swig generated file complile warnings
   - remove -includeall swig flag to prevent crash in multi-thread scripts
   - change set python expetion mechanic
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
2. Rename log options getting functions.
3. py:
   - pcilib_init_py() - extract pcilib_py_add_script_dir()
   - pcilib_py_init_script() - extract view-specialized code to
     pcilib_py_get_transform_script_properties()
3. pcilib_open():
   - move pcilib_init_py() to previous position.
   - add extract pcilib_py_add_script_dir()
4. pcilib_script_s - change hash key. Now it is (const char*) and contains 
   script file name with extension
5. pcipywrap:
   - Add pcipywrap.h to remove swig generated file complile warnings
   - remove -includeall swig flag to prevent crash in multi-thread scripts
   - change set python expetion mechanic
</pre>
</div>
</content>
</entry>
<entry>
<title>1. Add python thread initialization to pcilib_init_py()</title>
<updated>2016-02-16T15:30:40+00:00</updated>
<author>
<name>Vasilii Chernov</name>
<email>vchernov@inr.ru</email>
</author>
<published>2016-02-16T15:30:40+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.master.suren.me/cgit/csa/daq/alps/pcitool.git/commit/?id=ed9d8f285f4d81e1ce8bb5e7a5b9e471a73c1590'/>
<id>ed9d8f285f4d81e1ce8bb5e7a5b9e471a73c1590</id>
<content type='text'>
   -Fix pcilib_script_run_func() work in multithread mode
   
2. pcilib_close() - Move free_py() code after free views to make
   view destructors work properly
   
3. Move script hash to pcilib_py_s

4. Move pcilib_get_logger() pcilib_get_logger_min_prio() and
   pcilib_get_logger_argument() declarations to error.h
   
5. Refactor pcilib_get_value_as_pyobject pcilib_set_value_from_pyobject
   to more unified form
   
6. Add more memory checks. Fix some string memory allocations.

7. Refactor pcilib_py_s member names.

8. Merge  pcilib_script_read() and pcilib_script_write() to
   pcilib_script_run_func()
   
9. Update test_pywrap views scripts
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
   -Fix pcilib_script_run_func() work in multithread mode
   
2. pcilib_close() - Move free_py() code after free views to make
   view destructors work properly
   
3. Move script hash to pcilib_py_s

4. Move pcilib_get_logger() pcilib_get_logger_min_prio() and
   pcilib_get_logger_argument() declarations to error.h
   
5. Refactor pcilib_get_value_as_pyobject pcilib_set_value_from_pyobject
   to more unified form
   
6. Add more memory checks. Fix some string memory allocations.

7. Refactor pcilib_py_s member names.

8. Merge  pcilib_script_read() and pcilib_script_write() to
   pcilib_script_run_func()
   
9. Update test_pywrap views scripts
</pre>
</div>
</content>
</entry>
<entry>
<title>Move python module init code to transfom view constructor</title>
<updated>2016-02-12T16:50:57+00:00</updated>
<author>
<name>Vasilii Chernov</name>
<email>vchernov@inr.ru</email>
</author>
<published>2016-02-12T16:50:57+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.master.suren.me/cgit/csa/daq/alps/pcitool.git/commit/?id=1b3342649294c6ce99aeb82664a29eac47687ee5'/>
<id>1b3342649294c6ce99aeb82664a29eac47687ee5</id>
<content type='text'>
Update python logger and python exeption messages
Change serialization method in create_pcilib_instance set_pcilib functions
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Update python logger and python exeption messages
Change serialization method in create_pcilib_instance set_pcilib functions
</pre>
</div>
</content>
</entry>
<entry>
<title>1. Cmakelists - move copy xml folder command to root file</title>
<updated>2016-02-12T13:43:20+00:00</updated>
<author>
<name>Vasilii Chernov</name>
<email>vchernov@inr.ru</email>
</author>
<published>2016-02-12T13:43:20+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.master.suren.me/cgit/csa/daq/alps/pcitool.git/commit/?id=55eab7196d0104c71e40136b3b22e9501d234e17'/>
<id>55eab7196d0104c71e40136b3b22e9501d234e17</id>
<content type='text'>
2. - Move set python paths code to python module init funtction
     - pci.c move python module init block code after checking model
       to get paths before it runs.
   - Fix set python path code to work with PYTHONPATH
   - Update pci run script to work with PYTHONPATH
   - Fix python finalize code
3. Change pcilib_script_s interacting method. Now it stores in hash.
4. Change names of some fucntions to more unified ones
5. Remove old unused function pcilib_xml_create_script_or_transform_view
6. cli - disable reading register after set if write_verification flag is off
7. Remove uninformative error messages fro Python wrap.
8. - Server.py - add read/write property/register command handling
   - Add help message
   - Correcting paths
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
2. - Move set python paths code to python module init funtction
     - pci.c move python module init block code after checking model
       to get paths before it runs.
   - Fix set python path code to work with PYTHONPATH
   - Update pci run script to work with PYTHONPATH
   - Fix python finalize code
3. Change pcilib_script_s interacting method. Now it stores in hash.
4. Change names of some fucntions to more unified ones
5. Remove old unused function pcilib_xml_create_script_or_transform_view
6. cli - disable reading register after set if write_verification flag is off
7. Remove uninformative error messages fro Python wrap.
8. - Server.py - add read/write property/register command handling
   - Add help message
   - Correcting paths
</pre>
</div>
</content>
</entry>
<entry>
<title>Solve errors in serialing register_info function. Clear unused code</title>
<updated>2016-02-11T11:28:37+00:00</updated>
<author>
<name>Vasilii Chernov</name>
<email>vchernov@inr.ru</email>
</author>
<published>2016-02-11T11:28:37+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.master.suren.me/cgit/csa/daq/alps/pcitool.git/commit/?id=76ee5a167add1c169a982ab59aa0544f827cb365'/>
<id>76ee5a167add1c169a982ab59aa0544f827cb365</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge script and transform view. Add get register and properties info to python wrap.</title>
<updated>2016-02-11T09:37:24+00:00</updated>
<author>
<name>Vasilii Chernov</name>
<email>vchernov@inr.ru</email>
</author>
<published>2016-02-11T09:37:24+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.master.suren.me/cgit/csa/daq/alps/pcitool.git/commit/?id=d9a31945a92a76e590657dc2e65bb20b6ea95d90'/>
<id>d9a31945a92a76e590657dc2e65bb20b6ea95d90</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add support for setting register value to script transfrom. Add set_property and get_property functions to pcipywrap. Cleaning cmakelists from unused dependencies</title>
<updated>2016-02-08T10:55:33+00:00</updated>
<author>
<name>Vasilii Chernov</name>
<email>vchernov@inr.ru</email>
</author>
<published>2016-02-08T10:55:33+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.master.suren.me/cgit/csa/daq/alps/pcitool.git/commit/?id=e10e102b8b0ff3bf35f16b5276d56059d242e1fd'/>
<id>e10e102b8b0ff3bf35f16b5276d56059d242e1fd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
