aboutsummaryrefslogtreecommitdiff
path: root/src/tafproperty.cpp (unfollow)
AgeCommit message (Collapse)Author
2011-04-08Rearranged the API a bit.Mike Buland
2011-04-07Pretty sure all utf encoders and decoders are complete and tested.Mike Buland
2011-04-07I fixed a stupid typo in string, I don't know how it ever compiled. It alsoMike Buland
builds on win32 again...
2011-04-06Also realized I had a stupid global macro in place when a template functionMike Buland
would work so much better. It's converted and things are much nicer now.
2011-04-06Tweaked the hash table resizer, it now is more careful about increasing theMike Buland
size of the table when it can reclaim empty space from deletes, and it allows the table to shrink if little enough space is being used.
2011-04-06Libbu++ generates it's own system specific config file as well as a fancyMike Buland
version header file all programs can now use to determine which version, api version, and svn revision of libbu++ they're linking against. It doesn't quite work for windows yet, but it will, eventually.
2011-04-05Fixed the cache system missing a sync on header data for inserts and deletes.Mike Buland
2011-04-04Minor tweak to the cache and cachestoremyriad, fixing a strange corner caseMike Buland
in the cache system.
2011-04-04david - tried to make hash crashDavid
2011-04-04UtfString is going really well. It can now parse Utf8, Utf16 (le,be), andMike Buland
Utf32 (le,be). The internal storage seems to be working fine, although we do have a problem with random access, but at least we can tell which half of a surrogate pair we're on, so we can always rapidly determine the entire code point from any utf16 index that we're on. The only optomization that I'm not doing yet is reading in entire 16bit or 32bit words at a time and converting them from their byte order to native. There are a few potential issues with that, so we'll see. I added a couple of testing datafiles and a test program, I'll delete them all just as soon as it's verified to write correctly.
2011-04-04I made some awesome progress on the UtfString system, it stores in native utf16Mike Buland
encoding to make things easier (little endian in our case). It can currently read utf8 and utf16be, but not BOM. It will give you full unicode code points instead of the raw utf16 values, which is pretty slick.
2011-04-04Really just made some decisions about the overall functionality of the UtfStringMike Buland
and now I'm ready to put some more of the basics into action.
2011-03-30Removed the test.taf file, we don't need it anymore.Mike Buland
2011-03-30Ok, string stuff is working much, much better, a load of new unit tests haveMike Buland
been added, and I deleted a whole slew of stupid old tests that I don't need.
2011-03-29String's replace function now doesn't get false positives on partial matches atMike Buland
the end of strings. Build should work much better now.
2011-03-27I had a useless include and a silly macro defined in the header file of string.Mike Buland
2011-03-24This may really screw things up, but the trimBack function made no sense, soMike Buland
I changed it. We'll have to add back in the other one if anyone needs it. This will most likely require things to be rebuilt, but they'll complain instead of mislinking this time :-P
2011-03-24The Bu::OptParser no longer tokenizes parameters' values.Mike Buland
2011-03-22Bu::Conduit now works exactly as it was advertised some time ago, it usesMike Buland
Bu::QueueBuf and creates a really slick blocking inter-thread I/O system.
2011-03-22We now have a UTF-8 test parser, I'm going to move it into a functor, I think.Mike Buland
2011-03-21floats can be output through the formatter again, except sometimes they'reMike Buland
really ugly.
2011-03-20Sigh, I don't know that Bu::String is slower, but it looks like std::string isMike Buland
faster. Oh well.
2011-03-19The rest of libbu++ is corrected as far as the now Bu::String toUpper/toLowerMike Buland
semantics go as well as switching everything to the new string formatting code.
2011-03-18Wow, a lot has changed. String is not a template class, and it can do it's ownMike Buland
formatting ala QString.
2011-03-18The inline, printf/qstring style formatting for Bu::String is just about there,Mike Buland
it just needs to be integrated with the Bu::String class itself, pretty exciting.
2011-03-17Tweaks to the variant class make it much cooler, and there's a test/toolMike Buland
called format, it's a proof of concept of a text formatter. I think it's gonna' rock.
2011-03-17david - added a hash table stress unit testDavid
2011-03-10Removed the float test, it was silly to have it in libbu++.Mike Buland