Frameworks/Adium%20Framework/Source/AIHTMLDecoder.m
2009-10-28 Address a few font issues that have cropped up recently. Fixes #12906.
2009-08-11 Cherry-picked 3855f70905bd from adium:
2009-05-23 Apply classes to the Twitter action links. Fixes #12049.
2009-05-17 Replace remote-<img/> tags with a link to their destination. Fixes #11506 (which existed before Evan's change, I think).
2009-05-17 There's no autorelease pool in this method, so no reason for these retains/releases. One of them was incorrect, so this fixes a leak
2009-05-05 I see no reason to not use #import for everything. Apple's compiler supports it fine in .c files, and it doesn't seem to have any downsides vs #include unless you're playing silly multiple inclusion tricks
2009-04-10 Yet another
2009-04-10 Another analyzer leak squished
2009-04-06 Implement -dealloc for AIHTMLDecoder, fixing some leaks
2009-04-03 Patch from '''Sastira''' which fixes receiving style markup from iChat. Fixes #11323.
2009-03-22 I swear I searched for NSLog()s on the last commit. Must have been the stupid one before. I need to make TextMate highlight NSLog() with bright red.
2009-03-22 Revert [25511], [25538], [25539] which removed AIXMLElement. This breaks our ability to log elements the way we want (notably, > as &gt; to avoid problems with LMX's reverse-parsing). This is still broken, though: [25499]'s use of NSXMLElement causes the changes to encoding we've made in AIXMLElement to be reverted.
2009-03-22 Revert [26387]/[26388] - these, while with good intention, were the wrong change. AIXMLElement needs to be re-merged back in; this space issue was just one of the problems presented by its absence.
2009-03-20 Extending the logic from [26387], replace *all lengths* of significant spaces with the en-space.
2009-03-20 When logging XML, don't eliminate significant spaces. Instead, replace them with an en-space, U+2002.
2009-03-14 Inspired by Zac fixing hasPrefix: use, fix it elsewhere in Adium
2008-12-29 Merged [25709]: Fixed HTML parsing of src tags without a file:// prefix which point to local files. This really is a hack to continue to allow code elsewhere to embed SRC tags which are technically invalid... but it was allowed before [25376] (merged [25694]) so we'll continue to allow it for now.
2008-11-06 Remove all uses of AIXMLElement from AIHTMLDecoder
2008-11-06 Propertyize/synthesize AIHTMLDecoder
2008-11-04 Eliminate the one and only use of AISetAdditions in Adium
2008-10-28 More deprecation removal
2008-10-28 Eliminate createDirectoriesForPath: since there is cocoa api for it now
2008-10-14 Remove a stray indentation
2008-10-14 * AIHTMLDecoder now skips ul, /ul, and /li tags and converts li tags to bullets. This is a simplistic implementation, as it doesn't know anything about hierarchies of bullet points, but it is better than nothing
2008-10-14 Support the base URL property for decoding links in HTML
2008-09-05 Merged [25125]: We can now import the images in iChat Transcripts rather than throwing an exception. Thanks to stewa in #10912 for noting the location of the previous exception and providing a patch to workaround the issue; this commit instead fixes it. Fixes #10912.
2008-08-24 Updated most of our enumerations to fast enumerations, and did some paramaterization.
2008-08-14 Switch all of our private method categories over to the new objc way of doing it (documented at http://developer.apple.com/documentation/Cocoa/Conceptual/ObjectiveC/Articles/chapter_4_section_5.html#//apple_ref/doc/uid/TP30001163-CH20-SW2). This enforces having implementations for them, and in the process turned up a vast number of methods we had deleted the impl for but not the declaration. loc -= 198;
2008-08-06 svn 1.5 merge tracking is terrible. This is a manual merge of the Sparkle 1.5 branch into trunk