aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-11-15Much overriding was done, but GatsList works great. And just like a standardMike Buland
.net list.
2012-11-15Accidentally included a dll, oops. Also, gats null, and gats float workMike Buland
correctly now and are tested against the python implementation.
2012-11-14Strings, bools, and ints all seem fine, the more complex container types areMike Buland
coming next, and will implement the full range of appropriate interfaces.
2012-11-14Started a nice, native .net implementation in C#Mike Buland
2012-11-09Randomly used wrong syntax in markdown.Mike Buland
2012-11-09The attempt to use symlinks in place of the header files was silly.Mike Buland
2012-11-09Many changes: tabconv'd the C++ code, added a license, BSD, and docs.Mike Buland
2012-11-09Ok, it's all organized by language/library now.Mike Buland
2012-11-09Made the repo less libbu++-centric.Mike Buland
2012-10-24More comment/spelling fixes. Added a helper to GatsInputStream soMike Buland
you can find out how many bytes the previously read object was.
2012-10-24Primarily documentation cleanups. Also removed some extra imports that areMike Buland
no longer used.
2012-10-24Build script has been updated to not try to compile the package-info.java file.Mike Buland
It's a little odd, we definately need an easier way to remove items from lists. I'm thinking just a minus operator.
2012-10-24Moved package-info.java into the gats dir. Apparently thisMike Buland
is an issue when using the parametrs that eclipse uses, it was complaining. It doesn't do that with the params to javac I use on the command line.
2012-09-12libbu++ version now uses libbu++ endian conversion macros and does not rely onMike Buland
winsock in windows.
2012-08-18Changed debugging output to not display binary strings, instead it just printsMike Buland
that it is binary and the length.
2012-07-06Added the gats compiler. It can only compile from gats-text to gats-binaryMike Buland
right now.
2012-06-27Apparently the various value classes don't all have setters yet, they should.Mike Buland
2012-06-22Added super handy readAllObjects slot.Mike Buland
2012-06-16I guess the symlinks are in svn.Mike Buland
2012-06-11GatsCon can display nulls now.Mike Buland
2012-06-11Python supports null.Mike Buland
2012-06-11All languages now support Null except for python and php, python is provingMike Buland
slightly trickier.
2012-05-29Apparently in python bools are ints, but ints aren't bools...this means thatMike Buland
you have to test for bool before int or bools are converted to ints. This is fixed now, bools transfer correctly.
2012-05-08david - created a phpgats library that uses native php types... it's still ↵David
using gmp, though...
2012-04-06The Qt API now supports cloning.Mike Buland
2012-04-06Qt is tested more thoroughly, some read bugs are fixed. It also works betterMike Buland
with qt principles. You can hook up the readyRead signal to the readObject slot on GatsStream, and connect the GatsStream objectRead signal to your own functions, and you'll be notified whenever a new gats object is read. Cool.
2012-04-06I think I fixed a seeking bug in the qt gatsstream, but...I haven't tested itMike Buland
yet.
2012-04-06Everything supports clone now.Mike Buland
2012-03-31Tweaks to help build in windows. There...may be a problem with symlinks...Mike Buland
2012-03-31Gats for QT is here. It's a pretty basic conversion right now, it doesn'tMike Buland
support debugging formatting (Bu::sio), it doesn't support gats-text string parsing, and the exceptions need to be fixed to be real exceptions. The basic functions have been renamed to match the Qt API and we use QT types for everything (QHash, QList, QByteArray). It needs more testing, but it's a great start.
2012-03-01Fixed a bug in java gats reading large strings over the network.Mike Buland
2012-02-16Added a missing and badly needed helper function to the dictionary, put withMike Buland
a byte array as a parameter.
2012-02-13Consistancy is best, so all the get helpers throw an exception if they can'tMike Buland
find their object.
2012-02-13Trying a more sensible handling for get helpers in GatsDictionary, they throwMike Buland
an exception now if the key isn't found. getInt and getFloat will both probably be complimented by getBigInt and getBigFloat or something like it later on, but we'll always return types from those helpers that can't contain a null, so exceptions it is.
2012-02-11Builds gatscon for windows now :)Mike Buland
2012-01-16Added networking compatible send/recv functions as helpers, plus a bunch ofMike Buland
docs.
2012-01-16Created python bindings. They use the classic python dump/load/dumps/loadsMike Buland
paradigm
2012-01-16Lots of documentation, an example program, and also some visibility cleanup.Mike Buland
2011-05-23Minor change, just rebranded GatsCon to "Gats Console" for the display.Mike Buland
2011-05-23Minor tweaks to make sure that autodoc is enabled in doxygen and that doxygenMike Buland
isn't confused by the multi-include protection.
2011-05-23daivd - woops, missed a functionDavid
2011-05-23david - trying out the defined thingDavid
2011-05-23david - added documentation to phpgatsDavid
2011-05-17Ok, you can now open files, save files, save files from proxies and clients,Mike Buland
and add new root items to files. Later I'll add some actual editing capabilities, should be really easy.
2011-05-17GatsCon can read files now, but it can't save them, or edit them yet. That'llMike Buland
be coming eventually.
2011-05-17GatsCon now supports proxying, and way better than qtbenc ever did. Not onlyMike Buland
does it proxy, but you can inject your own messages going to the client or host. Pretty slick, really. Next up, reading and creating files.
2011-05-17Gats::Object now has a strToGats function, it's pretty slick, it takes a stringMike Buland
and produces a fully formed gats tree. Also, gatscon now can interact with a server directly.
2011-05-16Almost there! I'm adding a qtbenc-like program for gats, only cooler. It'llMike Buland
really help us debug gats based protocols and look at gats files, and the like.
2011-04-27The GatsInputStream is much, much simpler, should be much faster, and worksMike Buland
more like java says blocking things should work. If you ask it to read an object, it will, it will wait on the socket until it gets a whole one, or throws an exception.
2011-04-27david - some changesDavid