Changeset 58f0e80 in nscp for helpers


Ignore:
Timestamp:
10/21/11 20:28:02 (19 months ago)
Author:
Michael Medin <michael@…>
Branches:
master, 0.4.0, 0.4.1, 0.4.2
Children:
f7a074d
Parents:
98113da
Message:

2011-10-21 MickeM

  • Some more threading issues in Python (works perfectly(?) now)
  • Refactored the tests a bit making test suites runable from a central hub
  • Fixed soo everything builds and works on Linux

2011-10-19 MickeM

  • Fixed some threadding issues in PythonScript
  • Still working on refactoring the unittest helpers a bit

2011-10-16 MickeM

  • Fixed issue with loading zero-byte UTF-8 config files
  • Fixed some issues with settings subsystem (debug log as well as createing instances for --generate)
  • Added ability to set event log to real-time
  • Added support for multiple eventlogs in real-time
File:
1 edited

Legend:

Unmodified
Added
Removed
  • helpers/settings_manager/settings_manager_impl.cpp

    rfb7e36a r58f0e80  
    6666  settings::instance_raw_ptr NSCSettingsImpl::create_instance(std::wstring key) { 
    6767    net::wurl url = net::parse(key); 
     68    if (url.protocol.empty()) { 
     69      url = net::parse(key + _T("://")); 
     70      get_logger()->debug(__FILE__, __LINE__, _T("No driver specified attemtping to fake one: ") + url.to_string()); 
     71    } 
    6872    get_logger()->debug(__FILE__, __LINE__, _T("Creating instance for: ") + url.to_string()); 
    6973    if (url.host.empty() && url.path.empty())  
Note: See TracChangeset for help on using the changeset viewer.