diff options
author | Vincent Ambo <tazjin@google.com> | 2019-08-19T23·17+0100 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2019-08-19T23·17+0100 |
commit | 11fcf6229751eb266485cbba78d30aced1787d14 (patch) | |
tree | 025f02ca1d1288949f69468e32d9efe795db02a7 /services/tazblog/src/Locales.hs | |
parent | 1d5b53abf8da7b00ac1e58d43a30f738c157b9d3 (diff) |
chore(tazblog): Replace BlogDB with stubs for DNS-based storage r/44
Removes acid-state specific code and the former BlogDB module, in its stead the new BlogStorage module contains stubs for the functions that will be filled in with DNS-based storage. This code is unformatted and will not currently serve a working blog.
Diffstat (limited to 'services/tazblog/src/Locales.hs')
-rw-r--r-- | services/tazblog/src/Locales.hs | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/services/tazblog/src/Locales.hs b/services/tazblog/src/Locales.hs index 125e99aef9c7..2e49809eee32 100644 --- a/services/tazblog/src/Locales.hs +++ b/services/tazblog/src/Locales.hs @@ -1,15 +1,21 @@ {-# LANGUAGE ScopedTypeVariables, OverloadedStrings #-} module Locales where -import BlogDB (BlogLang (..)) import Data.Maybe (fromMaybe) import Data.Text (Text) import qualified Data.Text as T import Network.URI +data BlogLang = EN | DE + deriving (Eq, Ord) + +instance Show BlogLang where + show DE = "de" + show EN = "en" + data BlogError = NotFound | UnknownError -version = "5.1.2" +version = "6.0.0" blogTitle :: BlogLang -> Text -> Text blogTitle DE s = T.concat ["Tazjins blog", s] |