Ignore:
Timestamp:
10/09/11 12:03:55 (20 months ago)
Author:
Michael Medin <michael@…>
Branches:
master, 0.4.0, 0.4.1, 0.4.2
Children:
58f0e80
Parents:
234a037
Message:
  • Real-time CheckEventLog working (still only for one, and I think application log)
  • Added python tests to validfate that Real-time eventlog is working.
  • Fixed som defects here and there (now builds on Linux again)
  • Fixed so it builds in "debug mode"
  • Fixed issue in grammar which caused infiniate loop in som cases
  • Fixed so error rendering in eventlog works with "infininate number of argumnets"
  • Added support for targeting execs (in API)
  • Fixed some invalid return messages
  • Streamlined submissions wrappers to be more inline with "other wrappers"
  • Fixed a myrriad of minor python script bugs
  • Added sleep command (which sometimes causes issues so use with care)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • modules/PythonScript/PythonScript.cpp

    r9b9be81 r98113da  
    4646} 
    4747using namespace boost::python; 
    48  
    49 template<class T> 
    50 void caller(auto_ptr<T> obj) 
    51 { 
    52   new_owner_function(obj.get()); 
    53   obj.release(); 
    54 } 
    55  
    5648 
    5749BOOST_PYTHON_MODULE(NSCP) 
     
    111103  def("log_error", script_wrapper::log_error); 
    112104  def("log_debug", script_wrapper::log_debug); 
     105  def("sleep", script_wrapper::sleep); 
    113106//  def("get_module_alias", script_wrapper::get_module_alias); 
    114107//  def("get_script_alias", script_wrapper::get_script_alias); 
Note: See TracChangeset for help on using the changeset viewer.