Günter Obiltschnig

Results 36 issues of Günter Obiltschnig

The names of shared libraries/DLLs for POCO 2.0 should use the Poco2 prefix: - libPoco2Foundation.so.n / Poco2Foundation.dll - libPoco2XML.so.n / Poco2XML.dll - etc. Rationale: We can restart the shared library...

buildsystem
stale

Following up the discussion in #3657, let's fix this before 1.12 release.

enhancement

There seems to be an issue with the `seekoff()` implementation as an external library that uses `seekg()` on an `std::istream` fails with `Poco::MemoryInputStream` but works with std::istringstream.

bug
pending
stale

Example: ``` inline void Logger::debug(const std::string& fmt, const Any& value1) { log(Poco::format(fmt, value1), Message::PRIO_DEBUG); } ``` should become: ``` inline void Logger::debug(const std::string& fmt, const Any& value1) { if (debug())...

fixed

Poco::Zip should become a wrapper around libzip. https://github.com/nih-at/libzip/

third-party
stale

A Yocto recipe for building and installing macchina.io on Yocto devices would be nice to have.

feature

Check whether the new [Firefox Debugger](https://github.com/devtools-html/debugger.html/) could be integrated into macchina.io. The debugger currently required node.js plus some web frameworks on top of node.js, but maybe the server-side could be...

feature

Integrate the Twitter client from the POCO samples as service. Also implement sign in with Twitter to get an access token for the client. https://dev.twitter.com/oauth/3-legged https://dev.twitter.com/web/sign-in/implementing

feature

Right now a lot of copying is going on when working with Buffer objects and URIWrapper/HTTPRequestWrapper. May be some potential for improvement.

enhancement

Having support for Firmata protocol may be useful, e.g. to control I/O slaves based on Arduino. https://github.com/firmata/protocol

feature