<?xml version="1.0"?>
<statsTarget><link>http://cia.vc/stats/author/zooey</link><counters><counter name="forever" lastEventTime="1334619340" firstEventTime="1093078677">1005</counter><counter name="lastMonth" lastEventTime="1334619340" firstEventTime="1333309141">10</counter></counters><metadata></metadata><recentMessages><message>   <generator>     <name>git-notify script for CIA</name>   </generator>   <source>     <project>haiku</project>     <module>haiku</module>     <branch>master</branch>   </source>   <body>     <commit>       <revision>hrev44041</revision>       <author>zooey</author>       <log>More catalog-related cleanup.

* rename B_TRANSLATE_CONTEXT to B_TRANSLATION_CONTEXT and
  B_TRANSLATE_WITH_CONTEXT to B_TRANSLATE_CONTEXT, squashing a TODO
* adjust all uses of both macros in Haiku's source tree
* use correct header guard for collecting/Catalog.h

The renamed macros require adjustments to all external applications
using catalogs.</log>       <url>http://cgit.haiku-os.org/haiku/commit/?id=546208a</url>     </commit>   </body>   <timestamp>1334604682</timestamp> </message><message>   <generator>     <name>git-notify script for CIA</name>   </generator>   <source>     <project>haiku</project>     <module>haiku</module>     <branch>master</branch>   </source>   <body>     <commit>       <revision>hrev44037</revision>       <author>zooey</author>       <log>Final part of cleanup in Catalog.h. [5 commits]

* move versions of the B_TRANSLATE_...-macros used during collecting
  of catalog keys to a specific header file, which will only be picked
  up when running collectcatkeys
* fix a couple of build problems during the preprocessing of the libbe-
  sources when extracting catalog keys, all due to private headers not
  being found
* move ZombieReplicantView.h from kits/interface to
  headers/private/interface, as this way it can be picked up when
  building the libbe catalog</log>       <url>http://cgit.haiku-os.org/haiku/commit/?id=248f228</url>     </commit>   </body>   <timestamp>1334527481</timestamp> </message><message>   <generator>     <name>git-notify script for CIA</name>   </generator>   <source>     <project>haiku</project>     <module>haiku</module>     <branch>master</branch>   </source>   <body>     <commit>       <revision>hrev44033</revision>       <author>zooey</author>       <log>Close #8452, pt. 2: reactivate system catalog translations.

* when moving the locale kit into libbe, I completely missed that
  I should have moved the translated catalogs, along, too.</log>       <url>http://cgit.haiku-os.org/haiku/commit/?id=553ce13</url>     </commit>   </body>   <timestamp>1334492315</timestamp> </message><message>   <generator>     <name>git-notify script for CIA</name>   </generator>   <source>     <project>haiku</project>     <module>haiku</module>     <branch>master</branch>   </source>   <body>     <commit>       <revision>hrev44024</revision>       <author>zooey</author>       <log>Fix #8452 (app's crashing for non-existent system catalog) [4 commits]

* make the system catalog a BCatalog instead of a BCatalogAddOn*,
  such that using a non-existing system catalog won't crash but
  simply return the untranslated string instead
* rename MutableLocaleRoster::GetSystemCatalog() to LoadSystemCatalog()
  and adjust it to use BCatalog::SetTo() in order to replace the
  data used by the given catalog
* adjust all users of gSystemCatalog accordingly</log>       <url>http://cgit.haiku-os.org/haiku/commit/?id=eaa5e09</url>     </commit>   </body>   <timestamp>1334419138</timestamp> </message><message>   <generator>     <name>git-notify script for CIA</name>   </generator>   <source>     <project>haiku</project>     <module>haiku</module>     <branch>master</branch>   </source>   <body>     <commit>       <revision>hrev43971</revision>       <author>zooey</author>       <log>Fix 8172: Time preflet being too slow to start. [2 commits]

* looking at the profile info kindly supplied by diver hinted at
  getting the timezones for each country individually being part of the
  problem, using BLocaleRoster::GetAvailableTimeZonesWithRegionInfo()
  helps considerably
* further improve the situation by only requesting the localized display
  name of a timezone when it is actually needed (i.e. when there are
  more than a single timezone in the current country)
Testing with VMware on my slowest machine, this brings down the start
time of the Time preflet from 5 seconds to 1.5 seconds.</log>       <url>http://cgit.haiku-os.org/haiku/commit/?id=eb78be9</url>     </commit>   </body>   <timestamp>1333824703</timestamp> </message><message>   <generator>     <name>git-notify script for CIA</name>   </generator>   <source>     <project>haiku</project>     <module>haiku</module>     <branch>master</branch>   </source>   <body>     <commit>       <revision>hrev43957</revision>       <author>zooey</author>       <log>Fix access to system catalog strings.

* fix regression introduced in hrev43950:
  HashMapCatalog::GetString() didn't return the non-translated
  string in case there was no translation found, which e.g.
  caused AboutWindows to trigger a debugger message about the
  alert not having any buttons.
