2014-03-19 Stiletto Fix panic when connection is reset immediately after establishing. default tip
2014-02-20 Chris Jones Added support for SASL PLAIN, from "Ildar Hizbulin" <hizel@vyborg.ru>.
2014-02-09 Chris Jones Merge.
2014-02-09 Chris Jones Added a license (and my email address).
2013-11-09 Chris Jones Forgot to change the type of RosterItem.Jid to JID.
2013-11-09 Chris Jones Changed the type of structure fields which hold JIDs from string to JID.
2013-11-09 Chris Jones Added a JID.Bare() function, to product the bare JID as defined in the RFC.
2013-11-09 Chris Jones Changed the JID type to be an alias of string, rather than a struct. This allows it to be used as a key in a map, among other benefits.
2013-11-07 Chris Jones Updated to-do list.
2013-11-07 Chris Jones Merge.
2013-11-07 Chris Jones Allow the client to specify a host and port to connect to, rather than using SRV records.
2013-10-20 Chris Jones Doc cleanup.
2013-10-19 Chris Jones Removed a completed to-do item.
2013-10-19 Chris Jones Removed uses of Generic from the Stanza types.
2013-10-18 Chris Jones Doc fix.
2013-10-17 Chris Jones Trying to be smarter about closing channels: Ask the application not to close the Send channel, but let us do that from Close() instead.
2013-10-17 Chris Jones Make an attempt to only close the send channel if it's still open.
2013-10-17 Chris Jones Don't call Close() twice.
2013-10-17 Chris Jones Expose the Status.Fatal function.
2013-10-03 Chris Jones Moved some code around.
2013-10-01 Chris Jones gofmt
2013-10-01 Chris Jones Changed order of operations in setError() so that the underlying error is reported.
2013-10-01 Chris Jones Removed the weirdo logging facility. There's now a Debug variable which can be set which replaces the former debug log. NewClient() will return an error if something goes wrong setting up the connection.
2013-10-01 Chris Jones Added a Close() function and fixed a couple of shutdown bugs.
2013-09-30 Chris Jones gofmt
2013-09-30 Chris Jones to-do update.
2013-09-30 Chris Jones Listen for XMPP connection status changes, and print them out.
2013-09-30 Chris Jones Renamed Extension.StanzaHandlers to StanzaTypes, and updated the doc comment.
2013-09-30 Chris Jones Don't keep the password around after we've used it.
2013-09-28 Chris Jones To-do list updates.
2013-09-28 Chris Jones gofmt
2013-09-28 Chris Jones Updated to-do list.
2013-09-28 Chris Jones Simplified the API: There's only one constructor, and it does everything necessary to initiate the stream. StartSession() and Roster.Update() have both been eliminated.
2013-09-22 Chris Jones Updated to-do list.
2013-09-15 Chris Jones gofmt
2013-09-15 Chris Jones Code reorder and doc cleanup.
2013-09-15 Chris Jones Removed an unused parameter.
2013-09-15 Chris Jones Made layers 1 and 3 more modular, shrinking the surface area of the coupling between them.
2013-09-15 Chris Jones Function renames and improved doc.
2013-09-15 Chris Jones Changed the inputControl channel to send a custom type.
2013-09-15 Chris Jones gofmt
2013-09-15 Chris Jones Renamed HandleStanza to SetCallback.
2013-09-15 Chris Jones Split stream.go into layer1, layer2, layer3, and sasl.
2013-09-15 Chris Jones Removed copyright statements.
2013-09-15 Chris Jones Doc update.
2013-09-11 Chris Jones Don't close the wrong end of a channel. But if we get an error, we can close the underlying socket.
2013-09-09 Chris Jones Initial roster contents look like a result iq.
2013-09-09 Chris Jones Doc update.
2013-09-09 Chris Jones Start reading from the recv channel earlier.
2013-09-09 Chris Jones Simplified and debugged the filter logic.
2013-09-09 Chris Jones Fixed another logic error, caused by a shadowed variable name.
2013-09-08 Chris Jones Fixed some logic errors and initialized some things that needed to be initialized.
2013-09-08 Chris Jones Removed some unused code.
2013-09-08 Chris Jones Fixed reversed-logic error in checking for duplicate stanza extension types.
2013-09-08 Chris Jones Address a bug that can happen if no SRV records can be found.
2013-09-07 Chris Jones Pass the TLS config as a parameter to the Client constructor. Updated the example program.
2013-09-07 Chris Jones Moved the tls.Config from a package-level variable to a client instance variable.
2013-09-07 Chris Jones Use reflection instead of constructor functions to create extended stanza structures.
2013-09-07 Chris Jones Renamed client.In and client.Out to Recv and Send, respectively.
2013-09-07 Chris Jones Moved the library code into an xmpp directory.
2013-09-03 Chris Jones Renamed examples to example, since there's only one program there.
2013-09-03 Chris Jones Updated the example to match the new API, and fixed the roster Update to not require a reference to the client.
2013-09-03 Chris Jones Got rid of Client.Uid.
2013-09-03 Chris Jones Added another to-do item.
2013-09-03 Chris Jones Changed the way filters work. They're now symmetrical, consisting of a paired send filter and receive filter.
2013-08-31 Chris Jones Fix a bug causing us to open a TCP connection to every server and use the last one.
2013-08-31 Chris Jones Documentation cleanup.
2013-08-30 Chris Jones Code cleanup: Renamed the Version constant. Moved the unique-ID generator into its own file.
2013-03-26 Chris Jones Closing this branch. go.weekly.2012-01-15
2013-03-26 Chris Jones gofmt
2012-12-29 Chris Jones Put the sub-elements of Message and Presence into the jabber:client namespace.
2012-12-29 Chris Jones Updated for the latest revision of the encoding/xml fixes: The context object owned by Encoder and Decoder isn't directly accessible.
2012-12-17 Chris Jones Step 3 of converting to interface Stanza and embedded struct Header.
2012-12-17 Chris Jones Step 2 of converting to interface Stanza and embedded struct Header.
2012-12-17 Chris Jones Step 1 of moving to interface Stanza and embedded struct Header.
2012-12-17 Chris Jones Instead of making Stanza an interface that Iq, Message, and Presence implement, change it to an embedded struct.
2012-12-17 Chris Jones Disabled debug logging.
2012-12-17 Chris Jones Another little XML tag tweak.
2012-12-17 Chris Jones Fixed up some more attribute labels.
2012-12-17 Chris Jones Fixed up the client/server traffic logging.
2012-12-16 Chris Jones Allow the user to override the TLS config. Also fixed up some log statements.
2012-12-16 Chris Jones Fixed reverse logic error on loggers.
2012-12-16 Chris Jones Updated the example for the new log setup.
2012-12-16 Chris Jones Reworked the logging again, and also added namespaces to a couple of fields on Features.
2012-12-16 Chris Jones Use the new logging setup from the example program.
2012-12-16 Chris Jones Reworked logging.
2012-12-16 Chris Jones Closing this branch because I did it better in another one. go.weekly.2012-01-15
2012-12-16 Chris Jones Updated for Go 1.0 + upcoming XML fixes.
2012-05-26 Chris Jones Removing this Makefile also; it should be as unnecessary as the other. go.weekly.2012-01-15
2012-05-26 Chris Jones Removing Makefile. Shouldn't need it anymore. go.weekly.2012-01-15
2012-05-25 Chris Jones Attempts to work around Go1 XML bugs. go.weekly.2012-01-15
2012-05-25 Chris Jones More XML attribute fixes. go.weekly.2012-01-15
2012-04-15 Chris Jones Cleanup for Go 1. go.weekly.2012-01-15
2012-01-24 Chris Jones Closing this branch in favor of the "go.r60.3" branch. go.r60.3
2012-01-24 Chris Jones Closing this branch in favor of the "go.weekly.2012-01-15" branch.
2012-01-24 Chris Jones Removed tag go.r60.3 go.r60.3
2012-01-24 Chris Jones Using branches, instead of tags, to refer to Go releases. go.r60.3
2012-01-24 Chris Jones Added support for stringprep, as required by the RFC.
2012-01-24 Chris Jones Using branches, rather than tags, to refer to Go releases. go.weekly.2012-01-15
2012-01-24 Chris Jones Removed tag go.weekly.2012-01-15
2012-01-20 Chris Jones Added tag go.weekly.2012-01-15 for changeset 87111e98424e
2012-01-20 Chris Jones Updates to BUG comments. go.weekly.2012-01-15
2012-01-20 Chris Jones Added another SHOULD comment.
2012-01-20 Chris Jones Implement (untested) EXTERNAL auth, and fix bugs from my previous commit.
2012-01-20 Chris Jones Consolidate how we generate the "open stream" XML.
2012-01-20 Chris Jones Removed tag go.weekly.2012-01-15
2012-01-20 Chris Jones Added tag go.weekly.2012-01-15 for changeset a5848c75d270
2012-01-19 Chris Jones Allow the app to specify a tls.Config to use for purposes of negotiating the TLS layer.
2012-01-19 Chris Jones Use the logging API by default.
2012-01-19 Chris Jones Fixed logging to use log rather than syslog.
2012-01-19 Chris Jones Updated for weekly.2012-01-15.
2012-01-19 Chris Jones Ran gofix from weekly-2012-01-15.
2012-01-19 Chris Jones Added tag go.r60.3 for changeset 53f15893a1a7
2012-01-17 Chris Jones gofmt go.r60.3
2012-01-13 Chris Jones Added a quick test of XML escaping.
2012-01-08 Chris Jones Closing this branch. 20120108-close
2012-01-08 Chris Jones Correct my misunderstanding of Go's break, and fix how we close channels and Writers so we can shut down our goroutines gracefully.
2012-01-08 Chris Jones Restore this example program to its normal operation. 20120108-close
2012-01-08 Chris Jones Mark this bug as fixed. 20120108-close
2012-01-08 Chris Jones Restore this bit of code that got lost in the shuffle. 20120108-close
2012-01-08 Chris Jones Remove this unnecessary struct field. 20120108-close
2012-01-08 Chris Jones Properly close all the channels and writers if Client.Out is close. 20120108-close
2012-01-08 Chris Jones Intermediate commit. Fixing how we close our channels and sockets and shut down our goroutines. 20120108-close
2012-01-08 Chris Jones Added global variables for logging.
2012-01-08 Chris Jones Stanzas can now contain multiple nested (extended) elements.
2012-01-08 Chris Jones Made a generic extension interface.
2012-01-08 Chris Jones Comment reformat.
2012-01-06 Chris Jones Sent acknowledgment when somebody sends us a roster iq.
2012-01-06 Chris Jones Revamped how the roster works. We're now using a channel to transmit snapshots
2012-01-06 Chris Jones Another null change for eol stuff.
2012-01-05 Chris Jones Added another BUG comment.
2012-01-05 Chris Jones When ranging over an array of structures, the iterand is reused. So storing a
2012-01-03 Chris Jones Enabled the Hg eol extension.
2012-01-03 Chris Jones Comment fixes.
2012-01-02 Chris Jones Nil checks and a greatly simplified filter manager which is less buggy.
2012-01-02 Chris Jones Simplified the roster filter.
2012-01-02 Chris Jones Fixed up marshaling of the extra fields in presence and message.
2012-01-02 Chris Jones Turned off debugging by default.
2012-01-02 Chris Jones Implemented roster item delete, and added another BUG comment.
2012-01-02 Chris Jones Added roster updating.
2012-01-02 Chris Jones Added a stack of filters which can intercept data before it gets to
2012-01-02 Chris Jones Comment cleanup.
2012-01-02 Chris Jones Making a little more use of XMLName for marshaling instead of having a
2012-01-02 Chris Jones Renamed the somewhat obscure XTo(), etc. to GetTo(), etc.
2012-01-02 Chris Jones Made a special-purpose bind structure for resource binding.
2011-12-31 Chris Jones Comment cleanup.
2011-12-31 Chris Jones Use name tags for roster data structures.
2011-12-31 Chris Jones Extended stanzas work now.
2011-12-31 Chris Jones Minor fixups to make this come closer to working. It doesn't actually
2011-12-31 Chris Jones Added a capability to use extensions. There are still some bugs with
2011-12-31 Chris Jones Doc and comment update.
2011-12-31 Chris Jones Made the namespace constants public.
2011-12-31 Chris Jones Added roster retrieval to StartSession().
2011-12-29 Chris Jones Make the server's advertised features available to the app.
2011-12-29 Chris Jones Made streamError non-public, and made a first attempt at a stream
2011-12-29 Chris Jones Replaced Client.NextId() with a channel named Id.
2011-12-29 Chris Jones Don't accept data on Client.Out until resource binding is
2011-12-29 Chris Jones Added Client.StartSession().
2011-12-28 Chris Jones Clarified a comment.
2011-12-28 Chris Jones Removed the TextOut channel.
2011-12-28 Chris Jones Made JID.Node a string rather than *string. This is more appropriate
2011-12-28 Chris Jones Removed definedCondition in favor of Generic.
2011-12-28 Chris Jones Made the input and output channels of type Stanza rather than
2011-12-28 Chris Jones Made the stream type non-public.
2011-12-28 Chris Jones Renamed Unrecognized to Generic.
2011-12-28 Chris Jones Replaced TODO comments with Go-style BUG(me) comments.
2011-12-28 Chris Jones Added an example of the use of godoc's BUG comment.
2011-12-28 Chris Jones Makefile improvements to handle the examples package.
2011-12-28 Chris Jones Code review.
2011-12-28 Chris Jones Parse <presence> and <message> stanzas.
2011-12-28 Chris Jones When the server sends us our newly bound resource, update Client.Jid
2011-12-28 Chris Jones Don't forget to remove the stanza handler after it's been used.
2011-12-28 Chris Jones Added a callback handler which will handle a stanza with a particular id.
2011-12-28 Chris Jones Added resource binding and structures for <iq>, <message>, and <presence>.
2011-12-27 Chris Jones Added SASL digest authentication.
2011-12-27 Chris Jones Added TLS negotiation.
2011-12-26 Chris Jones Reorganize so we have a layered approach to IO with the server.
2011-12-26 Chris Jones Added the ability to parse <stream:features>.
2011-12-26 Chris Jones Support contents for defined error conditions (such as <see-other-host/>).
2011-12-26 Chris Jones Implemented writing to the remote. Now we have bidirectional communication.
2011-12-24 Chris Jones Added a goroutine to read data from the remote and parse it into
2011-12-24 Chris Jones Added an interactive test and made Client implement io.Closer.
2011-12-24 Chris Jones Made JID implement flag.Value.
2011-12-24 Chris Jones Forgot to add the new xmpp.go from my last commit. Also added some
2011-12-24 Chris Jones Added code to look up SRV records and open a TCP connection.
2011-12-24 Chris Jones Some initial data structures from RFC 3920, up through section 4.
(0) tip