packages feed

kevin 0.1.3.1 → 0.1.4

raw patch · 2 files changed

+6/−3 lines, 2 files

Files

Kevin/Util/Tablump.hs view
@@ -61,7 +61,10 @@         "&img\t(.+?)\t(.*?)\t(.*?)\t" $$ \(x:y:z:_) -> printf "<img src='%s' alt='%s' title='%s' />" x y z,         "&iframe\t(.+?)\t(.*?)\t(.*?)\t" $$ \(x:y:z:_) -> printf "<iframe src='%s' width='%s' height='%s' />" x y z,         "&acro\t(.+?)\t" $$ \(x:_) -> printf "<acronym title='%s'>" x,-        "&abbr\t(.+?)\t" $$ \(x:_) -> printf "<abbr title='%s'>" x+        "&abbr\t(.+?)\t" $$ \(x:_) -> printf "<abbr title='%s'>" x,+        " <abbr title='colors:[0-9A-Fa-f]{6}:[0-9A-Fa-f]{6}'></abbr>" $$ const "",+        "^<abbr title='(.+?)'>.+?</abbr>:" $$ \(x:_) -> printf "%s:" x,+        "^[a-zA-Z0-9\\-_]+<abbr title='(.+?)'></abbr>:" $$ \(x:_) -> printf "%s:" x     ]  tablumpDecode :: T.Text -> T.Text
kevin.cabal view
@@ -1,5 +1,5 @@ Name:             kevin-Version:          0.1.3.1+Version:          0.1.4 Synopsis:         a dAmn ↔ IRC proxy Description:      a dAmn ↔ IRC proxy License:          GPL@@ -20,4 +20,4 @@     Other-Modules:    Kevin, Kevin.Protocol, Kevin.Base, Kevin.Util.Logger, Kevin.IRC.Protocol, Kevin.Damn.Protocol, Kevin.Util.Entity, Kevin.Util.Tablump, Kevin.Damn.Packet, Kevin.Damn.Protocol.Send, Kevin.IRC.Protocol.Send, Kevin.IRC.Packet, Kevin.Settings, Kevin.Types, Kevin.Util.Token     extensions:       CPP, DeriveDataTypeable, ExistentialQuantification, OverloadedStrings, ScopedTypeVariables, TemplateHaskell     ghc-options:      -Wall -fno-warn-unused-do-bind -threaded-    cpp-options:      -DVERSION="0.1.3.1"+    cpp-options:      -DVERSION="0.1.4"