Thanks to diver for the hint.</log>       <url>http://cgit.haiku-os.org/haiku/commit/?id=6d21866</url>     </commit>   </body>   <timestamp>1333713290</timestamp> </message><message>   <generator>     <name>git-notify script for CIA</name>   </generator>   <source>     <project>haiku</project>     <module>haiku</module>     <branch>master</branch>   </source>   <body>     <commit>       <revision>hrev43951</revision>       <author>zooey</author>       <log>Attempt at #1586 (queries not being case-insensitive for umlauts):

* adjust corresponding query predicate to use BUnicodeChar instead
  of ctype-functions

Alas, this does not help as of now, since BUnicodeChar is missing
support for any codepoints above 0x9f ...</log>       <url>http://cgit.haiku-os.org/haiku/commit/?id=84c93bf</url>     </commit>   </body>   <timestamp>1333572848</timestamp> </message><message>   <generator>     <name>git-notify script for CIA</name>   </generator>   <source>     <project>haiku</project>     <module>haiku</module>     <branch>master</branch>   </source>   <body>     <commit>       <revision>hrev43950</revision>       <author>zooey</author>       <log>Merge liblocale.so into libbe.so.

* Make the locale kit a part of libbe.
* Drop the LocaleBackend kludge used from within libbe (and from
  other places, too) in order to access system catalog strings. 
  This is now done via gSystemCatalog, which is provided and initialized
  by libbe.
* Drop all references to liblocale.so from all Jamfiles.
* Add legacy symlink liblocale.so in order to keep optional packages
  that rely on it in a working state.

TODO: the documentation hasn't been updated.</log>       <url>http://cgit.haiku-os.org/haiku/commit/?id=60f75e9</url>     </commit>   </body>   <timestamp>1333572282</timestamp> </message><message>   <generator>     <name>git-notify script for CIA</name>   </generator>   <source>     <project>haiku</project>     <module>haiku</module>     <branch>master</branch>   </source>   <body>     <commit>       <revision>hrev43934</revision>       <author>zooey</author>       <log>Fix target folder of libgutenberg data.
* as pointed out by diver: libgutenberg has been configured to
  expect its data files in /system/data, but we used to install them
  into common.
This way, the Gutenberg printer add-on actually shows some printers.   </log>       <url>http://cgit.haiku-os.org/haiku/commit/?id=94cefc8</url>     </commit>   </body>   <timestamp>1333298836</timestamp> </message><message>   <generator>     <name>git-notify script for CIA</name>   </generator>   <source>     <project>haiku</project>     <module>haiku</module>     <branch>master</branch>   </source>   <body>     <commit>       <revision>hrev43933</revision>       <author>zooey</author>       <log>Reset ICU converter pointer after closing it. [2 commits]

* The pointer to the ICU converter that's kept in TLS needs to be
  reset (to NULL) immediately after closing it, as opening a new
  container may fail, leaving a dangling pointer to a now closed
  container in the TLS value.

Fixes #8361 &amp; the userland cause of #8430.</log>       <url>http://cgit.haiku-os.org/haiku/commit/?id=ee374be</url>     </commit>   </body>   <timestamp>1333294724</timestamp> </message><message>   <generator>     <name>git-notify script for CIA</name>   </generator>   <source>     <project>haiku</project>     <module>haiku</module>     <branch>master</branch>   </source>   <body>     <commit>       <revision>hrev43895</revision>       <author>zooey</author>       <log>Fix #8257: Locale not showing 24h/12h mode.

* apply patch from 'luckypower', that fixes the problem
  in BFormattingConventions - thanks!

Signed-off-by: Oliver Tappe &lt;zooey@hirschkaefer.de&gt;</log>       <url>http://cgit.haiku-os.org/haiku/commit/?id=5dca884</url>     </commit>   </body>   <timestamp>1332967189</timestamp> </message><message>   <generator>     <name>git-notify script for CIA</name>   </generator>   <source>     <project>haiku</project>     <module>external_repos</module>     <branch>refs/remotes/axeld-github/imap</branch>   </source>   <body>     <commit>       <revision>a767d7814da22fb4d180ac746840ee827b6adfb2</revision>       <author>zooey</author>       <log>Improved folder config window a bit. [13 commits]

* Now uses the BLayoutBuilder instead of ALM layout - not only is the code much
  simpler now, resizing the window isn't as sluggish anymore (less flickering).
* Fixed a drawing bug in the list view; the drawing state wasn't properly
  maintained, leading to rendering artefacts.
* Moved the checkbox to the start of the line.
* Use B_ASYNCHRONOUS_CONTROLS for all windows.
* Fixed a few typos.</log>      </commit>   </body>   <timestamp>1325801185</timestamp> </message><message>   <generator>     <name>git-notify script for CIA</name>   </generator>   <source>     <project>haiku</project>     <module>external_repos</module>     <branch>refs/remotes/aldeck-github/tracker_layout</branch>   </source>   <body>     <commit>       <revision>f75eb4f68216f3c2b70e04090201034c2fc86305</revision>       <author>zooey</author>       <log>Merge branch 'master' into tracker_layout [33 commits]

