Moved my blog (diary) to my homepage.
Name: Harald Hoyer
Member since: 2000-05-22 14:33:14
Last Login: 2007-09-24 14:02:25
Homepage: http://www.harald-hoyer.de
Notes:
Employed by Red Hat Germany doing various bits of software development for all sorts of things.
Moved my blog (diary) to my homepage.
Discovered ignalum (mentioned in an article), which is basically an extended RH or Fedora. Suggested on their sourceforge feature tracker to work more upstream, as they seem to modify one of my config tool, without ever mailing with me (system-config-network). Checked their CVS for useful modifications. Found none.
Updated my sourceforge account information (saturn_de).
Returned from Global Company Meeting and a following week vacation in the US. New Orleans seems to have a party problem :)
Fixed my patch for kdelibs, to support the freedesktop systemtray protocol (client side).
Discovered the coverage.py module and put it in my small unittest testsuite for rhpl.conf.
The interesting code looks like this:
def suite():
suite = unittest.TestSuite()
suite = unittest.makeSuite(TestConf,'test')
return suite
if __name__ == "__main__":
import coverage
coverage.erase()
coverage.start()
from rhpl import Conf
testRunner = unittest.TextTestRunner(verbosity=2)
result = testRunner.run(suite())
coverage.stop()
coverage.the_coverage.report(Conf, show_missing=0 )
sys.exit(not result.wasSuccessful())
which outputs s.th. like this:
Ran 4 tests in 0.685sOK Name Stmts Exec Cover ------------------------------- rhpl.Conf 1287 387 30%
harald certified others as follows:
Others have certified harald as follows:
[ Certification disabled because you're not logged in. ]
New HTML Parser: The long-awaited libxml2 based HTML parser code is live. It needs further work but already handles most markup better than the original parser.
Keep up with the latest Advogato features by reading the Advogato status blog.
If you're a C programmer with some spare time, take a look at the mod_virgule project page and help us with one of the tasks on the ToDo list!