[Haskell-cafe] [PATCH] Interpret missing link relation in Atom as "alternate"

Adam Bergmark adam at bergmark.nl
Fri Oct 2 15:55:50 UTC 2015


Döne! http://hackage.haskell.org/package/feed-0.3.10.2

Thank you,
Adam



On Tue, Sep 29, 2015 at 6:12 PM, <fr33domlover at riseup.net> wrote:

> From: fr33domlover <fr33domlover at riseup.net>
>
> The Atom RFC says that when a link element doesn't
> specify the "rel" attribute, i.e. link relation, it
> should be interpreted as an "alternate" relation.
> This commit makes the feed and item query functions
> treat a missing relation as "alternate".
> ---
>  feed.cabal               |    5 +-
>  src/Text/Feed/Query.hs   |   11 +-
>  tests/Main.hs            |    9 +-
>  tests/Text/Atom/Tests.hs |   39 +
>  tests/files/atom.xml     | 6733
> ++++++++++++++++++++++++++++++++++++++++++++++
>  5 files changed, 6789 insertions(+), 8 deletions(-)
>  create mode 100644 tests/Text/Atom/Tests.hs
>  create mode 100644 tests/files/atom.xml
>
> diff --git a/feed.cabal b/feed.cabal
> index b22dfed..8c04444 100644
> --- a/feed.cabal
> +++ b/feed.cabal
> @@ -17,7 +17,9 @@ homepage:            https://github.com/bergmark/feed
>  bug-reports:         https://github.com/bergmark/feed/issues
>  cabal-version:       >= 1.8
>  build-type:          Simple
> -data-files:          tests/files/rss20.xml
> +data-files:
> +  tests/files/rss20.xml
> +  tests/files/atom.xml
>  extra-source-files:
>    README.md
>    CHANGELOG.md
> @@ -68,6 +70,7 @@ test-suite tests
>    main-is:           Main.hs
>    type:              exitcode-stdio-1.0
>    other-modules:
> +    Text.Atom.Tests
>      Text.RSS.Equals
>      Text.RSS.Export.Tests
>      Text.RSS.Import.Tests
> diff --git a/src/Text/Feed/Query.hs b/src/Text/Feed/Query.hs
> index 970d17b..0a599c7 100644
> --- a/src/Text/Feed/Query.hs
> +++ b/src/Text/Feed/Query.hs
> @@ -129,7 +129,9 @@ getFeedHTML ft =
>          Just e1 -> fmap XML.strContent $ findElement (unqual "link") e1
>          Nothing -> Nothing
>   where
> -  isSelf lr = toStr (Atom.linkRel lr) == "alternate" && isHTMLType
> (linkType lr)
> +  isSelf lr =
> +    let rel = Atom.linkRel lr
> +    in  (isNothing rel || toStr rel == "alternate") && isHTMLType
> (linkType lr)
>
>    isHTMLType (Just str) = "lmth" `isPrefixOf` (reverse str)
>    isHTMLType _ = True -- if none given, assume html.
> @@ -243,13 +245,16 @@ getItemTitle it =
>  getItemLink :: ItemGetter String
>  getItemLink it =
>    case it of
> -       -- look up the 'alternate' HTML link relation on the entry:
> +       -- look up the 'alternate' HTML link relation on the entry, or one
> +       -- without link relation since that is equivalent to 'alternate':
>      Feed.AtomItem i -> fmap Atom.linkHref $ listToMaybe $ filter isSelf $
> Atom.entryLinks i
>      Feed.RSSItem i  -> RSS.rssItemLink i
>      Feed.RSS1Item i -> Just (RSS1.itemLink i)
>      Feed.XMLItem i  -> fmap (\ ei -> XML.strContent ei) $ findElement
> (unqual "link") i
>   where
> -  isSelf lr = toStr (Atom.linkRel lr) == "alternate" && isHTMLType
> (linkType lr)
> +  isSelf lr =
> +    let rel = Atom.linkRel lr
> +    in  (isNothing rel || toStr rel == "alternate") && isHTMLType
> (linkType lr)
>
>    isHTMLType (Just str) = "lmth" `isPrefixOf` (reverse str)
>    isHTMLType _ = True -- if none given, assume html.
> diff --git a/tests/Main.hs b/tests/Main.hs
> index 6aa492a..e55e42f 100644
> --- a/tests/Main.hs
> +++ b/tests/Main.hs
> @@ -2,9 +2,10 @@ module Main (main) where
>
>  import Test.Framework (defaultMain)
>  import Text.RSS.Tests (rssTests)
> -
> +import Text.Atom.Tests (atomTests)
>
>  main :: IO ()
> -main = defaultMain [
> -    rssTests
> -    ]
> +main = defaultMain
> +  [ rssTests
> +  , atomTests
> +  ]
> diff --git a/tests/Text/Atom/Tests.hs b/tests/Text/Atom/Tests.hs
> new file mode 100644
> index 0000000..96a8dae
> --- /dev/null
> +++ b/tests/Text/Atom/Tests.hs
> @@ -0,0 +1,39 @@
> +module Text.Atom.Tests where
> +
> +import Data.Maybe (isJust)
> +import Test.Framework (Test, mutuallyExclusive, testGroup)
> +import Test.HUnit (Assertion, assertBool)
> +import Test.Framework.Providers.HUnit (testCase)
> +import Text.Atom.Feed
> +import Text.Feed.Export
> +import Text.Feed.Import
> +import Text.Feed.Query
> +import Text.Feed.Types
> +import Text.XML.Light
> +
> +import Paths_feed
> +
> +atomTests :: Test
> +atomTests = testGroup "Text.Atom"
> +    [ mutuallyExclusive $ testGroup "Atom"
> +        [ testFullAtomParse
> +        , testAtomAlternate
> +        ]
> +    ]
> +
> +testFullAtomParse :: Test
> +testFullAtomParse = testCase "parse a complete atom file" testAtom
> +  where
> +    testAtom :: Assertion
> +    testAtom = do
> +      putStrLn . ppTopElement . xmlFeed =<< parseFeedFromFile =<<
> getDataFileName "tests/files/atom.xml"
> +      assertBool "OK" True
> +
> +testAtomAlternate :: Test
> +testAtomAlternate = testCase "*unspecified* link relation means
> 'alternate'" testAlt
> +  where
> +    testAlt :: Assertion
> +    testAlt =
> +      let nullent = nullEntry "" (TextString "") ""
> +          item = AtomItem nullent { entryLinks = [nullLink ""] }
> +      in  assertBool "unspecified means alternate" $ isJust $ getItemLink
> item
> diff --git a/tests/files/atom.xml b/tests/files/atom.xml
> new file mode 100644
> index 0000000..c58181b
> --- /dev/null
> +++ b/tests/files/atom.xml
> @@ -0,0 +1,6733 @@
> +<?xml version="1.0" encoding="utf-8"?>
> +
> +<feed xmlns="http://www.w3.org/2005/Atom">
> +<title>RecentChanges</title>
> +<link href="http://www.rel4tion.org/recentchanges/"/>
> +<link href="http://www.rel4tion.org/recentchanges/index.atom" rel="self"
> type="application/atom+xml"/>
> +<author>
> +
> +<name>Rel4tion</name>
> +
> +</author>
> +
> +
> +
> +
> +<id>http://www.rel4tion.org/recentchanges/</id>
> +
> +<subtitle type="html">Rel4tion</subtitle>
> +<generator uri="http://ikiwiki.info/">ikiwiki</generator>
> +<updated>2015-09-27T20:04:22Z</updated>
> +<entry>
> +       <title>change to people/fr33domlover on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_c989bafb33d2bdcd8f01b408f63b7981e62110a9/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-c989bafb33d2bdcd8f01b408f63b7981e62110a9
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-09-27T20:04:22Z</updated>
> +       <published>2015-09-27T20:04:22Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-c989bafb33d2bdcd8f01b408f63b7981e62110a9"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=people/fr33domlover.mdwn;h=70e87c497caca5f004d5434a7d6e52b48c01d4f3;hp=2230d818ac803844191d7842bcb24fa4d5e45e14;hb=c989bafb33d2bdcd8f01b408f63b7981e62110a9;hpb=44148b1572c22c8d979bd90a75f82dbe444530df"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Ffr33domlover"
> rel="nofollow">people/fr33domlover</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Ffr33domlover"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">08:04:22 PM 09/27/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?rev=c989bafb33d2bdcd8f01b408f63b7981e62110a9&amp;do=revert"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +me: update paragraph about the open tickets list<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/funbot on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_44148b1572c22c8d979bd90a75f82dbe444530df/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-44148b1572c22c8d979bd90a75f82dbe444530df
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-09-27T19:58:19Z</updated>
> +       <published>2015-09-27T19:58:19Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-44148b1572c22c8d979bd90a75f82dbe444530df"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/funbot.mdwn;h=ff14943d3018d85e80703df32c9ca2c65c13c83a;hp=d75dd79bb2e9c594f78de4f5897ea7e60d554433;hb=44148b1572c22c8d979bd90a75f82dbe444530df;hpb=1c5f47be50411f5bbcf5b2373d20f6095aeb078f"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Ffunbot"
> rel="nofollow">projects/funbot</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=people%2Ffr33domlover&amp;do=goto"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">07:58:19 PM 09/27/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=revert&amp;rev=44148b1572c22c8d979bd90a75f82dbe444530df"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +funbot: mention the helper packages<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to access/paste on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_1c5f47be50411f5bbcf5b2373d20f6095aeb078f/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-1c5f47be50411f5bbcf5b2373d20f6095aeb078f
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-09-21T17:04:36Z</updated>
> +       <published>2015-09-21T17:04:36Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-1c5f47be50411f5bbcf5b2373d20f6095aeb078f"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=access/paste.mdwn;h=118bdeb612c6b61cf5b59c8bd5b8ea7072a61ae8;hp=978504f51469a8aa3ad45c5d55be22ba0503e4ef;hb=1c5f47be50411f5bbcf5b2373d20f6095aeb078f;hpb=681de3e0ea89f8597ea39766be861e70f947793f"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=access%2Fpaste"
> rel="nofollow">access/paste</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Ffr33domlover"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">05:04:36 PM 09/21/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=revert&amp;rev=1c5f47be50411f5bbcf5b2373d20f6095aeb078f"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +access: update URL of paste server code<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/funbot/guide on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_681de3e0ea89f8597ea39766be861e70f947793f/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-681de3e0ea89f8597ea39766be861e70f947793f
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-09-18T21:39:54Z</updated>
> +       <published>2015-09-18T21:39:54Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-681de3e0ea89f8597ea39766be861e70f947793f"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/funbot/guide.mdwn;h=80ec023c5699abad621d01b1818d39db78ccaed0;hp=da0633c981be6cf4f16c67dea4bf1cba63d2f827;hb=681de3e0ea89f8597ea39766be861e70f947793f;hpb=1e55bf1839b514e0524a294fa62ce0eed46ad3e1"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Ffunbot%2Fguide"
> rel="nofollow">projects/funbot/guide</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Ffr33domlover"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">09:39:54 PM 09/18/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=revert&amp;rev=681de3e0ea89f8597ea39766be861e70f947793f"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +funbot: mention new dependency, funbot-ext-events<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/funbot on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_1e55bf1839b514e0524a294fa62ce0eed46ad3e1/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-1e55bf1839b514e0524a294fa62ce0eed46ad3e1
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-09-17T19:44:49Z</updated>
> +       <published>2015-09-17T19:44:49Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-1e55bf1839b514e0524a294fa62ce0eed46ad3e1"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/funbot.mdwn;h=d75dd79bb2e9c594f78de4f5897ea7e60d554433;hp=f563f5208d711e1946624f45b58eb19e1c8fd688;hb=1e55bf1839b514e0524a294fa62ce0eed46ad3e1;hpb=9abd0dcfc30145da75cd2b246eac79fdd250a57f"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Ffunbot&amp;do=goto"
> rel="nofollow">projects/funbot</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=people%2Ffr33domlover&amp;do=goto"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">07:44:49 PM 09/17/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=revert&amp;rev=1e55bf1839b514e0524a294fa62ce0eed46ad3e1"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +funbot: remove dummy text<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/funbot on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_9abd0dcfc30145da75cd2b246eac79fdd250a57f/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-9abd0dcfc30145da75cd2b246eac79fdd250a57f
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-09-17T19:43:38Z</updated>
> +       <published>2015-09-17T19:43:38Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-9abd0dcfc30145da75cd2b246eac79fdd250a57f"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/funbot.mdwn;h=f563f5208d711e1946624f45b58eb19e1c8fd688;hp=4648b803378bdbf71232640adf24429bf1e0bf59;hb=9abd0dcfc30145da75cd2b246eac79fdd250a57f;hpb=8b70f13be1209a55b3d31122cba2a8a8a31539ab"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Ffunbot"
> rel="nofollow">projects/funbot</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Ffr33domlover"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">07:43:38 PM 09/17/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?rev=9abd0dcfc30145da75cd2b246eac79fdd250a57f&amp;do=revert"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +funbot: minor update and some dummy test text<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to shortcuts on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_8b70f13be1209a55b3d31122cba2a8a8a31539ab/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-8b70f13be1209a55b3d31122cba2a8a8a31539ab
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-09-17T19:22:22Z</updated>
> +       <published>2015-09-17T19:22:22Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-8b70f13be1209a55b3d31122cba2a8a8a31539ab"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=shortcuts.mdwn;h=96adf1fbd8cb6601d15184bd5ec1854e262c003b;hp=848c9edfe10d412737a37883ff955dbee20089cb;hb=8b70f13be1209a55b3d31122cba2a8a8a31539ab;hpb=4811a57e33da708175ddd6d016e78bd410f4d1ea"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=shortcuts&amp;do=goto"
> rel="nofollow">shortcuts</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Ffr33domlover"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">07:22:22 PM 09/17/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=revert&amp;rev=8b70f13be1209a55b3d31122cba2a8a8a31539ab"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +fix notabug shortcut, it shouldn&#39;t url-encode<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/funbot/tickets/5 on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_4811a57e33da708175ddd6d016e78bd410f4d1ea/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-4811a57e33da708175ddd6d016e78bd410f4d1ea
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-09-17T13:28:45Z</updated>
> +       <published>2015-09-17T13:28:45Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-4811a57e33da708175ddd6d016e78bd410f4d1ea"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/funbot/tickets/5.mdwn;h=f3c6b11312ebf91ef89c077beb98b475f5f7760c;hp=993dac4b04ed6e9cfc0796f09a90ee568106b193;hb=4811a57e33da708175ddd6d016e78bd410f4d1ea;hpb=07e5d7d13fc364c06ed1bda3f21fa6a493276859"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Ffunbot%2Ftickets%2F5"
> rel="nofollow">projects/funbot/tickets/5</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Ffr33domlover"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">01:28:45 PM 09/17/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?rev=4811a57e33da708175ddd6d016e78bd410f4d1ea&amp;do=revert"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +funbot: close memo ticket<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/funbot/tickets/2 on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_07e5d7d13fc364c06ed1bda3f21fa6a493276859/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-07e5d7d13fc364c06ed1bda3f21fa6a493276859
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-09-17T13:22:05Z</updated>
> +       <published>2015-09-17T13:22:05Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-07e5d7d13fc364c06ed1bda3f21fa6a493276859"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/funbot/tickets/2.mdwn;h=58c609b1cc1ffb88ad01aa39806bb43d166f67f9;hp=2cc56bb7968465ca690ebcbed6ed5a5213fb8a0c;hb=07e5d7d13fc364c06ed1bda3f21fa6a493276859;hpb=5f6c2df9dfec2c3303dedfbd4712f616e7dd5ebe"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Ffunbot%2Ftickets%2F2"
> rel="nofollow">projects/funbot/tickets/2</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=people%2Ffr33domlover&amp;do=goto"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">01:22:05 PM 09/17/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?rev=07e5d7d13fc364c06ed1bda3f21fa6a493276859&amp;do=revert"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +funbot: close persistence ticket, we have json-state now<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects projects/json-state
> projects/json-state/decisions projects/json-state/forum
> projects/json-state/news projects/json-state/releases
> projects/json-state/tickets on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_5f6c2df9dfec2c3303dedfbd4712f616e7dd5ebe/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-5f6c2df9dfec2c3303dedfbd4712f616e7dd5ebe
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-09-17T13:01:04Z</updated>
> +       <published>2015-09-17T13:01:04Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-5f6c2df9dfec2c3303dedfbd4712f616e7dd5ebe"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects.mdwn;h=345421854fa54c60f59686d3908fe58dd4789069;hp=10ae06877f9882b6bd6f3bb1c5b9dd3c7ab032c1;hb=5f6c2df9dfec2c3303dedfbd4712f616e7dd5ebe;hpb=8271123effea28344517c121ee596eb7217e28e2"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects&amp;do=goto"
> rel="nofollow">projects</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/json-state.mdwn;h=41137012211445b4f3f48fc8e1c036ababdab2b9;hp=0000000000000000000000000000000000000000;hb=5f6c2df9dfec2c3303dedfbd4712f616e7dd5ebe;hpb=8271123effea28344517c121ee596eb7217e28e2"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Fjson-state&amp;do=goto"
> rel="nofollow">projects/json-state</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/json-state/decisions.mdwn;h=87e40f15dec6533bbeebf666fa4d2761c0d5adad;hp=0000000000000000000000000000000000000000;hb=5f6c2df9dfec2c3303dedfbd4712f616e7dd5ebe;hpb=8271123effea28344517c121ee596eb7217e28e2"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Fjson-state%2Fdecisions"
> rel="nofollow">projects/json-state/decisions</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/json-state/forum.mdwn;h=cdc6c618a5af5e908dc00cabeed27a4f4d5c9125;hp=0000000000000000000000000000000000000000;hb=5f6c2df9dfec2c3303dedfbd4712f616e7dd5ebe;hpb=8271123effea28344517c121ee596eb7217e28e2"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Fjson-state%2Fforum"
> rel="nofollow">projects/json-state/forum</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/json-state/news.mdwn;h=c463308444ec8f91a1bfae7dfda2e5fe3d183863;hp=0000000000000000000000000000000000000000;hb=5f6c2df9dfec2c3303dedfbd4712f616e7dd5ebe;hpb=8271123effea28344517c121ee596eb7217e28e2"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Fjson-state%2Fnews"
> rel="nofollow">projects/json-state/news</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/json-state/releases.mdwn;h=e4dcf00f9501d98e461c4a6ccd75818cc54b71fc;hp=0000000000000000000000000000000000000000;hb=5f6c2df9dfec2c3303dedfbd4712f616e7dd5ebe;hpb=8271123effea28344517c121ee596eb7217e28e2"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Fjson-state%2Freleases&amp;do=goto"
> rel="nofollow">projects/json-state/releases</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/json-state/tickets.mdwn;h=df2d37627427fe3d89829ad503c725de72c7d762;hp=0000000000000000000000000000000000000000;hb=5f6c2df9dfec2c3303dedfbd4712f616e7dd5ebe;hpb=8271123effea28344517c121ee596eb7217e28e2"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Fjson-state%2Ftickets"
> rel="nofollow">projects/json-state/tickets</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=people%2Ffr33domlover&amp;do=goto"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">01:01:04 PM 09/17/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?rev=5f6c2df9dfec2c3303dedfbd4712f616e7dd5ebe&amp;do=revert"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +json-state: new project<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/settings projects/settings/releases on
> Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_8271123effea28344517c121ee596eb7217e28e2/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-8271123effea28344517c121ee596eb7217e28e2
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-09-17T12:59:24Z</updated>
> +       <published>2015-09-17T12:59:24Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-8271123effea28344517c121ee596eb7217e28e2"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/settings.mdwn;h=be444e1b1ee23712cdb25e2d3fa155319dd04b38;hp=b7f5ffc7ee35f85a7a7d5094fdc02c578122825e;hb=8271123effea28344517c121ee596eb7217e28e2;hpb=9bd1e350a4f81d79b820eb5a1ab3e644a280399a"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Fsettings&amp;do=goto"
> rel="nofollow">projects/settings</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/settings/releases.mdwn;h=4c6c784b8ea0ca05ff9fd5232a2a195159aa4cae;hp=e4efd9b315242da6e04f9e94546ed3522bdaac68;hb=8271123effea28344517c121ee596eb7217e28e2;hpb=9bd1e350a4f81d79b820eb5a1ab3e644a280399a"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Fsettings%2Freleases"
> rel="nofollow">projects/settings/releases</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=people%2Ffr33domlover&amp;do=goto"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">12:59:24 PM 09/17/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=revert&amp;rev=8271123effea28344517c121ee596eb7217e28e2"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +settings: update repo link<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/funbot/tickets/15 on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_9bd1e350a4f81d79b820eb5a1ab3e644a280399a/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-9bd1e350a4f81d79b820eb5a1ab3e644a280399a
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-09-17T11:51:13Z</updated>
> +       <published>2015-09-17T11:51:13Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-9bd1e350a4f81d79b820eb5a1ab3e644a280399a"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/funbot/tickets/15.mdwn;h=a6aef60136eb5939cd49fe3dff12a23214f96914;hp=37a1b5e2695ce312b8f1b8e37078dd4cdbc90898;hb=9bd1e350a4f81d79b820eb5a1ab3e644a280399a;hpb=edabc8116457185ce07d1f61737fa2ce8518bd4b"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Ffunbot%2Ftickets%2F15&amp;do=goto"
> rel="nofollow">projects/funbot/tickets/15</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=people%2Ffr33domlover&amp;do=goto"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">11:51:13 AM 09/17/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=revert&amp;rev=9bd1e350a4f81d79b820eb5a1ab3e644a280399a"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +funbot: settings system is finally complete<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/funbot/manual on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_edabc8116457185ce07d1f61737fa2ce8518bd4b/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-edabc8116457185ce07d1f61737fa2ce8518bd4b
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-09-16T19:04:22Z</updated>
> +       <published>2015-09-16T19:04:22Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-edabc8116457185ce07d1f61737fa2ce8518bd4b"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/funbot/manual.mdwn;h=d098b5370a8cbf0e60f80e37f23276dda4f2afd1;hp=56ff43060cd3eecca2eb10237bc7303d1ecc8652;hb=edabc8116457185ce07d1f61737fa2ce8518bd4b;hpb=37ec11668e6a6a9418209c5411508d018592519d"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Ffunbot%2Fmanual"
> rel="nofollow">projects/funbot/manual</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=people%2Ffr33domlover&amp;do=goto"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">07:04:22 PM 09/16/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?rev=edabc8116457185ce07d1f61737fa2ce8518bd4b&amp;do=revert"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +funbot: update manual with recent changes<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to people/fr33domlover/blog/love-of-wisdom on
> Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_37ec11668e6a6a9418209c5411508d018592519d/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-37ec11668e6a6a9418209c5411508d018592519d
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-09-12T13:12:06Z</updated>
> +       <published>2015-09-12T13:12:06Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-37ec11668e6a6a9418209c5411508d018592519d"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=people/fr33domlover/blog/love-of-wisdom.mdwn;h=a9bfd88c473fc20270af0a83570f8a4b70d12691;hp=0000000000000000000000000000000000000000;hb=37ec11668e6a6a9418209c5411508d018592519d;hpb=29d3a9e5554fb2ea6987f31f968578cc2647e8f3"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Ffr33domlover%2Fblog%2Flove-of-wisdom"
> rel="nofollow">people/fr33domlover/blog/love-of-wisdom</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=people%2Ffr33domlover&amp;do=goto"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">01:12:06 PM 09/12/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?rev=37ec11668e6a6a9418209c5411508d018592519d&amp;do=revert"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +me: another blog post...<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to news/break on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_29d3a9e5554fb2ea6987f31f968578cc2647e8f3/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-29d3a9e5554fb2ea6987f31f968578cc2647e8f3
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-09-10T22:01:02Z</updated>
> +       <published>2015-09-10T22:01:02Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-29d3a9e5554fb2ea6987f31f968578cc2647e8f3"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=news/break.mdwn;h=5eb7a858b10923cf2973d7b6004cb2c1783bea45;hp=0000000000000000000000000000000000000000;hb=29d3a9e5554fb2ea6987f31f968578cc2647e8f3;hpb=34a21b40a95051a6bee7f3c89223b868ebcb64ac"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=news%2Fbreak&amp;do=goto"
> rel="nofollow">news/break</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Ffr33domlover"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">10:01:02 PM 09/10/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?rev=29d3a9e5554fb2ea6987f31f968578cc2647e8f3&amp;do=revert"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +news: break<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to index on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_34a21b40a95051a6bee7f3c89223b868ebcb64ac/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-34a21b40a95051a6bee7f3c89223b868ebcb64ac
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-09-10T21:50:12Z</updated>
> +       <published>2015-09-10T21:50:12Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-34a21b40a95051a6bee7f3c89223b868ebcb64ac"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=index.mdwn;h=c68cb36b6224504f98fe4811e08c49a1b07f2df0;hp=126fe28b2815f6a3d4a3095dd5e11485cebb8086;hb=34a21b40a95051a6bee7f3c89223b868ebcb64ac;hpb=ed2a95c268ef060d9dddae5a24b4672911491c72"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=index"
> rel="nofollow">index</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=people%2Ffr33domlover&amp;do=goto"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">09:50:12 PM 09/10/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?rev=34a21b40a95051a6bee7f3c89223b868ebcb64ac&amp;do=revert"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +index: remove feedback box<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/funbot/manual on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_ed2a95c268ef060d9dddae5a24b4672911491c72/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-ed2a95c268ef060d9dddae5a24b4672911491c72
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-09-10T18:46:34Z</updated>
> +       <published>2015-09-10T18:46:34Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-ed2a95c268ef060d9dddae5a24b4672911491c72"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/funbot/manual.mdwn;h=56ff43060cd3eecca2eb10237bc7303d1ecc8652;hp=44c3d463280d7e275a6f93bd9633289f0872b686;hb=ed2a95c268ef060d9dddae5a24b4672911491c72;hpb=d3cdcea02b8dedede9d590ff8a730cac95a10c58"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Ffunbot%2Fmanual&amp;do=goto"
> rel="nofollow">projects/funbot/manual</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Ffr33domlover"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">06:46:34 PM 09/10/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=revert&amp;rev=ed2a95c268ef060d9dddae5a24b4672911491c72"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +funbot: revise manual<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/funbot/tickets/5 on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_d3cdcea02b8dedede9d590ff8a730cac95a10c58/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-d3cdcea02b8dedede9d590ff8a730cac95a10c58
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-09-10T13:16:52Z</updated>
> +       <published>2015-09-10T13:16:52Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-d3cdcea02b8dedede9d590ff8a730cac95a10c58"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/funbot/tickets/5.mdwn;h=993dac4b04ed6e9cfc0796f09a90ee568106b193;hp=606f28657913248cbfe3204aa6f0ffebec656b55;hb=d3cdcea02b8dedede9d590ff8a730cac95a10c58;hpb=1a05dfe95cd5a544f09ef39d5187f6ecf75af3b2"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Ffunbot%2Ftickets%2F5&amp;do=goto"
> rel="nofollow">projects/funbot/tickets/5</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Ffr33domlover"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">01:16:52 PM 09/10/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=revert&amp;rev=d3cdcea02b8dedede9d590ff8a730cac95a10c58"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +funbot: document work on memos<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/funbot/tickets/18 on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_1a05dfe95cd5a544f09ef39d5187f6ecf75af3b2/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-1a05dfe95cd5a544f09ef39d5187f6ecf75af3b2
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-08-31T17:35:31Z</updated>
> +       <published>2015-08-31T17:35:31Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-1a05dfe95cd5a544f09ef39d5187f6ecf75af3b2"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/funbot/tickets/18.mdwn;h=92ddfe617ac1113a7b96d24857c5e783f55432aa;hp=d9fbdf7bd75e3ce0638d56f2bae98e47270b7baa;hb=1a05dfe95cd5a544f09ef39d5187f6ecf75af3b2;hpb=74c8029879813f445632d74c6b0233496729a757"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Ffunbot%2Ftickets%2F18&amp;do=goto"
> rel="nofollow">projects/funbot/tickets/18</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=people%2Ffr33domlover&amp;do=goto"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">05:35:31 PM 08/31/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?rev=1a05dfe95cd5a544f09ef39d5187f6ecf75af3b2&amp;do=revert"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +funbot: document progress on friendly command access<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/funbot/tickets/18 on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_74c8029879813f445632d74c6b0233496729a757/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-74c8029879813f445632d74c6b0233496729a757
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-08-30T16:31:13Z</updated>
> +       <published>2015-08-30T16:31:13Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-74c8029879813f445632d74c6b0233496729a757"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/funbot/tickets/18.mdwn;h=d9fbdf7bd75e3ce0638d56f2bae98e47270b7baa;hp=f717e312738110e9fa51874c4efa2b918dca6c43;hb=74c8029879813f445632d74c6b0233496729a757;hpb=2f15a1e3784ca2c076afb2654bb313723de8592e"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Ffunbot%2Ftickets%2F18"
> rel="nofollow">projects/funbot/tickets/18</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=people%2Ffr33domlover&amp;do=goto"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">04:31:13 PM 08/30/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?rev=74c8029879813f445632d74c6b0233496729a757&amp;do=revert"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +funbot: plan API for friendly command access<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/funbot/guide on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_2f15a1e3784ca2c076afb2654bb313723de8592e/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-2f15a1e3784ca2c076afb2654bb313723de8592e
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-08-28T21:39:21Z</updated>
> +       <published>2015-08-28T21:39:21Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-2f15a1e3784ca2c076afb2654bb313723de8592e"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/funbot/guide.mdwn;h=da0633c981be6cf4f16c67dea4bf1cba63d2f827;hp=bb59f3668fc21acdb2072022cb65808df5becebd;hb=2f15a1e3784ca2c076afb2654bb313723de8592e;hpb=60f4a8590a34861a966b85ad8d7e6c9c8daa7ace"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Ffunbot%2Fguide"
> rel="nofollow">projects/funbot/guide</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Ffr33domlover"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">09:39:21 PM 08/28/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=revert&amp;rev=2f15a1e3784ca2c076afb2654bb313723de8592e"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +funbot: update guide to explain new state files<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/funbot/tickets/15 on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_60f4a8590a34861a966b85ad8d7e6c9c8daa7ace/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-60f4a8590a34861a966b85ad8d7e6c9c8daa7ace
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-08-24T19:45:05Z</updated>
> +       <published>2015-08-24T19:45:05Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-60f4a8590a34861a966b85ad8d7e6c9c8daa7ace"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/funbot/tickets/15.mdwn;h=37a1b5e2695ce312b8f1b8e37078dd4cdbc90898;hp=a466fadce2c88cde0347c164e7a49c97e32e1b13;hb=60f4a8590a34861a966b85ad8d7e6c9c8daa7ace;hpb=d0ab67c9ff7643ac75e918e3cb295288003e47e4"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Ffunbot%2Ftickets%2F15&amp;do=goto"
> rel="nofollow">projects/funbot/tickets/15</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=people%2Ffr33domlover&amp;do=goto"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">07:45:05 PM 08/24/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?rev=60f4a8590a34861a966b85ad8d7e6c9c8daa7ace&amp;do=revert"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +funbot: settings now support exploration<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/funbot/tickets/18 on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_d0ab67c9ff7643ac75e918e3cb295288003e47e4/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-d0ab67c9ff7643ac75e918e3cb295288003e47e4
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-08-23T22:01:20Z</updated>
> +       <published>2015-08-23T22:01:20Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-d0ab67c9ff7643ac75e918e3cb295288003e47e4"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/funbot/tickets/18.mdwn;h=f717e312738110e9fa51874c4efa2b918dca6c43;hp=0000000000000000000000000000000000000000;hb=d0ab67c9ff7643ac75e918e3cb295288003e47e4;hpb=6e90ed1b9fa935727054984b9252bd79a5dbef6b"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Ffunbot%2Ftickets%2F18&amp;do=goto"
> rel="nofollow">projects/funbot/tickets/18</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Ffr33domlover"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">10:01:20 PM 08/23/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=revert&amp;rev=d0ab67c9ff7643ac75e918e3cb295288003e47e4"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +funbot: new ticket: intuitive UI<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/settings/tickets/1 on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_6e90ed1b9fa935727054984b9252bd79a5dbef6b/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-6e90ed1b9fa935727054984b9252bd79a5dbef6b
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-08-23T21:49:11Z</updated>
> +       <published>2015-08-23T21:49:11Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-6e90ed1b9fa935727054984b9252bd79a5dbef6b"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/settings/tickets/1.mdwn;h=e666ba63a41d9c574d63f73f8e85316a165aa6f9;hp=1212dbea4050efc9f0e06f61ea832babb70099ed;hb=6e90ed1b9fa935727054984b9252bd79a5dbef6b;hpb=9a0291a0846a9ff9cca95b6f7d23938bc2dcdefa"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Fsettings%2Ftickets%2F1&amp;do=goto"
> rel="nofollow">projects/settings/tickets/1</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=people%2Ffr33domlover&amp;do=goto"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">09:49:11 PM 08/23/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=revert&amp;rev=6e90ed1b9fa935727054984b9252bd79a5dbef6b"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +settings: close #1, callbacks and save/load added<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/funbot/guide on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_9a0291a0846a9ff9cca95b6f7d23938bc2dcdefa/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-9a0291a0846a9ff9cca95b6f7d23938bc2dcdefa
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-08-23T19:23:22Z</updated>
> +       <published>2015-08-23T19:23:22Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-9a0291a0846a9ff9cca95b6f7d23938bc2dcdefa"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/funbot/guide.mdwn;h=bb59f3668fc21acdb2072022cb65808df5becebd;hp=70eb2c6b749d1499807a21e0bc4a6ef2614f90a4;hb=9a0291a0846a9ff9cca95b6f7d23938bc2dcdefa;hpb=6f734bfda528f1afb249d33bb438a7a5638f3ad1"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Ffunbot%2Fguide&amp;do=goto"
> rel="nofollow">projects/funbot/guide</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=people%2Ffr33domlover&amp;do=goto"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">07:23:22 PM 08/23/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=revert&amp;rev=9a0291a0846a9ff9cca95b6f7d23938bc2dcdefa"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +funbot: explain about settings in the guide<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/settings/tickets/1 on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_6f734bfda528f1afb249d33bb438a7a5638f3ad1/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-6f734bfda528f1afb249d33bb438a7a5638f3ad1
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-08-23T09:49:55Z</updated>
> +       <published>2015-08-23T09:49:55Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-6f734bfda528f1afb249d33bb438a7a5638f3ad1"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/settings/tickets/1.mdwn;h=1212dbea4050efc9f0e06f61ea832babb70099ed;hp=83d3c27561e380877f7214159378ff806b206b2c;hb=6f734bfda528f1afb249d33bb438a7a5638f3ad1;hpb=428482ea05956bcfebaaa68abeb9cdc1105ed129"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Fsettings%2Ftickets%2F1"
> rel="nofollow">projects/settings/tickets/1</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Ffr33domlover"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">09:49:55 AM 08/23/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=revert&amp;rev=6f734bfda528f1afb249d33bb438a7a5638f3ad1"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +settings: plan custom debounce action for saving<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to people/fr33domlover/blog/insanity2 on
> Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_428482ea05956bcfebaaa68abeb9cdc1105ed129/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-428482ea05956bcfebaaa68abeb9cdc1105ed129
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-08-23T09:49:16Z</updated>
> +       <published>2015-08-23T09:49:16Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-428482ea05956bcfebaaa68abeb9cdc1105ed129"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=people/fr33domlover/blog/insanity2.mdwn;h=9746b62a83126b3a142ff7d067de559441e39a00;hp=0000000000000000000000000000000000000000;hb=428482ea05956bcfebaaa68abeb9cdc1105ed129;hpb=67577535d19a1fcd1c187d71f41aa012a16d65f3"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=people%2Ffr33domlover%2Fblog%2Finsanity2&amp;do=goto"
> rel="nofollow">people/fr33domlover/blog/insanity2</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=people%2Ffr33domlover&amp;do=goto"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">09:49:16 AM 08/23/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?rev=428482ea05956bcfebaaa68abeb9cdc1105ed129&amp;do=revert"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +blog post...<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/settings/tickets/1 on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_67577535d19a1fcd1c187d71f41aa012a16d65f3/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-67577535d19a1fcd1c187d71f41aa012a16d65f3
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-08-22T00:42:25Z</updated>
> +       <published>2015-08-22T00:42:25Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-67577535d19a1fcd1c187d71f41aa012a16d65f3"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/settings/tickets/1.mdwn;h=83d3c27561e380877f7214159378ff806b206b2c;hp=6a63447c56eaeca30431fad77cb1945230f73ac7;hb=67577535d19a1fcd1c187d71f41aa012a16d65f3;hpb=f4aaab3a133c556a0db208924e86bbb312879319"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Fsettings%2Ftickets%2F1"
> rel="nofollow">projects/settings/tickets/1</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Ffr33domlover"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">12:42:25 AM 08/22/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=revert&amp;rev=67577535d19a1fcd1c187d71f41aa012a16d65f3"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +settings: work on callbacks and persistence<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/settings/tickets/1 on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_f4aaab3a133c556a0db208924e86bbb312879319/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-f4aaab3a133c556a0db208924e86bbb312879319
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-08-21T14:20:30Z</updated>
> +       <published>2015-08-21T14:20:30Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-f4aaab3a133c556a0db208924e86bbb312879319"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/settings/tickets/1.mdwn;h=6a63447c56eaeca30431fad77cb1945230f73ac7;hp=0000000000000000000000000000000000000000;hb=f4aaab3a133c556a0db208924e86bbb312879319;hpb=2e457435020f1ab3b5836e8efb3cc1228c6b595c"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Fsettings%2Ftickets%2F1&amp;do=goto"
> rel="nofollow">projects/settings/tickets/1</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=people%2Ffr33domlover&amp;do=goto"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">02:20:30 PM 08/21/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?rev=f4aaab3a133c556a0db208924e86bbb312879319&amp;do=revert"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +settings: new ticket: scope and features<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects projects/feed-collect
> projects/feed-collect/decisions projects/feed-collect/forum
> projects/feed-collect/news projects/feed-collect/releases
> projects/feed-collect/tickets on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_2e457435020f1ab3b5836e8efb3cc1228c6b595c/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-2e457435020f1ab3b5836e8efb3cc1228c6b595c
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-08-19T10:02:40Z</updated>
> +       <published>2015-08-19T10:02:40Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-2e457435020f1ab3b5836e8efb3cc1228c6b595c"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects.mdwn;h=10ae06877f9882b6bd6f3bb1c5b9dd3c7ab032c1;hp=898655fcc20c4302682ffe196aa54e3afeb59b36;hb=2e457435020f1ab3b5836e8efb3cc1228c6b595c;hpb=e127857268e2b2c8181245b6693205c98f371648"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects&amp;do=goto"
> rel="nofollow">projects</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/feed-collect.mdwn;h=6c574d38ef834e36a9a9be69bfcff3a6598fe461;hp=0000000000000000000000000000000000000000;hb=2e457435020f1ab3b5836e8efb3cc1228c6b595c;hpb=e127857268e2b2c8181245b6693205c98f371648"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Ffeed-collect&amp;do=goto"
> rel="nofollow">projects/feed-collect</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/feed-collect/decisions.mdwn;h=ae1b64118c25d3e7236d3f239dfb9c423225532a;hp=0000000000000000000000000000000000000000;hb=2e457435020f1ab3b5836e8efb3cc1228c6b595c;hpb=e127857268e2b2c8181245b6693205c98f371648"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Ffeed-collect%2Fdecisions"
> rel="nofollow">projects/feed-collect/decisions</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/feed-collect/forum.mdwn;h=21ae61a8f6c6c15ac9fc7d1776599bddbb66bd39;hp=0000000000000000000000000000000000000000;hb=2e457435020f1ab3b5836e8efb3cc1228c6b595c;hpb=e127857268e2b2c8181245b6693205c98f371648"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Ffeed-collect%2Fforum&amp;do=goto"
> rel="nofollow">projects/feed-collect/forum</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/feed-collect/news.mdwn;h=b7a2df9ac1e94ba97e0bfbcc56d346a153ad78f1;hp=0000000000000000000000000000000000000000;hb=2e457435020f1ab3b5836e8efb3cc1228c6b595c;hpb=e127857268e2b2c8181245b6693205c98f371648"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Ffeed-collect%2Fnews&amp;do=goto"
> rel="nofollow">projects/feed-collect/news</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/feed-collect/releases.mdwn;h=1bf09d72d75f6bce0cf32b591d5fb6245c99d4c9;hp=0000000000000000000000000000000000000000;hb=2e457435020f1ab3b5836e8efb3cc1228c6b595c;hpb=e127857268e2b2c8181245b6693205c98f371648"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Ffeed-collect%2Freleases&amp;do=goto"
> rel="nofollow">projects/feed-collect/releases</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/feed-collect/tickets.mdwn;h=99f8e90067ef5c1404674843969b71e2184721aa;hp=0000000000000000000000000000000000000000;hb=2e457435020f1ab3b5836e8efb3cc1228c6b595c;hpb=e127857268e2b2c8181245b6693205c98f371648"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Ffeed-collect%2Ftickets&amp;do=goto"
> rel="nofollow">projects/feed-collect/tickets</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Ffr33domlover"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">10:02:40 AM 08/19/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=revert&amp;rev=2e457435020f1ab3b5836e8efb3cc1228c6b595c"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +feed-collect: new project (actually about to release)<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/funbot/tickets/6 on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_e127857268e2b2c8181245b6693205c98f371648/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-e127857268e2b2c8181245b6693205c98f371648
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-08-18T17:06:48Z</updated>
> +       <published>2015-08-18T17:06:48Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-e127857268e2b2c8181245b6693205c98f371648"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/funbot/tickets/6.mdwn;h=572dde578082b3005aa3534ed3c0a7f92f21f7b3;hp=bffd53261a36337edc4988f732b733d1996f6e5c;hb=e127857268e2b2c8181245b6693205c98f371648;hpb=1f86b06ce5d3930dc77991312d02cba3193084f6"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Ffunbot%2Ftickets%2F6&amp;do=goto"
> rel="nofollow">projects/funbot/tickets/6</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=people%2Ffr33domlover&amp;do=goto"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">05:06:48 PM 08/18/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=revert&amp;rev=e127857268e2b2c8181245b6693205c98f371648"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +fix invalid link<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/funbot/tickets/6 on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_1f86b06ce5d3930dc77991312d02cba3193084f6/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-1f86b06ce5d3930dc77991312d02cba3193084f6
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-08-18T14:54:20Z</updated>
> +       <published>2015-08-18T14:54:20Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-1f86b06ce5d3930dc77991312d02cba3193084f6"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/funbot/tickets/6.mdwn;h=bffd53261a36337edc4988f732b733d1996f6e5c;hp=685bde0ac57f25f9a469350985154c13330ccf1e;hb=1f86b06ce5d3930dc77991312d02cba3193084f6;hpb=d2bcaf67089dbb1b92c2128b23134e48597ed455"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Ffunbot%2Ftickets%2F6&amp;do=goto"
> rel="nofollow">projects/funbot/tickets/6</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=people%2Ffr33domlover&amp;do=goto"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">02:54:20 PM 08/18/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=revert&amp;rev=1f86b06ce5d3930dc77991312d02cba3193084f6"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +funbot: update status of freepost integration<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/funbot/tickets/4 on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_d2bcaf67089dbb1b92c2128b23134e48597ed455/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-d2bcaf67089dbb1b92c2128b23134e48597ed455
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-08-18T14:02:57Z</updated>
> +       <published>2015-08-18T14:02:57Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-d2bcaf67089dbb1b92c2128b23134e48597ed455"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/funbot/tickets/4.mdwn;h=ff2a4540311b77cfbad57c95b57a2090b7eedb9b;hp=071cb7e64ae57c211834ee5cc7e80132209a6bc2;hb=d2bcaf67089dbb1b92c2128b23134e48597ed455;hpb=b61f7736931f2801c6fdd401f29f6fc78b2d900a"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Ffunbot%2Ftickets%2F4&amp;do=goto"
> rel="nofollow">projects/funbot/tickets/4</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=people%2Ffr33domlover&amp;do=goto"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">02:02:57 PM 08/18/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=revert&amp;rev=d2bcaf67089dbb1b92c2128b23134e48597ed455"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +funbot: notes on coding of logging system<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/funbot/tickets/16 on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_b61f7736931f2801c6fdd401f29f6fc78b2d900a/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-b61f7736931f2801c6fdd401f29f6fc78b2d900a
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-08-17T09:12:02Z</updated>
> +       <published>2015-08-17T09:12:02Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-b61f7736931f2801c6fdd401f29f6fc78b2d900a"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/funbot/tickets/16.mdwn;h=1197b4650734456f81f92dfd314c5a076bb5762c;hp=15bbe0cb556feb7ed9000c36bb42a8396fb12921;hb=b61f7736931f2801c6fdd401f29f6fc78b2d900a;hpb=a9301fc50b752e55af343255a0b54b990646bd43"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Ffunbot%2Ftickets%2F16&amp;do=goto"
> rel="nofollow">projects/funbot/tickets/16</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Ffr33domlover"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">09:12:02 AM 08/17/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?rev=b61f7736931f2801c6fdd401f29f6fc78b2d900a&amp;do=revert"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +funbot: close #16, feed reader implemented<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/funbot/tickets/17 on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_a9301fc50b752e55af343255a0b54b990646bd43/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-a9301fc50b752e55af343255a0b54b990646bd43
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-08-17T09:09:36Z</updated>
> +       <published>2015-08-17T09:09:36Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-a9301fc50b752e55af343255a0b54b990646bd43"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/funbot/tickets/17.mdwn;h=7502e27ea78f3f9667ccdad47b77914d283502d2;hp=70f51944ac387924b6f8bf7433631a3baeb038a4;hb=a9301fc50b752e55af343255a0b54b990646bd43;hpb=360a6d980da581e86d5fe7a80c1fa059b668ab93"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Ffunbot%2Ftickets%2F17&amp;do=goto"
> rel="nofollow">projects/funbot/tickets/17</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Ffr33domlover"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">09:09:36 AM 08/17/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=revert&amp;rev=a9301fc50b752e55af343255a0b54b990646bd43"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +funbot: close #17, the bot should spam less now<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/funbot/tickets/10
> projects/irc-fun-bot/tickets/3 on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_360a6d980da581e86d5fe7a80c1fa059b668ab93/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-360a6d980da581e86d5fe7a80c1fa059b668ab93
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-08-17T00:39:34Z</updated>
> +       <published>2015-08-17T00:39:34Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-360a6d980da581e86d5fe7a80c1fa059b668ab93"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/funbot/tickets/10.mdwn;h=f267e06c2e4ba2d221a5e8b493e7d83954a86b98;hp=2dfa6c5aa076d72de618c647a17774e23cacf78f;hb=360a6d980da581e86d5fe7a80c1fa059b668ab93;hpb=f7b4fd5b731cb17a6489352f10a735368f34d46d"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Ffunbot%2Ftickets%2F10"
> rel="nofollow">projects/funbot/tickets/10</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/irc-fun-bot/tickets/3.mdwn;h=ca2600e82be6faed8128f2e92e37f7941fc25415;hp=cf324dd4a0534fb640a72e516a58205b01917e28;hb=360a6d980da581e86d5fe7a80c1fa059b668ab93;hpb=f7b4fd5b731cb17a6489352f10a735368f34d46d"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Firc-fun-bot%2Ftickets%2F3&amp;do=goto"
> rel="nofollow">projects/irc-fun-bot/tickets/3</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Ffr33domlover"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">12:39:34 AM 08/17/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?rev=360a6d980da581e86d5fe7a80c1fa059b668ab93&amp;do=revert"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +funbot: close tickets done with<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/funbot/guide projects/funbot/manual on
> Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_f7b4fd5b731cb17a6489352f10a735368f34d46d/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-f7b4fd5b731cb17a6489352f10a735368f34d46d
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-08-16T22:15:37Z</updated>
> +       <published>2015-08-16T22:15:37Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-f7b4fd5b731cb17a6489352f10a735368f34d46d"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/funbot/guide.mdwn;h=70eb2c6b749d1499807a21e0bc4a6ef2614f90a4;hp=85e000a7ff584f162078086dd4c4a2a4fd960028;hb=f7b4fd5b731cb17a6489352f10a735368f34d46d;hpb=599eada420921192ceae6cb687f8a9950022044f"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Ffunbot%2Fguide&amp;do=goto"
> rel="nofollow">projects/funbot/guide</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/funbot/manual.mdwn;h=44c3d463280d7e275a6f93bd9633289f0872b686;hp=b67467c06eb95e96e22c9645100359f147b32ad1;hb=f7b4fd5b731cb17a6489352f10a735368f34d46d;hpb=599eada420921192ceae6cb687f8a9950022044f"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Ffunbot%2Fmanual&amp;do=goto"
> rel="nofollow">projects/funbot/manual</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=people%2Ffr33domlover&amp;do=goto"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">10:15:37 PM 08/16/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=revert&amp;rev=f7b4fd5b731cb17a6489352f10a735368f34d46d"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +funbot: update docs<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/funbot/tickets/15 on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_599eada420921192ceae6cb687f8a9950022044f/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-599eada420921192ceae6cb687f8a9950022044f
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-08-16T18:43:49Z</updated>
> +       <published>2015-08-16T18:43:49Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-599eada420921192ceae6cb687f8a9950022044f"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/funbot/tickets/15.mdwn;h=a466fadce2c88cde0347c164e7a49c97e32e1b13;hp=9fde6e22407a2eff47b1a666b3d3c274e5e19859;hb=599eada420921192ceae6cb687f8a9950022044f;hpb=2bf9de01bb378e4c9ed11cb7799ee03f12aed21b"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Ffunbot%2Ftickets%2F15&amp;do=goto"
> rel="nofollow">projects/funbot/tickets/15</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=people%2Ffr33domlover&amp;do=goto"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">06:43:49 PM 08/16/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?rev=599eada420921192ceae6cb687f8a9950022044f&amp;do=revert"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +funbot: the settings system needs callbacks<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/funbot/tickets/17 on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_2bf9de01bb378e4c9ed11cb7799ee03f12aed21b/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-2bf9de01bb378e4c9ed11cb7799ee03f12aed21b
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-08-15T10:34:40Z</updated>
> +       <published>2015-08-15T10:34:40Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-2bf9de01bb378e4c9ed11cb7799ee03f12aed21b"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/funbot/tickets/17.mdwn;h=70f51944ac387924b6f8bf7433631a3baeb038a4;hp=0000000000000000000000000000000000000000;hb=2bf9de01bb378e4c9ed11cb7799ee03f12aed21b;hpb=0e840edc3dd9ec79ee219ba94cd63866eed668ea"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Ffunbot%2Ftickets%2F17"
> rel="nofollow">projects/funbot/tickets/17</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=people%2Ffr33domlover&amp;do=goto"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">10:34:40 AM 08/15/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=revert&amp;rev=2bf9de01bb378e4c9ed11cb7799ee03f12aed21b"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +funbot: new ticket: avoid spamming with multi-commit pushes<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/funbot/tickets/16 on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_0e840edc3dd9ec79ee219ba94cd63866eed668ea/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-0e840edc3dd9ec79ee219ba94cd63866eed668ea
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-08-13T16:57:09Z</updated>
> +       <published>2015-08-13T16:57:09Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-0e840edc3dd9ec79ee219ba94cd63866eed668ea"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/funbot/tickets/16.mdwn;h=15bbe0cb556feb7ed9000c36bb42a8396fb12921;hp=e62242d40f027b0491185be804ed929dc5a4ac7f;hb=0e840edc3dd9ec79ee219ba94cd63866eed668ea;hpb=f8d63be6c0d9119296673fb426e4a67f514397e0"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Ffunbot%2Ftickets%2F16"
> rel="nofollow">projects/funbot/tickets/16</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=people%2Ffr33domlover&amp;do=goto"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">04:57:09 PM 08/13/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?rev=0e840edc3dd9ec79ee219ba94cd63866eed668ea&amp;do=revert"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +funbot: list existing feed related packages to review<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/funbot/tickets/16 on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_f8d63be6c0d9119296673fb426e4a67f514397e0/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-f8d63be6c0d9119296673fb426e4a67f514397e0
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-08-13T07:23:09Z</updated>
> +       <published>2015-08-13T07:23:09Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-f8d63be6c0d9119296673fb426e4a67f514397e0"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/funbot/tickets/16.mdwn;h=e62242d40f027b0491185be804ed929dc5a4ac7f;hp=0000000000000000000000000000000000000000;hb=f8d63be6c0d9119296673fb426e4a67f514397e0;hpb=5b11daceee3ab50b30197cfa2ab5385b24a8dc73"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Ffunbot%2Ftickets%2F16&amp;do=goto"
> rel="nofollow">projects/funbot/tickets/16</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Ffr33domlover"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">07:23:09 AM 08/13/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=revert&amp;rev=f8d63be6c0d9119296673fb426e4a67f514397e0"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +funbot: new ticket: announce RSS feeds<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to people/fr33domlover/veganism on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_5b11daceee3ab50b30197cfa2ab5385b24a8dc73/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-5b11daceee3ab50b30197cfa2ab5385b24a8dc73
> "/>
> +
> +       <author><name>mm</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-08-13T03:23:02Z</updated>
> +       <published>2015-08-13T03:23:02Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-5b11daceee3ab50b30197cfa2ab5385b24a8dc73"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=people/fr33domlover/veganism.mdwn;h=b129c47a62a42f0e7094ea66ab4120c70bbf2956;hp=531aa72c9aa9be7cec113b57f7cd0792bd873cc4;hb=5b11daceee3ab50b30197cfa2ab5385b24a8dc73;hpb=bb1d1469396d107bdbbe314e87d3666cf530d297"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=people%2Ffr33domlover%2Fveganism&amp;do=goto"
> rel="nofollow">people/fr33domlover/veganism</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Fmm"
> rel="nofollow">mm</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">web</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">03:23:02 AM 08/13/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?rev=5b11daceee3ab50b30197cfa2ab5385b24a8dc73&amp;do=revert"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects projects/vcs-web-hook-parse
> projects/vcs-web-hook-parse/tickets on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_bb1d1469396d107bdbbe314e87d3666cf530d297/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-bb1d1469396d107bdbbe314e87d3666cf530d297
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-08-10T13:29:45Z</updated>
> +       <published>2015-08-10T13:29:45Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-bb1d1469396d107bdbbe314e87d3666cf530d297"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects.mdwn;h=898655fcc20c4302682ffe196aa54e3afeb59b36;hp=8dc1b5dc39e41e5367ca9ba74882e13effdd2e49;hb=bb1d1469396d107bdbbe314e87d3666cf530d297;hpb=a815429ee204e00c48a0d72cc17456246e6040de"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects"
> rel="nofollow">projects</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/vcs-web-hook-parse.mdwn;h=5128a0066c64cf95ed693d43e4b463adad27e2cb;hp=0000000000000000000000000000000000000000;hb=bb1d1469396d107bdbbe314e87d3666cf530d297;hpb=a815429ee204e00c48a0d72cc17456246e6040de"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Fvcs-web-hook-parse"
> rel="nofollow">projects/vcs-web-hook-parse</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/vcs-web-hook-parse/tickets.mdwn;h=5dea4f6f5c1bd6d7879c5773f8015c408511e55f;hp=0000000000000000000000000000000000000000;hb=bb1d1469396d107bdbbe314e87d3666cf530d297;hpb=a815429ee204e00c48a0d72cc17456246e6040de"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Fvcs-web-hook-parse%2Ftickets&amp;do=goto"
> rel="nofollow">projects/vcs-web-hook-parse/tickets</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Ffr33domlover"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">01:29:45 PM 08/10/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?rev=bb1d1469396d107bdbbe314e87d3666cf530d297&amp;do=revert"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +vcs-web-hook-parse: new project, added dummy pages<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/funbot/guide projects/irc-fun-bot
> projects/irc-fun-client projects/irc-fun-messages on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_a815429ee204e00c48a0d72cc17456246e6040de/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-a815429ee204e00c48a0d72cc17456246e6040de
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-08-09T14:20:44Z</updated>
> +       <published>2015-08-09T14:20:44Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-a815429ee204e00c48a0d72cc17456246e6040de"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/funbot/guide.mdwn;h=85e000a7ff584f162078086dd4c4a2a4fd960028;hp=fe77d4628d012fbba69fb4186054141ac9386e1e;hb=a815429ee204e00c48a0d72cc17456246e6040de;hpb=63c70b3be856df4c006fabdafb301f9f47fa0b42"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Ffunbot%2Fguide"
> rel="nofollow">projects/funbot/guide</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/irc-fun-bot.mdwn;h=d16135bd1e6a372261567b700c147259d4e0f6af;hp=bbd523480202c43f2ad9cb96773d69fa16a29819;hb=a815429ee204e00c48a0d72cc17456246e6040de;hpb=63c70b3be856df4c006fabdafb301f9f47fa0b42"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Firc-fun-bot"
> rel="nofollow">projects/irc-fun-bot</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/irc-fun-client.mdwn;h=cdac524a07d2eb092f858de8d4d8d8a0cfc0e8d7;hp=052a1471d2b01e04b9a250bd3ce5efda48e973e8;hb=a815429ee204e00c48a0d72cc17456246e6040de;hpb=63c70b3be856df4c006fabdafb301f9f47fa0b42"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Firc-fun-client&amp;do=goto"
> rel="nofollow">projects/irc-fun-client</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/irc-fun-messages.mdwn;h=b793f23214f70270ed7da5b3699ad9efdabb5e77;hp=8a037a6b3176f58e7585d9442b98292313fca511;hb=a815429ee204e00c48a0d72cc17456246e6040de;hpb=63c70b3be856df4c006fabdafb301f9f47fa0b42"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Firc-fun-messages&amp;do=goto"
> rel="nofollow">projects/irc-fun-messages</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=people%2Ffr33domlover&amp;do=goto"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">02:20:44 PM 08/09/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?rev=a815429ee204e00c48a0d72cc17456246e6040de&amp;do=revert"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +funbot: update repo links after move to dev.<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/rel4tion/roadmap/release-00 on
> Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_63c70b3be856df4c006fabdafb301f9f47fa0b42/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-63c70b3be856df4c006fabdafb301f9f47fa0b42
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-08-09T12:25:39Z</updated>
> +       <published>2015-08-09T12:25:39Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-63c70b3be856df4c006fabdafb301f9f47fa0b42"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/rel4tion/roadmap/release-00.mdwn;h=ce02ef19c8176eb80c1fd5ca77cacfd6ef42a296;hp=b0297d9c7d79acf1fb70bf3029570491f97470c0;hb=63c70b3be856df4c006fabdafb301f9f47fa0b42;hpb=4114d7f291fe124c5169e1588bf3ba8828ea1955"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Frel4tion%2Froadmap%2Frelease-00&amp;do=goto"
> rel="nofollow">projects/rel4tion/roadmap/release-00</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Ffr33domlover"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">12:25:39 PM 08/09/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?rev=63c70b3be856df4c006fabdafb301f9f47fa0b42&amp;do=revert"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +rel4tion: update roadmap with recent work<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to templates/rmtask on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_4114d7f291fe124c5169e1588bf3ba8828ea1955/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-4114d7f291fe124c5169e1588bf3ba8828ea1955
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-08-09T11:34:25Z</updated>
> +       <published>2015-08-09T11:34:25Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-4114d7f291fe124c5169e1588bf3ba8828ea1955"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=templates/rmtask.mdwn;h=e8a5548bd50de46c670e181aa5ab4af0b53336a5;hp=8081803ab94e9f415a0b16ddd06345163bda3541;hb=4114d7f291fe124c5169e1588bf3ba8828ea1955;hpb=a388b2d06814991f93f52276b8dfe18cd1627ef1"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=templates%2Frmtask"
> rel="nofollow">templates/rmtask</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=people%2Ffr33domlover&amp;do=goto"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">11:34:25 AM 08/09/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?rev=4114d7f291fe124c5169e1588bf3ba8828ea1955&amp;do=revert"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +templates: tweak rmtask colors<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/funbot/guide projects/funbot/manual
> projects/funbot/tickets/7 projects/irc-fun-bot/tickets/3 on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_a388b2d06814991f93f52276b8dfe18cd1627ef1/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-a388b2d06814991f93f52276b8dfe18cd1627ef1
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-08-08T22:47:46Z</updated>
> +       <published>2015-08-08T22:47:46Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-a388b2d06814991f93f52276b8dfe18cd1627ef1"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/funbot/guide.mdwn;h=fe77d4628d012fbba69fb4186054141ac9386e1e;hp=6234c5babf562a6e0554c81171beb169c721b6de;hb=a388b2d06814991f93f52276b8dfe18cd1627ef1;hpb=5f028255a061f5e1405aae1f4bcf911086ddc4d9"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Ffunbot%2Fguide&amp;do=goto"
> rel="nofollow">projects/funbot/guide</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/funbot/manual.mdwn;h=b67467c06eb95e96e22c9645100359f147b32ad1;hp=4fb784a3bbd9efa372438f998917e996c95946d6;hb=a388b2d06814991f93f52276b8dfe18cd1627ef1;hpb=5f028255a061f5e1405aae1f4bcf911086ddc4d9"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Ffunbot%2Fmanual&amp;do=goto"
> rel="nofollow">projects/funbot/manual</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/funbot/tickets/7.mdwn;h=24801b7b18518348ed77f49239ab071f106fe4ab;hp=edc5905349f54c32ce471d98c1434723aca026d5;hb=a388b2d06814991f93f52276b8dfe18cd1627ef1;hpb=5f028255a061f5e1405aae1f4bcf911086ddc4d9"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Ffunbot%2Ftickets%2F7"
> rel="nofollow">projects/funbot/tickets/7</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/irc-fun-bot/tickets/3.mdwn;h=cf324dd4a0534fb640a72e516a58205b01917e28;hp=7ad03fd86056bf4892a412a1fc7c85838a36d170;hb=a388b2d06814991f93f52276b8dfe18cd1627ef1;hpb=5f028255a061f5e1405aae1f4bcf911086ddc4d9"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Firc-fun-bot%2Ftickets%2F3"
> rel="nofollow">projects/irc-fun-bot/tickets/3</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=people%2Ffr33domlover&amp;do=goto"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">10:47:46 PM 08/08/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?rev=a388b2d06814991f93f52276b8dfe18cd1627ef1&amp;do=revert"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +funbot: ticket and doc updates<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/funbot/tickets/2
> projects/http-listen/tickets/2 projects/irc-fun-bot/tickets/3 on
> Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_5f028255a061f5e1405aae1f4bcf911086ddc4d9/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-5f028255a061f5e1405aae1f4bcf911086ddc4d9
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-08-06T13:37:56Z</updated>
> +       <published>2015-08-06T13:37:56Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-5f028255a061f5e1405aae1f4bcf911086ddc4d9"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/funbot/tickets/2.mdwn;h=2cc56bb7968465ca690ebcbed6ed5a5213fb8a0c;hp=2db571641ae6d30d6d74d401e2e96015b833b811;hb=5f028255a061f5e1405aae1f4bcf911086ddc4d9;hpb=c5b0bd2d44344346599c272f5f9f089cff3cd0cf"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Ffunbot%2Ftickets%2F2"
> rel="nofollow">projects/funbot/tickets/2</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/http-listen/tickets/2.mdwn;h=083e030badb159f80bb13af5c2ec169c24e4874e;hp=0000000000000000000000000000000000000000;hb=5f028255a061f5e1405aae1f4bcf911086ddc4d9;hpb=c5b0bd2d44344346599c272f5f9f089cff3cd0cf"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Fhttp-listen%2Ftickets%2F2"
> rel="nofollow">projects/http-listen/tickets/2</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/irc-fun-bot/tickets/3.mdwn;h=7ad03fd86056bf4892a412a1fc7c85838a36d170;hp=9a3b0698a4094f4fdc31af182d9233e45bdd5928;hb=5f028255a061f5e1405aae1f4bcf911086ddc4d9;hpb=c5b0bd2d44344346599c272f5f9f089cff3cd0cf"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Firc-fun-bot%2Ftickets%2F3&amp;do=goto"
> rel="nofollow">projects/irc-fun-bot/tickets/3</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Ffr33domlover"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">01:37:56 PM 08/06/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=revert&amp;rev=5f028255a061f5e1405aae1f4bcf911086ddc4d9"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +some ticket updates<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/http-listen/tickets/1 on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_c5b0bd2d44344346599c272f5f9f089cff3cd0cf/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-c5b0bd2d44344346599c272f5f9f089cff3cd0cf
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-08-05T09:52:09Z</updated>
> +       <published>2015-08-05T09:52:09Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-c5b0bd2d44344346599c272f5f9f089cff3cd0cf"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/http-listen/tickets/1.mdwn;h=0798820f782a817d904c7c077c4a2395ec33c171;hp=0000000000000000000000000000000000000000;hb=c5b0bd2d44344346599c272f5f9f089cff3cd0cf;hpb=abccb345fea04b01b45eed2a0f56c3c88988ebf0"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Fhttp-listen%2Ftickets%2F1&amp;do=goto"
> rel="nofollow">projects/http-listen/tickets/1</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Ffr33domlover"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">09:52:09 AM 08/05/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?rev=c5b0bd2d44344346599c272f5f9f089cff3cd0cf&amp;do=revert"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +http-listen: ope ticket about timeouts<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects projects/http-listen
> projects/http-listen/decisions projects/http-listen/forum
> projects/http-listen/news projects/http-listen/releases
> projects/http-listen/tickets shortcuts on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_abccb345fea04b01b45eed2a0f56c3c88988ebf0/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-abccb345fea04b01b45eed2a0f56c3c88988ebf0
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-08-05T09:23:20Z</updated>
> +       <published>2015-08-05T09:23:20Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-abccb345fea04b01b45eed2a0f56c3c88988ebf0"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects.mdwn;h=8dc1b5dc39e41e5367ca9ba74882e13effdd2e49;hp=8a382bc0b1a8668b14aad89aa4bc16711a1ed84a;hb=abccb345fea04b01b45eed2a0f56c3c88988ebf0;hpb=3807c6e1a57de56dd0e0502a1fe7020d089048c5"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects"
> rel="nofollow">projects</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/http-listen.mdwn;h=7034ea4798f3d24ebcebd4c02cdd3865c245924d;hp=0000000000000000000000000000000000000000;hb=abccb345fea04b01b45eed2a0f56c3c88988ebf0;hpb=3807c6e1a57de56dd0e0502a1fe7020d089048c5"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Fhttp-listen&amp;do=goto"
> rel="nofollow">projects/http-listen</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/http-listen/decisions.mdwn;h=1a96e79ec55bb6bb817136a2ee3c333e4bbf4c36;hp=0000000000000000000000000000000000000000;hb=abccb345fea04b01b45eed2a0f56c3c88988ebf0;hpb=3807c6e1a57de56dd0e0502a1fe7020d089048c5"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Fhttp-listen%2Fdecisions"
> rel="nofollow">projects/http-listen/decisions</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/http-listen/forum.mdwn;h=b4032d88892110263de936a7f9ef6c7f8f7d755b;hp=0000000000000000000000000000000000000000;hb=abccb345fea04b01b45eed2a0f56c3c88988ebf0;hpb=3807c6e1a57de56dd0e0502a1fe7020d089048c5"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Fhttp-listen%2Fforum&amp;do=goto"
> rel="nofollow">projects/http-listen/forum</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/http-listen/news.mdwn;h=a52d3fd6fc03f44418a4db0ccd745b3f53d6d81d;hp=0000000000000000000000000000000000000000;hb=abccb345fea04b01b45eed2a0f56c3c88988ebf0;hpb=3807c6e1a57de56dd0e0502a1fe7020d089048c5"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Fhttp-listen%2Fnews"
> rel="nofollow">projects/http-listen/news</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/http-listen/releases.mdwn;h=36687b2803485acb11d99138e4b5d9b1d40a177a;hp=0000000000000000000000000000000000000000;hb=abccb345fea04b01b45eed2a0f56c3c88988ebf0;hpb=3807c6e1a57de56dd0e0502a1fe7020d089048c5"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Fhttp-listen%2Freleases&amp;do=goto"
> rel="nofollow">projects/http-listen/releases</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/http-listen/tickets.mdwn;h=36e5aefaceccf9996d9dcf98239267d20c895455;hp=0000000000000000000000000000000000000000;hb=abccb345fea04b01b45eed2a0f56c3c88988ebf0;hpb=3807c6e1a57de56dd0e0502a1fe7020d089048c5"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Fhttp-listen%2Ftickets&amp;do=goto"
> rel="nofollow">projects/http-listen/tickets</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=shortcuts.mdwn;h=848c9edfe10d412737a37883ff955dbee20089cb;hp=955fe6213cd0b74a022cb19d9a82986422a5ac7c;hb=abccb345fea04b01b45eed2a0f56c3c88988ebf0;hpb=3807c6e1a57de56dd0e0502a1fe7020d089048c5"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=shortcuts&amp;do=goto"
> rel="nofollow">shortcuts</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Ffr33domlover"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">09:23:20 AM 08/05/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=revert&amp;rev=abccb345fea04b01b45eed2a0f56c3c88988ebf0"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +http-listen: new project<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/kiwi/data/idan-files/todo.idan on
> Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_3807c6e1a57de56dd0e0502a1fe7020d089048c5/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-3807c6e1a57de56dd0e0502a1fe7020d089048c5
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-08-01T21:21:43Z</updated>
> +       <published>2015-08-01T21:21:43Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-3807c6e1a57de56dd0e0502a1fe7020d089048c5"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/kiwi/data/idan-files/todo.idan;h=ccb6b70db2f4b5da7fa5d3a70c1ddc8cd9f1a33e;hp=eace9d20f6dd5d83087bc751aead7446aca7e575;hb=3807c6e1a57de56dd0e0502a1fe7020d089048c5;hpb=dd747340fffdb41ba4ff5066356b22dbffd73c98"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Fkiwi%2Fdata%2Fidan-files%2Ftodo.idan&amp;do=goto"
> rel="nofollow">projects/kiwi/data/idan-files/todo.idan</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=people%2Ffr33domlover&amp;do=goto"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">09:21:43 PM 08/01/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?rev=3807c6e1a57de56dd0e0502a1fe7020d089048c5&amp;do=revert"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +kiwi: tasks-tui requires new entities<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to news/darcs-hub-new on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_dd747340fffdb41ba4ff5066356b22dbffd73c98/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-dd747340fffdb41ba4ff5066356b22dbffd73c98
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-08-01T11:35:10Z</updated>
> +       <published>2015-08-01T11:35:10Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-dd747340fffdb41ba4ff5066356b22dbffd73c98"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=news/darcs-hub-new.mdwn;h=d1cbc5d5d35452c5272006db744779409c9b8505;hp=0000000000000000000000000000000000000000;hb=dd747340fffdb41ba4ff5066356b22dbffd73c98;hpb=65c40fbb77b5f797a67493716418ed0115a160cf"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=news%2Fdarcs-hub-new"
> rel="nofollow">news/darcs-hub-new</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=people%2Ffr33domlover&amp;do=goto"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">11:35:10 AM 08/01/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=revert&amp;rev=dd747340fffdb41ba4ff5066356b22dbffd73c98"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +news: new darcs hub<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/vocabularies-hs on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_65c40fbb77b5f797a67493716418ed0115a160cf/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-65c40fbb77b5f797a67493716418ed0115a160cf
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-07-31T08:44:15Z</updated>
> +       <published>2015-07-31T08:44:15Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-65c40fbb77b5f797a67493716418ed0115a160cf"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/vocabularies-hs.mdwn;h=a21d0e3f8540fe73f4e9591a313c911aed6e6252;hp=c56d2d47ee0fe9de02ef44b045edc516cfe756e6;hb=65c40fbb77b5f797a67493716418ed0115a160cf;hpb=f0986cdfd3174159052ac1d3da6e1180dfb9a644"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Fvocabularies-hs&amp;do=goto"
> rel="nofollow">projects/vocabularies-hs</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Ffr33domlover"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">08:44:15 AM 07/31/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=revert&amp;rev=65c40fbb77b5f797a67493716418ed0115a160cf"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +vocabularies-hs: list the new vocabulary-todo<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/kiwi/data/idan-files/todo.idan on
> Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_f0986cdfd3174159052ac1d3da6e1180dfb9a644/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-f0986cdfd3174159052ac1d3da6e1180dfb9a644
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-07-29T23:28:20Z</updated>
> +       <published>2015-07-29T23:28:20Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-f0986cdfd3174159052ac1d3da6e1180dfb9a644"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/kiwi/data/idan-files/todo.idan;h=eace9d20f6dd5d83087bc751aead7446aca7e575;hp=9dd53e5a54d1add44987b39afc376c6d16a2e467;hb=f0986cdfd3174159052ac1d3da6e1180dfb9a644;hpb=c2ec1d098f1cc5a41435ed5c28bf87fe8f6057da"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Fkiwi%2Fdata%2Fidan-files%2Ftodo.idan"
> rel="nofollow">projects/kiwi/data/idan-files/todo.idan</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=people%2Ffr33domlover&amp;do=goto"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">11:28:20 PM 07/29/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?rev=f0986cdfd3174159052ac1d3da6e1180dfb9a644&amp;do=revert"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +kiwi: manually add uids needed for coding<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/task-management on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_c2ec1d098f1cc5a41435ed5c28bf87fe8f6057da/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-c2ec1d098f1cc5a41435ed5c28bf87fe8f6057da
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-07-29T21:09:24Z</updated>
> +       <published>2015-07-29T21:09:24Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-c2ec1d098f1cc5a41435ed5c28bf87fe8f6057da"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/task-management.mdwn;h=852b193c67147e825e7426c09906641acf1dc5fa;hp=1f188daada9a5897e3bd452afbf20e11b08a9c01;hb=c2ec1d098f1cc5a41435ed5c28bf87fe8f6057da;hpb=696ceb85012bff250079824aa5ccf4b526031427"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Ftask-management"
> rel="nofollow">projects/task-management</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Ffr33domlover"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">09:09:24 PM 07/29/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=revert&amp;rev=c2ec1d098f1cc5a41435ed5c28bf87fe8f6057da"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +task-management: update project status<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/task-management/tickets/1
> projects/task-management/tickets/1/operations
> projects/task-management/tickets/1/possible-features
> projects/task-management/tickets/1/ui
> projects/task-management/tickets/1/views projects/tui on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_696ceb85012bff250079824aa5ccf4b526031427/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-696ceb85012bff250079824aa5ccf4b526031427
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-07-29T06:51:46Z</updated>
> +       <published>2015-07-29T06:51:46Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-696ceb85012bff250079824aa5ccf4b526031427"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/task-management/tickets/1.mdwn;h=e1a899675f53d52ee329abd44daf3a99c7f10cad;hp=1e660face13843a722026d94ec4c2f51b2160069;hb=696ceb85012bff250079824aa5ccf4b526031427;hpb=acf45a5f2a24ba04a35e9f0d8d590bf0a41c0f3e"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Ftask-management%2Ftickets%2F1&amp;do=goto"
> rel="nofollow">projects/task-management/tickets/1</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/task-management/tickets/1/operations.mdwn;h=6aa5582ae854c858059089ce638194a861d92b72;hp=0000000000000000000000000000000000000000;hb=696ceb85012bff250079824aa5ccf4b526031427;hpb=acf45a5f2a24ba04a35e9f0d8d590bf0a41c0f3e"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Ftask-management%2Ftickets%2F1%2Foperations&amp;do=goto"
> rel="nofollow">projects/task-management/tickets/1/operations</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/task-management/tickets/1/possible-features.mdwn;h=78a47438fe2c9d00a0ab47f99c0b64c7a801eb0f;hp=0000000000000000000000000000000000000000;hb=696ceb85012bff250079824aa5ccf4b526031427;hpb=acf45a5f2a24ba04a35e9f0d8d590bf0a41c0f3e"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Ftask-management%2Ftickets%2F1%2Fpossible-features"
> rel="nofollow">projects/task-management/tickets/1/possible-features</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/task-management/tickets/1/ui.mdwn;h=debe4c625183ab3fce85cb2aa7b371e08fb2d29e;hp=0000000000000000000000000000000000000000;hb=696ceb85012bff250079824aa5ccf4b526031427;hpb=acf45a5f2a24ba04a35e9f0d8d590bf0a41c0f3e"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Ftask-management%2Ftickets%2F1%2Fui&amp;do=goto"
> rel="nofollow">projects/task-management/tickets/1/ui</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/task-management/tickets/1/views.mdwn;h=4c3f149808ad74fba579947f393b4f6a21e62bab;hp=0000000000000000000000000000000000000000;hb=696ceb85012bff250079824aa5ccf4b526031427;hpb=acf45a5f2a24ba04a35e9f0d8d590bf0a41c0f3e"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Ftask-management%2Ftickets%2F1%2Fviews"
> rel="nofollow">projects/task-management/tickets/1/views</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/tui.mdwn;h=707ea3237ed79a556340a96e60094beb969f0403;hp=ed4986fab9a9c1d0a320e0aebbd548e2046f94a8;hb=696ceb85012bff250079824aa5ccf4b526031427;hpb=acf45a5f2a24ba04a35e9f0d8d590bf0a41c0f3e"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Ftui"
> rel="nofollow">projects/tui</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=people%2Ffr33domlover&amp;do=goto"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">06:51:46 AM 07/29/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?rev=696ceb85012bff250079824aa5ccf4b526031427&amp;do=revert"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +task-management: more plans<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/task-management/tickets/1 on
> Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_acf45a5f2a24ba04a35e9f0d8d590bf0a41c0f3e/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-acf45a5f2a24ba04a35e9f0d8d590bf0a41c0f3e
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-07-28T12:58:05Z</updated>
> +       <published>2015-07-28T12:58:05Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-acf45a5f2a24ba04a35e9f0d8d590bf0a41c0f3e"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/task-management/tickets/1.mdwn;h=1e660face13843a722026d94ec4c2f51b2160069;hp=30461446304a9c48ebbcdf9004b5e046abf60f39;hb=acf45a5f2a24ba04a35e9f0d8d590bf0a41c0f3e;hpb=16c22f6a025e24ca916e8312b3b5fe9146858523"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Ftask-management%2Ftickets%2F1"
> rel="nofollow">projects/task-management/tickets/1</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Ffr33domlover"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">12:58:05 PM 07/28/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=revert&amp;rev=acf45a5f2a24ba04a35e9f0d8d590bf0a41c0f3e"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +minor edit<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects projects/tui on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_16c22f6a025e24ca916e8312b3b5fe9146858523/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-16c22f6a025e24ca916e8312b3b5fe9146858523
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-07-28T12:56:11Z</updated>
> +       <published>2015-07-28T12:56:11Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-16c22f6a025e24ca916e8312b3b5fe9146858523"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects.mdwn;h=8a382bc0b1a8668b14aad89aa4bc16711a1ed84a;hp=ec5984beb457557cddbd8d1ea7df80db9d42a705;hb=16c22f6a025e24ca916e8312b3b5fe9146858523;hpb=c8f6c3fca3796e7b4ee0148cab287d6ba5866f6c"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects&amp;do=goto"
> rel="nofollow">projects</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/tui.mdwn;h=ed4986fab9a9c1d0a320e0aebbd548e2046f94a8;hp=0000000000000000000000000000000000000000;hb=16c22f6a025e24ca916e8312b3b5fe9146858523;hpb=c8f6c3fca3796e7b4ee0148cab287d6ba5866f6c"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Ftui"
> rel="nofollow">projects/tui</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Ffr33domlover"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">12:56:11 PM 07/28/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=revert&amp;rev=16c22f6a025e24ca916e8312b3b5fe9146858523"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +tui: research project<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/funbot/tickets/10 on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_c8f6c3fca3796e7b4ee0148cab287d6ba5866f6c/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-c8f6c3fca3796e7b4ee0148cab287d6ba5866f6c
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-07-27T22:30:00Z</updated>
> +       <published>2015-07-27T22:30:00Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-c8f6c3fca3796e7b4ee0148cab287d6ba5866f6c"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/funbot/tickets/10.mdwn;h=2dfa6c5aa076d72de618c647a17774e23cacf78f;hp=7db97bbee99f558e4dc6164e60ef81504d4afe24;hb=c8f6c3fca3796e7b4ee0148cab287d6ba5866f6c;hpb=3d15ff1b8068e97901410a3d210227036bf528c5"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Ffunbot%2Ftickets%2F10&amp;do=goto"
> rel="nofollow">projects/funbot/tickets/10</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Ffr33domlover"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">10:30:00 PM 07/27/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?rev=c8f6c3fca3796e7b4ee0148cab287d6ba5866f6c&amp;do=revert"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +funbot: update status of hello replies<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/funbot/tickets/15 on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_3d15ff1b8068e97901410a3d210227036bf528c5/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-3d15ff1b8068e97901410a3d210227036bf528c5
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-07-27T21:43:34Z</updated>
> +       <published>2015-07-27T21:43:34Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-3d15ff1b8068e97901410a3d210227036bf528c5"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/funbot/tickets/15.mdwn;h=9fde6e22407a2eff47b1a666b3d3c274e5e19859;hp=8409ef6dc3f7697857b7aacdfc1d0d03ebd8e97b;hb=3d15ff1b8068e97901410a3d210227036bf528c5;hpb=2af6df1680072d6e73f4bdb07fae2c88a59c76aa"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Ffunbot%2Ftickets%2F15&amp;do=goto"
> rel="nofollow">projects/funbot/tickets/15</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Ffr33domlover"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">09:43:34 PM 07/27/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?rev=3d15ff1b8068e97901410a3d210227036bf528c5&amp;do=revert"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +funbot: update status of settings system<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/funbot/guide projects/funbot/manual on
> Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_2af6df1680072d6e73f4bdb07fae2c88a59c76aa/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-2af6df1680072d6e73f4bdb07fae2c88a59c76aa
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-07-27T21:33:18Z</updated>
> +       <published>2015-07-27T21:33:18Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-2af6df1680072d6e73f4bdb07fae2c88a59c76aa"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/funbot/guide.mdwn;h=6234c5babf562a6e0554c81171beb169c721b6de;hp=9d46ed7be13811c424111b5f29dc6ef641e5754a;hb=2af6df1680072d6e73f4bdb07fae2c88a59c76aa;hpb=617249a360c6973ce7f42ad010f1276c552fbaf1"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Ffunbot%2Fguide"
> rel="nofollow">projects/funbot/guide</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/funbot/manual.mdwn;h=4fb784a3bbd9efa372438f998917e996c95946d6;hp=f179ef3cc7731f76ad0bae8b31a4e64a3f8d6871;hb=2af6df1680072d6e73f4bdb07fae2c88a59c76aa;hpb=617249a360c6973ce7f42ad010f1276c552fbaf1"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Ffunbot%2Fmanual&amp;do=goto"
> rel="nofollow">projects/funbot/manual</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Ffr33domlover"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">09:33:18 PM 07/27/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=revert&amp;rev=2af6df1680072d6e73f4bdb07fae2c88a59c76aa"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +funbot: update docs to match the newly added settings system<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects projects/funbot/tickets/15
> projects/settings projects/settings/decisions projects/settings/forum
> projects/settings/news projects/settings/releases projects/settings/tickets
> on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_617249a360c6973ce7f42ad010f1276c552fbaf1/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-617249a360c6973ce7f42ad010f1276c552fbaf1
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-07-22T09:46:41Z</updated>
> +       <published>2015-07-22T09:46:41Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-617249a360c6973ce7f42ad010f1276c552fbaf1"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects.mdwn;h=ec5984beb457557cddbd8d1ea7df80db9d42a705;hp=9d82d759e2e847c0b174cf1bbe7f57d75c14474f;hb=617249a360c6973ce7f42ad010f1276c552fbaf1;hpb=5f4444298ebe3f674b73a843dfc7bbef7a1703e7"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects"
> rel="nofollow">projects</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/funbot/tickets/15.mdwn;h=8409ef6dc3f7697857b7aacdfc1d0d03ebd8e97b;hp=a19cd36f2568480158c63ddec2185754cab96f30;hb=617249a360c6973ce7f42ad010f1276c552fbaf1;hpb=5f4444298ebe3f674b73a843dfc7bbef7a1703e7"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Ffunbot%2Ftickets%2F15"
> rel="nofollow">projects/funbot/tickets/15</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/settings.mdwn;h=b7f5ffc7ee35f85a7a7d5094fdc02c578122825e;hp=0000000000000000000000000000000000000000;hb=617249a360c6973ce7f42ad010f1276c552fbaf1;hpb=5f4444298ebe3f674b73a843dfc7bbef7a1703e7"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Fsettings"
> rel="nofollow">projects/settings</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/settings/decisions.mdwn;h=7fa56d100854163543f12f83cc1408ae417f9f7e;hp=0000000000000000000000000000000000000000;hb=617249a360c6973ce7f42ad010f1276c552fbaf1;hpb=5f4444298ebe3f674b73a843dfc7bbef7a1703e7"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Fsettings%2Fdecisions&amp;do=goto"
> rel="nofollow">projects/settings/decisions</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/settings/forum.mdwn;h=c3b79bd4409643fdbc11a700b29898f904b315b7;hp=0000000000000000000000000000000000000000;hb=617249a360c6973ce7f42ad010f1276c552fbaf1;hpb=5f4444298ebe3f674b73a843dfc7bbef7a1703e7"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Fsettings%2Fforum"
> rel="nofollow">projects/settings/forum</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/settings/news.mdwn;h=837c8697a653db420eada75ea57630492eb8338e;hp=0000000000000000000000000000000000000000;hb=617249a360c6973ce7f42ad010f1276c552fbaf1;hpb=5f4444298ebe3f674b73a843dfc7bbef7a1703e7"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Fsettings%2Fnews&amp;do=goto"
> rel="nofollow">projects/settings/news</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/settings/releases.mdwn;h=e4efd9b315242da6e04f9e94546ed3522bdaac68;hp=0000000000000000000000000000000000000000;hb=617249a360c6973ce7f42ad010f1276c552fbaf1;hpb=5f4444298ebe3f674b73a843dfc7bbef7a1703e7"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Fsettings%2Freleases"
> rel="nofollow">projects/settings/releases</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/settings/tickets.mdwn;h=e9398e875cda45921bd91361adb0716986869a15;hp=0000000000000000000000000000000000000000;hb=617249a360c6973ce7f42ad010f1276c552fbaf1;hpb=5f4444298ebe3f674b73a843dfc7bbef7a1703e7"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Fsettings%2Ftickets&amp;do=goto"
> rel="nofollow">projects/settings/tickets</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Ffr33domlover"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">09:46:41 AM 07/22/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=revert&amp;rev=617249a360c6973ce7f42ad010f1276c552fbaf1"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +settings: *another* new project...<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/funbot/tickets/15 on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_5f4444298ebe3f674b73a843dfc7bbef7a1703e7/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-5f4444298ebe3f674b73a843dfc7bbef7a1703e7
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-07-21T10:47:23Z</updated>
> +       <published>2015-07-21T10:47:23Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-5f4444298ebe3f674b73a843dfc7bbef7a1703e7"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/funbot/tickets/15.mdwn;h=a19cd36f2568480158c63ddec2185754cab96f30;hp=038b445accf173eee423a1a03eab722fe86ef030;hb=5f4444298ebe3f674b73a843dfc7bbef7a1703e7;hpb=76a709cf4777cf20cf18b62c3e557f380b98a145"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Ffunbot%2Ftickets%2F15"
> rel="nofollow">projects/funbot/tickets/15</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Ffr33domlover"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">10:47:23 AM 07/21/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=revert&amp;rev=5f4444298ebe3f674b73a843dfc7bbef7a1703e7"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +funbot: notes about settings system<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/funbot/tickets/15
> projects/funbot/tickets/4 projects/irc-fun-client/tickets/2 on
> Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_76a709cf4777cf20cf18b62c3e557f380b98a145/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-76a709cf4777cf20cf18b62c3e557f380b98a145
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-07-20T12:22:27Z</updated>
> +       <published>2015-07-20T12:22:27Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-76a709cf4777cf20cf18b62c3e557f380b98a145"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/funbot/tickets/15.mdwn;h=038b445accf173eee423a1a03eab722fe86ef030;hp=0000000000000000000000000000000000000000;hb=76a709cf4777cf20cf18b62c3e557f380b98a145;hpb=f65b75264b89071970cf00ff16776aa9d5969437"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Ffunbot%2Ftickets%2F15&amp;do=goto"
> rel="nofollow">projects/funbot/tickets/15</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/funbot/tickets/4.mdwn;h=071cb7e64ae57c211834ee5cc7e80132209a6bc2;hp=7665ef7035b4387f9ceb84ca9cd79130b81d4d48;hb=76a709cf4777cf20cf18b62c3e557f380b98a145;hpb=f65b75264b89071970cf00ff16776aa9d5969437"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Ffunbot%2Ftickets%2F4"
> rel="nofollow">projects/funbot/tickets/4</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/irc-fun-client/tickets/2.mdwn;h=ae578674d3cceaaa6cbe726d632bc3c4e87bfd55;hp=0000000000000000000000000000000000000000;hb=76a709cf4777cf20cf18b62c3e557f380b98a145;hpb=f65b75264b89071970cf00ff16776aa9d5969437"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Firc-fun-client%2Ftickets%2F2&amp;do=goto"
> rel="nofollow">projects/irc-fun-client/tickets/2</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=people%2Ffr33domlover&amp;do=goto"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">12:22:27 PM 07/20/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=revert&amp;rev=76a709cf4777cf20cf18b62c3e557f380b98a145"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +funbot: more tickets...<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/irc-fun-messages/tickets/2 on
> Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_f65b75264b89071970cf00ff16776aa9d5969437/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-f65b75264b89071970cf00ff16776aa9d5969437
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-07-20T09:12:23Z</updated>
> +       <published>2015-07-20T09:12:23Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-f65b75264b89071970cf00ff16776aa9d5969437"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/irc-fun-messages/tickets/2.mdwn;h=e4e35c75ededb220d4ee788abd52f17ab0510352;hp=b97c3b915afa5aee1527549c97939c20979e11ba;hb=f65b75264b89071970cf00ff16776aa9d5969437;hpb=b0d2b4a707f9b0bbe5373a5ad960487b66142b41"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Firc-fun-messages%2Ftickets%2F2"
> rel="nofollow">projects/irc-fun-messages/tickets/2</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Ffr33domlover"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">09:12:23 AM 07/20/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=revert&amp;rev=f65b75264b89071970cf00ff16776aa9d5969437"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +irc-fun-messages: rearrangemet done<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to templates/my-open-tickets on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_b0d2b4a707f9b0bbe5373a5ad960487b66142b41/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-b0d2b4a707f9b0bbe5373a5ad960487b66142b41
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-07-20T09:09:43Z</updated>
> +       <published>2015-07-20T09:09:43Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-b0d2b4a707f9b0bbe5373a5ad960487b66142b41"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=templates/my-open-tickets.mdwn;h=d5fc4b5cd9696f21ab75842518f2b7a4f5fd2ebc;hp=6508a11cf60dd90ba71b998848e829d385c495d2;hb=b0d2b4a707f9b0bbe5373a5ad960487b66142b41;hpb=7bc4f88b58f7f0deadb8a79a9823a564cf399b03"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=templates%2Fmy-open-tickets&amp;do=goto"
> rel="nofollow">templates/my-open-tickets</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Ffr33domlover"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">09:09:43 AM 07/20/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=revert&amp;rev=b0d2b4a707f9b0bbe5373a5ad960487b66142b41"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +fix template typo<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to people/fr33domlover on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_7bc4f88b58f7f0deadb8a79a9823a564cf399b03/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-7bc4f88b58f7f0deadb8a79a9823a564cf399b03
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-07-20T09:06:01Z</updated>
> +       <published>2015-07-20T09:06:01Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-7bc4f88b58f7f0deadb8a79a9823a564cf399b03"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=people/fr33domlover.mdwn;h=2230d818ac803844191d7842bcb24fa4d5e45e14;hp=f28b90121dbd2ea1427b476ec65ac299d5a362a7;hb=7bc4f88b58f7f0deadb8a79a9823a564cf399b03;hpb=e970fbaa161547af8a7b378220a602c00c128b20"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Ffr33domlover"
> rel="nofollow">people/fr33domlover</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=people%2Ffr33domlover&amp;do=goto"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">09:06:01 AM 07/20/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?rev=7bc4f88b58f7f0deadb8a79a9823a564cf399b03&amp;do=revert"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +me: use the new template for personal tickets<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to templates/my-open-tickets templates/ticket
> tickets on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_e970fbaa161547af8a7b378220a602c00c128b20/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-e970fbaa161547af8a7b378220a602c00c128b20
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-07-20T09:02:35Z</updated>
> +       <published>2015-07-20T09:02:35Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-e970fbaa161547af8a7b378220a602c00c128b20"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=templates/my-open-tickets.mdwn;h=6508a11cf60dd90ba71b998848e829d385c495d2;hp=0000000000000000000000000000000000000000;hb=e970fbaa161547af8a7b378220a602c00c128b20;hpb=f650bd6d11c9f12fa342e32a1112e0326f5983a0"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=templates%2Fmy-open-tickets&amp;do=goto"
> rel="nofollow">templates/my-open-tickets</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=templates/ticket.mdwn;h=69a8e86734dca4aec465f6d7fc4f7d6b958e9a51;hp=7adaf50d169a1a3e068b272427c5ccd010b304ea;hb=e970fbaa161547af8a7b378220a602c00c128b20;hpb=f650bd6d11c9f12fa342e32a1112e0326f5983a0"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=templates%2Fticket&amp;do=goto"
> rel="nofollow">templates/ticket</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=tickets.mdwn;h=3b3e0f3959d65e0100c507940f20921dbad4220a;hp=b28306347b2b49e222ec75f0610cfceff8ff7598;hb=e970fbaa161547af8a7b378220a602c00c128b20;hpb=f650bd6d11c9f12fa342e32a1112e0326f5983a0"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=tickets"
> rel="nofollow">tickets</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=people%2Ffr33domlover&amp;do=goto"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">09:02:35 AM 07/20/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?rev=e970fbaa161547af8a7b378220a602c00c128b20&amp;do=revert"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +new template my-open-tickets<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to tickets on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_f650bd6d11c9f12fa342e32a1112e0326f5983a0/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-f650bd6d11c9f12fa342e32a1112e0326f5983a0
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-07-20T07:58:09Z</updated>
> +       <published>2015-07-20T07:58:09Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-f650bd6d11c9f12fa342e32a1112e0326f5983a0"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=tickets.mdwn;h=b28306347b2b49e222ec75f0610cfceff8ff7598;hp=bfc33e243c877bdc29e26067fcccf60865b950f8;hb=f650bd6d11c9f12fa342e32a1112e0326f5983a0;hpb=62e6b115766812a8b7dc1661af21071b300ecf9d"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=tickets&amp;do=goto"
> rel="nofollow">tickets</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=people%2Ffr33domlover&amp;do=goto"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">07:58:09 AM 07/20/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?rev=f650bd6d11c9f12fa342e32a1112e0326f5983a0&amp;do=revert"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +tickets: add some notes and hints<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/funbot/tickets/2 on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_62e6b115766812a8b7dc1661af21071b300ecf9d/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-62e6b115766812a8b7dc1661af21071b300ecf9d
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-07-20T07:26:24Z</updated>
> +       <published>2015-07-20T07:26:24Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-62e6b115766812a8b7dc1661af21071b300ecf9d"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/funbot/tickets/2.mdwn;h=2db571641ae6d30d6d74d401e2e96015b833b811;hp=ddf42fa6367bcebe483831befd8a9739a418eb69;hb=62e6b115766812a8b7dc1661af21071b300ecf9d;hpb=d1a178ecde1695f74f21132068fa479443fd364f"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Ffunbot%2Ftickets%2F2&amp;do=goto"
> rel="nofollow">projects/funbot/tickets/2</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Ffr33domlover"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">07:26:24 AM 07/20/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=revert&amp;rev=62e6b115766812a8b7dc1661af21071b300ecf9d"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +funbot: list options for persistence<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/funbot/tickets/2 on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_d1a178ecde1695f74f21132068fa479443fd364f/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-d1a178ecde1695f74f21132068fa479443fd364f
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-07-19T21:12:25Z</updated>
> +       <published>2015-07-19T21:12:25Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-d1a178ecde1695f74f21132068fa479443fd364f"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/funbot/tickets/2.mdwn;h=ddf42fa6367bcebe483831befd8a9739a418eb69;hp=767aaad5c981d66c8cc3f76b8ffd0b8a172c5840;hb=d1a178ecde1695f74f21132068fa479443fd364f;hpb=9aacf3255d7b2d65ff1a4a3e564e0cc35df5864a"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Ffunbot%2Ftickets%2F2"
> rel="nofollow">projects/funbot/tickets/2</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Ffr33domlover"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">09:12:25 PM 07/19/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?rev=d1a178ecde1695f74f21132068fa479443fd364f&amp;do=revert"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +funbot: notes on persistent state<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to people/fr33domlover/blog/insanity on
> Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_9aacf3255d7b2d65ff1a4a3e564e0cc35df5864a/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-9aacf3255d7b2d65ff1a4a3e564e0cc35df5864a
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-07-19T20:28:42Z</updated>
> +       <published>2015-07-19T20:28:42Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-9aacf3255d7b2d65ff1a4a3e564e0cc35df5864a"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=people/fr33domlover/blog/insanity.mdwn;h=ebaa53ca277a0e595b242642aeed217a2d596b54;hp=0000000000000000000000000000000000000000;hb=9aacf3255d7b2d65ff1a4a3e564e0cc35df5864a;hpb=6f2e5495944f200e1e6dd231d85ecbdfbb1aa372"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=people%2Ffr33domlover%2Fblog%2Finsanity&amp;do=goto"
> rel="nofollow">people/fr33domlover/blog/insanity</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=people%2Ffr33domlover&amp;do=goto"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">08:28:42 PM 07/19/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=revert&amp;rev=9aacf3255d7b2d65ff1a4a3e564e0cc35df5864a"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +me: some blog post...<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to templates/ticket-depends-on on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_6f2e5495944f200e1e6dd231d85ecbdfbb1aa372/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-6f2e5495944f200e1e6dd231d85ecbdfbb1aa372
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-07-19T09:26:58Z</updated>
> +       <published>2015-07-19T09:26:58Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-6f2e5495944f200e1e6dd231d85ecbdfbb1aa372"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=templates/ticket-depends-on.mdwn;h=f83eb1c67a3ccac4e181ab4fba9a9dff0a6b6a80;hp=a7f05948f92be66460fa39f2d7ac61c863886994;hb=6f2e5495944f200e1e6dd231d85ecbdfbb1aa372;hpb=b3db4bb425ef79edc4269c0ad57e47685eb888b7"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=templates%2Fticket-depends-on&amp;do=goto"
> rel="nofollow">templates/ticket-depends-on</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Ffr33domlover"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">09:26:58 AM 07/19/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?rev=6f2e5495944f200e1e6dd231d85ecbdfbb1aa372&amp;do=revert"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +if failing, at least fail explicitly<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to templates/ticket-depends-on on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_b3db4bb425ef79edc4269c0ad57e47685eb888b7/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-b3db4bb425ef79edc4269c0ad57e47685eb888b7
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-07-19T09:15:03Z</updated>
> +       <published>2015-07-19T09:15:03Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-b3db4bb425ef79edc4269c0ad57e47685eb888b7"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=templates/ticket-depends-on.mdwn;h=a7f05948f92be66460fa39f2d7ac61c863886994;hp=0279afa3d1b2bb1796ba9e32955894c6e8436c5e;hb=b3db4bb425ef79edc4269c0ad57e47685eb888b7;hpb=5b2a8e163184284378d48d2419134d6f5e4fabbe"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=templates%2Fticket-depends-on"
> rel="nofollow">templates/ticket-depends-on</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=people%2Ffr33domlover&amp;do=goto"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">09:15:03 AM 07/19/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?rev=b3db4bb425ef79edc4269c0ad57e47685eb888b7&amp;do=revert"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +last try, I have no idea about those variables<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to templates/ticket-depends-on on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_5b2a8e163184284378d48d2419134d6f5e4fabbe/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-5b2a8e163184284378d48d2419134d6f5e4fabbe
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-07-19T09:00:55Z</updated>
> +       <published>2015-07-19T09:00:55Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-5b2a8e163184284378d48d2419134d6f5e4fabbe"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=templates/ticket-depends-on.mdwn;h=0279afa3d1b2bb1796ba9e32955894c6e8436c5e;hp=6e5d9e5744a8b7f07502689526a0bb398df695a6;hb=5b2a8e163184284378d48d2419134d6f5e4fabbe;hpb=476809c178ec0873f4580309443add856c64f339"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=templates%2Fticket-depends-on&amp;do=goto"
> rel="nofollow">templates/ticket-depends-on</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=people%2Ffr33domlover&amp;do=goto"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">09:00:55 AM 07/19/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=revert&amp;rev=5b2a8e163184284378d48d2419134d6f5e4fabbe"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +try again<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to templates/ticket-depends-on on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_476809c178ec0873f4580309443add856c64f339/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-476809c178ec0873f4580309443add856c64f339
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-07-19T08:43:09Z</updated>
> +       <published>2015-07-19T08:43:09Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-476809c178ec0873f4580309443add856c64f339"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=templates/ticket-depends-on.mdwn;h=6e5d9e5744a8b7f07502689526a0bb398df695a6;hp=f83eb1c67a3ccac4e181ab4fba9a9dff0a6b6a80;hb=476809c178ec0873f4580309443add856c64f339;hpb=42242ce1aeb36d653d3312ee46603ca1baeb5f78"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=templates%2Fticket-depends-on&amp;do=goto"
> rel="nofollow">templates/ticket-depends-on</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=people%2Ffr33domlover&amp;do=goto"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">08:43:09 AM 07/19/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?rev=476809c178ec0873f4580309443add856c64f339&amp;do=revert"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +try to fix local ticket dependency template<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/irc-fun-bot/tickets/5 on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_42242ce1aeb36d653d3312ee46603ca1baeb5f78/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-42242ce1aeb36d653d3312ee46603ca1baeb5f78
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-07-19T00:52:24Z</updated>
> +       <published>2015-07-19T00:52:24Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-42242ce1aeb36d653d3312ee46603ca1baeb5f78"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/irc-fun-bot/tickets/5.mdwn;h=b9debec3ded1ba8f5151f21acfc3ce6f340f9d06;hp=0e5a1030b7c2ef5dbd1c505352d9172e94bf04d3;hb=42242ce1aeb36d653d3312ee46603ca1baeb5f78;hpb=bd0e46e488bbeb8b216f6ab1aefd98083ec61f16"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Firc-fun-bot%2Ftickets%2F5&amp;do=goto"
> rel="nofollow">projects/irc-fun-bot/tickets/5</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=people%2Ffr33domlover&amp;do=goto"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">12:52:24 AM 07/19/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?rev=42242ce1aeb36d653d3312ee46603ca1baeb5f78&amp;do=revert"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +fix typo<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/irc-fun-bot/tickets/5 on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_bd0e46e488bbeb8b216f6ab1aefd98083ec61f16/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-bd0e46e488bbeb8b216f6ab1aefd98083ec61f16
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-07-19T00:48:08Z</updated>
> +       <published>2015-07-19T00:48:08Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-bd0e46e488bbeb8b216f6ab1aefd98083ec61f16"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/irc-fun-bot/tickets/5.mdwn;h=0e5a1030b7c2ef5dbd1c505352d9172e94bf04d3;hp=fac452baf181d140dfd541dd3e348b03f4387a1a;hb=bd0e46e488bbeb8b216f6ab1aefd98083ec61f16;hpb=e048d2ba90a4e6f94784c809618051f00a863627"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Firc-fun-bot%2Ftickets%2F5&amp;do=goto"
> rel="nofollow">projects/irc-fun-bot/tickets/5</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Ffr33domlover"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">12:48:08 AM 07/19/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?rev=bd0e46e488bbeb8b216f6ab1aefd98083ec61f16&amp;do=revert"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +irc-fun-bot: close ticket 5, user tracking works<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to templates/tktref on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_e048d2ba90a4e6f94784c809618051f00a863627/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-e048d2ba90a4e6f94784c809618051f00a863627
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-07-18T16:18:02Z</updated>
> +       <published>2015-07-18T16:18:02Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-e048d2ba90a4e6f94784c809618051f00a863627"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=templates/tktref.mdwn;h=a0c97a7571758f0b9ecbdd87da123ddc23e3add3;hp=fc64ea4a97b82588f1cb5c72d9875cbedc196f6b;hb=e048d2ba90a4e6f94784c809618051f00a863627;hpb=64fc69565cd08b8438d34b6453840eec6c328677"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=templates%2Ftktref&amp;do=goto"
> rel="nofollow">templates/tktref</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=people%2Ffr33domlover&amp;do=goto"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">04:18:02 PM 07/18/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?rev=e048d2ba90a4e6f94784c809618051f00a863627&amp;do=revert"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +try to fix tktlink rendering<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/irc-fun-bot/tickets/5
> projects/irc-fun-messages/tickets/1 on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_64fc69565cd08b8438d34b6453840eec6c328677/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-64fc69565cd08b8438d34b6453840eec6c328677
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-07-18T16:13:16Z</updated>
> +       <published>2015-07-18T16:13:16Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-64fc69565cd08b8438d34b6453840eec6c328677"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/irc-fun-bot/tickets/5.mdwn;h=fac452baf181d140dfd541dd3e348b03f4387a1a;hp=c3fda7dceeea8bd5b28f491e969db289e813a59a;hb=64fc69565cd08b8438d34b6453840eec6c328677;hpb=9cf06f38584d7b9c6e9a1c29a8fde5ff7a1836b8"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Firc-fun-bot%2Ftickets%2F5"
> rel="nofollow">projects/irc-fun-bot/tickets/5</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/irc-fun-messages/tickets/1.mdwn;h=b591bb5228526e4e0c28619d1d51642bd35db0ca;hp=9ef221af24707831f812d2a735fcfa1ed60c2188;hb=64fc69565cd08b8438d34b6453840eec6c328677;hpb=9cf06f38584d7b9c6e9a1c29a8fde5ff7a1836b8"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Firc-fun-messages%2Ftickets%2F1&amp;do=goto"
> rel="nofollow">projects/irc-fun-messages/tickets/1</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Ffr33domlover"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">04:13:16 PM 07/18/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?rev=64fc69565cd08b8438d34b6453840eec6c328677&amp;do=revert"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +irc-fun-*: reply analysis added, now track nicknames<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects projects/irc-fun-color
> projects/irc-fun-color/decisions projects/irc-fun-color/forum
> projects/irc-fun-color/news projects/irc-fun-color/releases
> projects/irc-fun-color/tickets on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_9cf06f38584d7b9c6e9a1c29a8fde5ff7a1836b8/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-9cf06f38584d7b9c6e9a1c29a8fde5ff7a1836b8
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-07-18T15:08:45Z</updated>
> +       <published>2015-07-18T15:08:45Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-9cf06f38584d7b9c6e9a1c29a8fde5ff7a1836b8"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects.mdwn;h=9d82d759e2e847c0b174cf1bbe7f57d75c14474f;hp=2f60c659996eb1080d7af967e9041d62d77d84c9;hb=9cf06f38584d7b9c6e9a1c29a8fde5ff7a1836b8;hpb=3d1ea877911070c0d95bb46c10568bde7b956ae6"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects&amp;do=goto"
> rel="nofollow">projects</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/irc-fun-color.mdwn;h=55a94ef29608a2cf99061cfff38117975ad31fa3;hp=0000000000000000000000000000000000000000;hb=9cf06f38584d7b9c6e9a1c29a8fde5ff7a1836b8;hpb=3d1ea877911070c0d95bb46c10568bde7b956ae6"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Firc-fun-color"
> rel="nofollow">projects/irc-fun-color</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/irc-fun-color/decisions.mdwn;h=86674bf28a1eac5aa6a8f6bf02a5f3611fae5afe;hp=0000000000000000000000000000000000000000;hb=9cf06f38584d7b9c6e9a1c29a8fde5ff7a1836b8;hpb=3d1ea877911070c0d95bb46c10568bde7b956ae6"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Firc-fun-color%2Fdecisions&amp;do=goto"
> rel="nofollow">projects/irc-fun-color/decisions</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/irc-fun-color/forum.mdwn;h=f297d56c4a7e9099c511dafd8deeec28222e3e17;hp=0000000000000000000000000000000000000000;hb=9cf06f38584d7b9c6e9a1c29a8fde5ff7a1836b8;hpb=3d1ea877911070c0d95bb46c10568bde7b956ae6"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Firc-fun-color%2Fforum"
> rel="nofollow">projects/irc-fun-color/forum</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/irc-fun-color/news.mdwn;h=330c55f6fd7f2c4a010044249adcb5456d9658a3;hp=0000000000000000000000000000000000000000;hb=9cf06f38584d7b9c6e9a1c29a8fde5ff7a1836b8;hpb=3d1ea877911070c0d95bb46c10568bde7b956ae6"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Firc-fun-color%2Fnews&amp;do=goto"
> rel="nofollow">projects/irc-fun-color/news</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/irc-fun-color/releases.mdwn;h=57e5729d6313d999900ce903adcc35389f4686bb;hp=0000000000000000000000000000000000000000;hb=9cf06f38584d7b9c6e9a1c29a8fde5ff7a1836b8;hpb=3d1ea877911070c0d95bb46c10568bde7b956ae6"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Firc-fun-color%2Freleases&amp;do=goto"
> rel="nofollow">projects/irc-fun-color/releases</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/irc-fun-color/tickets.mdwn;h=707729b4f5edb530c7493f701639e14441ece6fb;hp=0000000000000000000000000000000000000000;hb=9cf06f38584d7b9c6e9a1c29a8fde5ff7a1836b8;hpb=3d1ea877911070c0d95bb46c10568bde7b956ae6"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Firc-fun-color%2Ftickets"
> rel="nofollow">projects/irc-fun-color/tickets</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=people%2Ffr33domlover&amp;do=goto"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">03:08:45 PM 07/18/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?rev=9cf06f38584d7b9c6e9a1c29a8fde5ff7a1836b8&amp;do=revert"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +irc-fun-color: new project<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to templates/ticket-depends-on on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_3d1ea877911070c0d95bb46c10568bde7b956ae6/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-3d1ea877911070c0d95bb46c10568bde7b956ae6
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-07-17T12:13:32Z</updated>
> +       <published>2015-07-17T12:13:32Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-3d1ea877911070c0d95bb46c10568bde7b956ae6"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=templates/ticket-depends-on.mdwn;h=f83eb1c67a3ccac4e181ab4fba9a9dff0a6b6a80;hp=36db3bfac2156cf7980068af0606bf464cd5b6ec;hb=3d1ea877911070c0d95bb46c10568bde7b956ae6;hpb=5361eae41a1dbd74b511f97df16687a0278063d6"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=templates%2Fticket-depends-on&amp;do=goto"
> rel="nofollow">templates/ticket-depends-on</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=people%2Ffr33domlover&amp;do=goto"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">12:13:32 PM 07/17/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=revert&amp;rev=3d1ea877911070c0d95bb46c10568bde7b956ae6"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +template: try to make ticket-depends-on render as a single line<br
> />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to templates/tktref on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_5361eae41a1dbd74b511f97df16687a0278063d6/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-5361eae41a1dbd74b511f97df16687a0278063d6
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-07-17T12:07:39Z</updated>
> +       <published>2015-07-17T12:07:39Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-5361eae41a1dbd74b511f97df16687a0278063d6"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=templates/tktref.mdwn;h=fc64ea4a97b82588f1cb5c72d9875cbedc196f6b;hp=cc3d879c0f434325cf3e0a35768810a4d4c40cb3;hb=5361eae41a1dbd74b511f97df16687a0278063d6;hpb=8acf634f485a70e7f54faa48d5ceaff705849359"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=templates%2Ftktref"
> rel="nofollow">templates/tktref</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Ffr33domlover"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">12:07:39 PM 07/17/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=revert&amp;rev=5361eae41a1dbd74b511f97df16687a0278063d6"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +templates: fix typo in tktref<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to templates/ticket-dependants templates/ticket on
> Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_8acf634f485a70e7f54faa48d5ceaff705849359/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-8acf634f485a70e7f54faa48d5ceaff705849359
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-07-17T11:59:11Z</updated>
> +       <published>2015-07-17T11:59:11Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-8acf634f485a70e7f54faa48d5ceaff705849359"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=templates/ticket-dependants.mdwn;h=8996711ad0b53f3acc95eb2fb577260f56f99589;hp=0000000000000000000000000000000000000000;hb=8acf634f485a70e7f54faa48d5ceaff705849359;hpb=4826e57427eb5fdc542b22534276401ef0e0a6bb"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=templates%2Fticket-dependants"
> rel="nofollow">templates/ticket-dependants</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=templates/ticket.mdwn;h=7adaf50d169a1a3e068b272427c5ccd010b304ea;hp=cc70c7b4bcf5718cf457b8bc8f9760c3c2dec296;hb=8acf634f485a70e7f54faa48d5ceaff705849359;hpb=4826e57427eb5fdc542b22534276401ef0e0a6bb"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=templates%2Fticket&amp;do=goto"
> rel="nofollow">templates/ticket</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Ffr33domlover"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">11:59:11 AM 07/17/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?rev=8acf634f485a70e7f54faa48d5ceaff705849359&amp;do=revert"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +add ticket reverse dependencies using tags<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/funbot/tickets/10
> projects/funbot/tickets/3 projects/funbot/tickets/5 projects/idan/tickets/4
> projects/irc-fun-bot/tickets/5
> projects/sif/tickets/Remove_doxy_references_to_nonfree_browsers
> projects/sif/tickets/Remove_unused_doxy_images templates/ticket-depends-on
> on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_4826e57427eb5fdc542b22534276401ef0e0a6bb/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-4826e57427eb5fdc542b22534276401ef0e0a6bb
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-07-17T11:27:55Z</updated>
> +       <published>2015-07-17T11:27:55Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-4826e57427eb5fdc542b22534276401ef0e0a6bb"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/funbot/tickets/10.mdwn;h=7db97bbee99f558e4dc6164e60ef81504d4afe24;hp=f679a8578818b1b59ef502b4e83d972a2696ba2a;hb=4826e57427eb5fdc542b22534276401ef0e0a6bb;hpb=2a4c41ea9590cd73e0aec952e93f745172a32217"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Ffunbot%2Ftickets%2F10"
> rel="nofollow">projects/funbot/tickets/10</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/funbot/tickets/3.mdwn;h=111efa1b015906623afc28c27ee52742a7cddbd8;hp=09da3b9886f12272ba40bde42dcb4ebbd0846de9;hb=4826e57427eb5fdc542b22534276401ef0e0a6bb;hpb=2a4c41ea9590cd73e0aec952e93f745172a32217"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Ffunbot%2Ftickets%2F3"
> rel="nofollow">projects/funbot/tickets/3</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/funbot/tickets/5.mdwn;h=606f28657913248cbfe3204aa6f0ffebec656b55;hp=f605f0ecc0227205dad3b5d4b16c4fdb85df5eb5;hb=4826e57427eb5fdc542b22534276401ef0e0a6bb;hpb=2a4c41ea9590cd73e0aec952e93f745172a32217"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Ffunbot%2Ftickets%2F5"
> rel="nofollow">projects/funbot/tickets/5</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/idan/tickets/4.mdwn;h=a4e6bd9fb63289481b2ebea90b374aa0236a604a;hp=e4f1d49482e7e2c66e404a9a0efcdc0bfb29950d;hb=4826e57427eb5fdc542b22534276401ef0e0a6bb;hpb=2a4c41ea9590cd73e0aec952e93f745172a32217"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Fidan%2Ftickets%2F4&amp;do=goto"
> rel="nofollow">projects/idan/tickets/4</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/irc-fun-bot/tickets/5.mdwn;h=c3fda7dceeea8bd5b28f491e969db289e813a59a;hp=215a25f288dfeb80ea06314a6c1b860a1476622e;hb=4826e57427eb5fdc542b22534276401ef0e0a6bb;hpb=2a4c41ea9590cd73e0aec952e93f745172a32217"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Firc-fun-bot%2Ftickets%2F5"
> rel="nofollow">projects/irc-fun-bot/tickets/5</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/sif/tickets/Remove_doxy_references_to_nonfree_browsers.mdwn;h=944fb3a116e57ee64af34d891fa43327468b0228;hp=5b6919b3d065d46f997e6abb1f63130978a5e9af;hb=4826e57427eb5fdc542b22534276401ef0e0a6bb;hpb=2a4c41ea9590cd73e0aec952e93f745172a32217"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Fsif%2Ftickets%2FRemove_doxy_references_to_nonfree_browsers&amp;do=goto"
> rel="nofollow">projects/sif/tickets/Remove doxy references to
> nonfree browsers</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/sif/tickets/Remove_unused_doxy_images.mdwn;h=7f4205dd1dd777bbbf86e08147e73c427c66d984;hp=c54d10be8cc161461d2d1b535b29043cdbdb9fb6;hb=4826e57427eb5fdc542b22534276401ef0e0a6bb;hpb=2a4c41ea9590cd73e0aec952e93f745172a32217"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Fsif%2Ftickets%2FRemove_unused_doxy_images&amp;do=goto"
> rel="nofollow">projects/sif/tickets/Remove unused doxy
> images</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=templates/ticket-depends-on.mdwn;h=36db3bfac2156cf7980068af0606bf464cd5b6ec;hp=55583bce2cd010f8cf8b3271621428169d3b57a2;hb=4826e57427eb5fdc542b22534276401ef0e0a6bb;hpb=2a4c41ea9590cd73e0aec952e93f745172a32217"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=templates%2Fticket-depends-on&amp;do=goto"
> rel="nofollow">templates/ticket-depends-on</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=people%2Ffr33domlover&amp;do=goto"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">11:27:55 AM 07/17/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=revert&amp;rev=4826e57427eb5fdc542b22534276401ef0e0a6bb"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +templates: hopefully improve ticket-depends-on<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/irc-fun-bot/tickets/5
> projects/irc-fun-messages/tickets/1 projects/irc-fun-messages/tickets/2 on
> Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_2a4c41ea9590cd73e0aec952e93f745172a32217/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-2a4c41ea9590cd73e0aec952e93f745172a32217
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-07-17T10:45:46Z</updated>
> +       <published>2015-07-17T10:45:46Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-2a4c41ea9590cd73e0aec952e93f745172a32217"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/irc-fun-bot/tickets/5.mdwn;h=215a25f288dfeb80ea06314a6c1b860a1476622e;hp=9c3b99793d6df15691e519bd472b674b37b871a6;hb=2a4c41ea9590cd73e0aec952e93f745172a32217;hpb=8fb78e1a159821745b973337a7267635a536f3fc"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Firc-fun-bot%2Ftickets%2F5"
> rel="nofollow">projects/irc-fun-bot/tickets/5</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/irc-fun-messages/tickets/1.mdwn;h=9ef221af24707831f812d2a735fcfa1ed60c2188;hp=0000000000000000000000000000000000000000;hb=2a4c41ea9590cd73e0aec952e93f745172a32217;hpb=8fb78e1a159821745b973337a7267635a536f3fc"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Firc-fun-messages%2Ftickets%2F1"
> rel="nofollow">projects/irc-fun-messages/tickets/1</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/irc-fun-messages/tickets/2.mdwn;h=b97c3b915afa5aee1527549c97939c20979e11ba;hp=0000000000000000000000000000000000000000;hb=2a4c41ea9590cd73e0aec952e93f745172a32217;hpb=8fb78e1a159821745b973337a7267635a536f3fc"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Firc-fun-messages%2Ftickets%2F2&amp;do=goto"
> rel="nofollow">projects/irc-fun-messages/tickets/2</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=people%2Ffr33domlover&amp;do=goto"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">10:45:46 AM 07/17/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?rev=2a4c41ea9590cd73e0aec952e93f745172a32217&amp;do=revert"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +irc-fun-messages: open tickets for work being done<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/funbot/tickets/14
> projects/irc-fun-bot/tickets/6 on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_8fb78e1a159821745b973337a7267635a536f3fc/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-8fb78e1a159821745b973337a7267635a536f3fc
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-07-16T12:50:22Z</updated>
> +       <published>2015-07-16T12:50:22Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-8fb78e1a159821745b973337a7267635a536f3fc"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/funbot/tickets/14.mdwn;h=ec589115c87f1e070cf74a0e74bd88fa16320fd5;hp=0000000000000000000000000000000000000000;hb=8fb78e1a159821745b973337a7267635a536f3fc;hpb=18355348f643f521d5172530761ce01abe472ed9"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Ffunbot%2Ftickets%2F14"
> rel="nofollow">projects/funbot/tickets/14</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/irc-fun-bot/tickets/6.mdwn;h=dc30d1b5dbb1e84f25aebe68f2a00c626870469b;hp=0000000000000000000000000000000000000000;hb=8fb78e1a159821745b973337a7267635a536f3fc;hpb=18355348f643f521d5172530761ce01abe472ed9"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Firc-fun-bot%2Ftickets%2F6&amp;do=goto"
> rel="nofollow">projects/irc-fun-bot/tickets/6</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=people%2Ffr33domlover&amp;do=goto"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">12:50:22 PM 07/16/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?rev=8fb78e1a159821745b973337a7267635a536f3fc&amp;do=revert"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +funbot: tickets for Tox and OTR support<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/irc-fun-bot/tickets/5 on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_18355348f643f521d5172530761ce01abe472ed9/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-18355348f643f521d5172530761ce01abe472ed9
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-07-15T12:43:41Z</updated>
> +       <published>2015-07-15T12:43:41Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-18355348f643f521d5172530761ce01abe472ed9"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/irc-fun-bot/tickets/5.mdwn;h=9c3b99793d6df15691e519bd472b674b37b871a6;hp=17f55a86e0f23d45f9b2edb4f6daec60c2dc0d82;hb=18355348f643f521d5172530761ce01abe472ed9;hpb=143590cacdab92492eb6a14e53c9810f4432cd4b"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Firc-fun-bot%2Ftickets%2F5"
> rel="nofollow">projects/irc-fun-bot/tickets/5</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Ffr33domlover"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">12:43:41 PM 07/15/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?rev=18355348f643f521d5172530761ce01abe472ed9&amp;do=revert"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +irc-fun-bot: notes on online user tracking<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/irc-fun-bot/tickets/4 on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_143590cacdab92492eb6a14e53c9810f4432cd4b/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-143590cacdab92492eb6a14e53c9810f4432cd4b
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-07-15T12:28:53Z</updated>
> +       <published>2015-07-15T12:28:53Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-143590cacdab92492eb6a14e53c9810f4432cd4b"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/irc-fun-bot/tickets/4.mdwn;h=de50db2d43720e278918b08a15a70fb01065310c;hp=861efebe845edc70875723113005c9292a8181a6;hb=143590cacdab92492eb6a14e53c9810f4432cd4b;hpb=1d7deccdc53477739f5f644a14ddfc08276eb330"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Firc-fun-bot%2Ftickets%2F4"
> rel="nofollow">projects/irc-fun-bot/tickets/4</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Ffr33domlover"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">12:28:53 PM 07/15/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=revert&amp;rev=143590cacdab92492eb6a14e53c9810f4432cd4b"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +irc-fun-bot: close ticket 4, event handling implemented<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to templates/commit templates/record on
> Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_1d7deccdc53477739f5f644a14ddfc08276eb330/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-1d7deccdc53477739f5f644a14ddfc08276eb330
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-07-15T12:28:19Z</updated>
> +       <published>2015-07-15T12:28:19Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-1d7deccdc53477739f5f644a14ddfc08276eb330"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=templates/commit.mdwn;h=2216a0ee714109c1860d714832f0a8e1935bdc0a;hp=e715dab0360f63da76233aa8d6018cb5511dd183;hb=1d7deccdc53477739f5f644a14ddfc08276eb330;hpb=74e38e99ab317f66273387b40a96f3817a9a269f"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=templates%2Fcommit"
> rel="nofollow">templates/commit</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=templates/record.mdwn;h=b6d048ab252338b6994ea0ee8b04b73db7a4a778;hp=cf2916d42321a35e788ca8121243e4e3e9a1ca3c;hb=1d7deccdc53477739f5f644a14ddfc08276eb330;hpb=74e38e99ab317f66273387b40a96f3817a9a269f"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=templates%2Frecord&amp;do=goto"
> rel="nofollow">templates/record</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Ffr33domlover"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">12:28:19 PM 07/15/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=revert&amp;rev=1d7deccdc53477739f5f644a14ddfc08276eb330"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +templates: update record template link text<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to templates/commit templates/record on
> Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_74e38e99ab317f66273387b40a96f3817a9a269f/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-74e38e99ab317f66273387b40a96f3817a9a269f
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-07-15T11:38:43Z</updated>
> +       <published>2015-07-15T11:38:43Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-74e38e99ab317f66273387b40a96f3817a9a269f"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=templates/commit.mdwn;h=e715dab0360f63da76233aa8d6018cb5511dd183;hp=0000000000000000000000000000000000000000;hb=74e38e99ab317f66273387b40a96f3817a9a269f;hpb=54fd05dc71003ad59211bf218528dd21f1386759"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=templates%2Fcommit"
> rel="nofollow">templates/commit</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=templates/record.mdwn;h=cf2916d42321a35e788ca8121243e4e3e9a1ca3c;hp=0000000000000000000000000000000000000000;hb=74e38e99ab317f66273387b40a96f3817a9a269f;hpb=54fd05dc71003ad59211bf218528dd21f1386759"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=templates%2Frecord&amp;do=goto"
> rel="nofollow">templates/record</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Ffr33domlover"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">11:38:43 AM 07/15/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?rev=74e38e99ab317f66273387b40a96f3817a9a269f&amp;do=revert"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +templates: add git/darcs record templates<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/funbot/guide on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_54fd05dc71003ad59211bf218528dd21f1386759/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-54fd05dc71003ad59211bf218528dd21f1386759
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-07-15T11:38:19Z</updated>
> +       <published>2015-07-15T11:38:19Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-54fd05dc71003ad59211bf218528dd21f1386759"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/funbot/guide.mdwn;h=9d46ed7be13811c424111b5f29dc6ef641e5754a;hp=ac4c2f5842f1194f7e20148f70c265952cb990f9;hb=54fd05dc71003ad59211bf218528dd21f1386759;hpb=07d23f596ab3b6281acdd9f80768ab64b014bd49"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Ffunbot%2Fguide"
> rel="nofollow">projects/funbot/guide</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Ffr33domlover"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">11:38:19 AM 07/15/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?rev=54fd05dc71003ad59211bf218528dd21f1386759&amp;do=revert"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +funbot: add list of API features to the guide<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/irc-fun-bot/tickets/4 on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_07d23f596ab3b6281acdd9f80768ab64b014bd49/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-07d23f596ab3b6281acdd9f80768ab64b014bd49
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-07-15T00:24:59Z</updated>
> +       <published>2015-07-15T00:24:59Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-07d23f596ab3b6281acdd9f80768ab64b014bd49"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/irc-fun-bot/tickets/4.mdwn;h=861efebe845edc70875723113005c9292a8181a6;hp=4cda87eb8f895f7dee560b8df646d1c7d5e4601a;hb=07d23f596ab3b6281acdd9f80768ab64b014bd49;hpb=2f5ca460f67dbbb1503a8bcf0a0f1a815f90ed9a"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Firc-fun-bot%2Ftickets%2F4"
> rel="nofollow">projects/irc-fun-bot/tickets/4</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Ffr33domlover"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">12:24:59 AM 07/15/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?rev=07d23f596ab3b6281acdd9f80768ab64b014bd49&amp;do=revert"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +irc-fun-bot: more notes on ticket 4: events types<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/funbot/tickets/13 on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_2f5ca460f67dbbb1503a8bcf0a0f1a815f90ed9a/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-2f5ca460f67dbbb1503a8bcf0a0f1a815f90ed9a
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-07-15T00:04:20Z</updated>
> +       <published>2015-07-15T00:04:20Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-2f5ca460f67dbbb1503a8bcf0a0f1a815f90ed9a"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/funbot/tickets/13.mdwn;h=b6905577f100cfddf71d2589136637129d7016a1;hp=0000000000000000000000000000000000000000;hb=2f5ca460f67dbbb1503a8bcf0a0f1a815f90ed9a;hpb=efaad54e5facfab7d5048a058407a733b987f877"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Ffunbot%2Ftickets%2F13"
> rel="nofollow">projects/funbot/tickets/13</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Ffr33domlover"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">12:04:20 AM 07/15/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=revert&amp;rev=2f5ca460f67dbbb1503a8bcf0a0f1a815f90ed9a"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +funbot: new ticket: collecting quotes<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/irc-fun-bot/tickets/4 on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_efaad54e5facfab7d5048a058407a733b987f877/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-efaad54e5facfab7d5048a058407a733b987f877
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-07-14T23:48:18Z</updated>
> +       <published>2015-07-14T23:48:18Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-efaad54e5facfab7d5048a058407a733b987f877"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/irc-fun-bot/tickets/4.mdwn;h=4cda87eb8f895f7dee560b8df646d1c7d5e4601a;hp=d3eb459357a0fe4b6922f45adfaabf25f6753d68;hb=efaad54e5facfab7d5048a058407a733b987f877;hpb=ca1c11f89649f6d8e2ee1e875edf2c4232447c92"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Firc-fun-bot%2Ftickets%2F4&amp;do=goto"
> rel="nofollow">projects/irc-fun-bot/tickets/4</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Ffr33domlover"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">11:48:18 PM 07/14/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=revert&amp;rev=efaad54e5facfab7d5048a058407a733b987f877"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +irc-fun-bot: thoughts on ticket 4<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to people/fr33domlover on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_ca1c11f89649f6d8e2ee1e875edf2c4232447c92/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-ca1c11f89649f6d8e2ee1e875edf2c4232447c92
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-07-13T19:56:20Z</updated>
> +       <published>2015-07-13T19:56:20Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-ca1c11f89649f6d8e2ee1e875edf2c4232447c92"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=people/fr33domlover.mdwn;h=f28b90121dbd2ea1427b476ec65ac299d5a362a7;hp=6f209d9fe79aaea43836b9e010f6879ef7428cbc;hb=ca1c11f89649f6d8e2ee1e875edf2c4232447c92;hpb=6d3a6ade9202b71c87723db5d8d99f95625995d0"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Ffr33domlover"
> rel="nofollow">people/fr33domlover</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Ffr33domlover"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">07:56:20 PM 07/13/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=revert&amp;rev=ca1c11f89649f6d8e2ee1e875edf2c4232447c92"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +me: not anymore<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/funbot/manual projects/funbot/tickets/9
> on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_6d3a6ade9202b71c87723db5d8d99f95625995d0/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-6d3a6ade9202b71c87723db5d8d99f95625995d0
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-07-13T16:31:31Z</updated>
> +       <published>2015-07-13T16:31:31Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-6d3a6ade9202b71c87723db5d8d99f95625995d0"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/funbot/manual.mdwn;h=f179ef3cc7731f76ad0bae8b31a4e64a3f8d6871;hp=c664554baaa6d752bb6412372ae3e03c25f88691;hb=6d3a6ade9202b71c87723db5d8d99f95625995d0;hpb=75eade8953e45278446e742d970840fd5686a759"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Ffunbot%2Fmanual"
> rel="nofollow">projects/funbot/manual</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/funbot/tickets/9.mdwn;h=f3728f733ee4e81e0cf9e6aa40df787378449c85;hp=1dcfa08f772cc596392b61eaed26d494b37f4e17;hb=6d3a6ade9202b71c87723db5d8d99f95625995d0;hpb=75eade8953e45278446e742d970840fd5686a759"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Ffunbot%2Ftickets%2F9"
> rel="nofollow">projects/funbot/tickets/9</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Ffr33domlover"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">04:31:31 PM 07/13/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=revert&amp;rev=6d3a6ade9202b71c87723db5d8d99f95625995d0"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +funbot: finish manual and close ticket 9, Jookia&#39;s patch applied
> - thanks!<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/funbot/tickets/9 on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_75eade8953e45278446e742d970840fd5686a759/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-75eade8953e45278446e742d970840fd5686a759
> "/>
> +
> +       <author><name>jookia</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-07-13T15:29:57Z</updated>
> +       <published>2015-07-13T15:29:57Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-75eade8953e45278446e742d970840fd5686a759"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/funbot/tickets/9.mdwn;h=1dcfa08f772cc596392b61eaed26d494b37f4e17;hp=b5300d432f0b164e9ddd5cf70630ec04caca47c6;hb=75eade8953e45278446e742d970840fd5686a759;hpb=660f57dbd862851e014100f04657b9b9f20bd8dd"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Ffunbot%2Ftickets%2F9"
> rel="nofollow">projects/funbot/tickets/9</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Fjookia"
> rel="nofollow">jookia</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">web</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">03:29:57 PM 07/13/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?rev=75eade8953e45278446e742d970840fd5686a759&amp;do=revert"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to
> projects/funbot/tickets/9/0001-info-Add-copying-information.patch on
> Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_660f57dbd862851e014100f04657b9b9f20bd8dd/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-660f57dbd862851e014100f04657b9b9f20bd8dd
> "/>
> +
> +       <author><name>jookia</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-07-13T15:25:55Z</updated>
> +       <published>2015-07-13T15:25:55Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-660f57dbd862851e014100f04657b9b9f20bd8dd"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/funbot/tickets/9/0001-info-Add-copying-information.patch;h=1c6b87a3543f57c62bc123bc441be563c0a18a75;hp=0000000000000000000000000000000000000000;hb=660f57dbd862851e014100f04657b9b9f20bd8dd;hpb=69a4b71b5f5359915ae8a9c17cd12778e577267b"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=projects%2Ffunbot%2Ftickets%2F9%2F0001-info-Add-copying-information.patch"
> rel="nofollow">projects/funbot/tickets/9/0001-info-Add-copying-information.patch</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=people%2Fjookia&amp;do=goto"
> rel="nofollow">jookia</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">web</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">03:25:55 PM 07/13/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?rev=660f57dbd862851e014100f04657b9b9f20bd8dd&amp;do=revert"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +attachment upload<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +<entry>
> +       <title>change to projects/libravatar projects/libravatar/tickets/1
> projects/libravatar/tickets/Please_provide_sample_code on Rel4tion</title>
> +
> +       <id>
> http://www.rel4tion.org/recentchanges/change_69a4b71b5f5359915ae8a9c17cd12778e577267b/
> </id>
> +
> +       <link href="
> http://www.rel4tion.org/recentchanges/#change-69a4b71b5f5359915ae8a9c17cd12778e577267b
> "/>
> +
> +       <author><name>fr33domlover</name></author>
> +
> +
> +
> +
> +
> +       <updated>2015-07-13T14:57:10Z</updated>
> +       <published>2015-07-13T14:57:10Z</published>
> +
> +
> +       <content type="html" xml:lang="en">
> +
> +
> +
> +
> +
> +
> +
> +
> +<div id="change-69a4b71b5f5359915ae8a9c17cd12778e577267b"
> class="metadata">
> +<span class="desc"><br />Changed pages:</span>
> +<span class="pagelinks">
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/libravatar.mdwn;h=da1600f753365123dc129bbbb8d306aa48b76e04;hp=a462742b8577f6ceedb5ce392b9b5fd7a56c97af;hb=69a4b71b5f5359915ae8a9c17cd12778e577267b;hpb=af63fb6ef0b0df0490b806b41ca018701e7eb586"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Flibravatar&amp;do=goto"
> rel="nofollow">projects/libravatar</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/libravatar/tickets/1.mdwn;h=be178d41ce929dd13f79a42efdce42814cfd781c;hp=0000000000000000000000000000000000000000;hb=69a4b71b5f5359915ae8a9c17cd12778e577267b;hpb=af63fb6ef0b0df0490b806b41ca018701e7eb586"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Flibravatar%2Ftickets%2F1&amp;do=goto"
> rel="nofollow">projects/libravatar/tickets/1</a>
> +
> +
> +<a href="
> http://git.rel4tion.org/?p=wiki.git;a=blobdiff;f=projects/libravatar/tickets/Please_provide_sample_code.mdwn;h=0000000000000000000000000000000000000000;hp=e2ef3abcf2e8dc5bb11d3a0d367fc01a4892123d;hb=69a4b71b5f5359915ae8a9c17cd12778e577267b;hpb=af63fb6ef0b0df0490b806b41ca018701e7eb586"
> title="diff" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/diff.png"
> alt="diff" /></a><a href="
> http://www.rel4tion.org/ikiwiki.cgi?page=projects%2Flibravatar%2Ftickets%2FPlease_provide_sample_code&amp;do=goto"
> rel="nofollow">projects/libravatar/tickets/Please provide
> sample code</a>
> +
> +
> +</span>
> +<span class="desc"><br />Changed by:</span>
> +<span class="committer">
> +
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=goto&amp;page=people%2Ffr33domlover"
> rel="nofollow">fr33domlover</a>
> +
> +</span>
> +<span class="desc"><br />Commit type:</span>
> +<span class="committype">git</span>
> +<span class="desc"><br />Date:</span>
> +<span class="changedate"><span
> class="date">02:57:10 PM 07/13/2015</span></span>
> +<span class="desc"><br /></span>
> +<span class="revert">
> +<a href="
> http://www.rel4tion.org/ikiwiki.cgi?do=revert&amp;rev=69a4b71b5f5359915ae8a9c17cd12778e577267b"
> title="revert" rel="nofollow"><img src="
> http://www.rel4tion.org/recentchanges/../wikiicons/revert.png"
> alt="revert" /></a>
> +</span>
> +</div>
> +<div class="changelog">
> +
> +
> +libravatar: reply on ticket 1<br />
> +
> +
> +</div>
> +
> +
> +
> +       </content>
> +
> +
> +
> +</entry>
> +
> +</feed>
> --
> 1.9.1
>
> _______________________________________________
> Haskell-Cafe mailing list
> Haskell-Cafe at haskell.org
> http://mail.haskell.org/cgi-bin/mailman/listinfo/haskell-cafe
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.haskell.org/pipermail/haskell-cafe/attachments/20151002/65cb887d/attachment-0001.html>


More information about the Haskell-Cafe mailing list