Conflicts:
	data/catalogs/kits/locale/zh_hans.catkeys</log>      </commit>   </body>   <timestamp>1320372297</timestamp> </message><message>   <generator>     <name>git-notify script for CIA</name>   </generator>   <source>     <project>haiku</project>     <module>external_repos</module>     <branch>refs/remotes/axeld-github/imap</branch>   </source>   <body>     <commit>       <revision>a767d7814da22fb4d180ac746840ee827b6adfb2</revision>       <author>zooey</author>       <log>Improved folder config window a bit. [13 commits]

* Now uses the BLayoutBuilder instead of ALM layout - not only is the code much
  simpler now, resizing the window isn't as sluggish anymore (less flickering).
* Fixed a drawing bug in the list view; the drawing state wasn't properly
  maintained, leading to rendering artefacts.
* Moved the checkbox to the start of the line.
* Use B_ASYNCHRONOUS_CONTROLS for all windows.
* Fixed a few typos.</log>      </commit>   </body>   <timestamp>1325801185</timestamp> </message><message>   <generator>     <name>git-notify script for CIA</name>   </generator>   <source>     <project>haiku</project>     <module>haiku</module>     <branch>master</branch>   </source>   <body>     <commit>       <revision>hrev43795</revision>       <author>zooey</author>       <log>Fix warnings about MB_LEN_MAX being redefined.

* in our limits.h, move #include_next of GCC's limits.h to the end such
  that things defined in it will not disturb our own definitions</log>       <url>http://cgit.haiku-os.org/haiku/commit/?id=c9ce04c</url>     </commit>   </body>   <timestamp>1330292716</timestamp> </message><message>   <generator>     <name>git-notify script for CIA</name>   </generator>   <source>     <project>haiku</project>     <module>haiku</module>     <branch>master</branch>   </source>   <body>     <commit>       <revision>hrev43793</revision>       <author>zooey</author>       <log>Fix #8350: clockconfig has to use the current offset from GMT. [4 commits]

* instead of re-applying the fixed offset that had been set when the
  Time preflet was used last, use the stored timezone name in
  clockconfig in order to determine the current GMT-offset for that
  timezone
* clockconfig now requires liblocale.so
* drop the offset field from the settings as it is no longer used,
  clockconfig was the only client
* automatic whitespace cleanup</log>       <url>http://cgit.haiku-os.org/haiku/commit/?id=d9dc0dd</url>     </commit>   </body>   <timestamp>1330279649</timestamp> </message><message>   <generator>     <name>git-notify script for CIA</name>   </generator>   <source>     <project>haiku</project>     <module>haiku</module>     <branch>master</branch>   </source>   <body>     <commit>       <revision>hrev43781</revision>       <author>zooey</author>       <log>Activate locale settings in Deskbar &amp; Time preflet. [7 commits]

* Both Deskbar and Time are using BCalendarView, which in turn uses
  DateTime, which uses strftime() to generate month/day names. Of
  course, this doesn't work as intended unless the locale has been
  initialized.</log>       <url>http://cgit.haiku-os.org/haiku/commit/?id=e1aba79</url>     </commit>   </body>   <timestamp>1330035337</timestamp> </message><message>   <generator>     <name>git-notify script for CIA</name>   </generator>   <source>     <project>haiku</project>     <module>haiku</module>     <branch>master</branch>   </source>   <body>     <commit>       <revision>hrev43720</revision>       <author>zooey</author>       <log>Remove some more glibc-files that are not required. [2 commits]</log>       <url>http://cgit.haiku-os.org/haiku/commit/?id=0bbc9d0</url>     </commit>   </body>   <timestamp>1328650339</timestamp> </message><message>   <generator>     <name>git-notify script for CIA</name>   </generator>   <source>     <project>haiku</project>     <module>haiku</module>     <branch>master</branch>   </source>   <body>     <commit>       <revision>hrev43719</revision>       <author>zooey</author>       <log>Drop as much of gconv as possible. [10 commits]</log>       <url>http://cgit.haiku-os.org/haiku/commit/?id=86beacd</url>     </commit>   </body>   <timestamp>1328647382</timestamp> </message><message>   <generator>     <name>git-notify script for CIA</name>   </generator>   <source>     <project>haiku</project>     <module>haiku</module>     <branch>master</branch>   </source>   <body>     <commit>       <revision>hrev43641</revision>       <author>zooey</author>       <log>Drop now unneeded glibc wchar-files (plus others). [6 commits]</log>       <url>http://cgit.haiku-os.org/haiku/commit/?id=1746765</url>     </commit>   </body>   <timestamp>1325970204</timestamp> </message></recentMessages></statsTarget>
