git-annex/Assistant/WebApp/Documentation.hs

43 lines
1.2 KiB
Haskell
Raw Normal View History

{- git-annex assistant webapp documentation
-
- Copyright 2012 Joey Hess <id@joeyh.name>
-
- Licensed under the GNU AGPL version 3 or higher.
-}
2013-06-05 01:02:09 +00:00
{-# LANGUAGE QuasiQuotes, TemplateHaskell, OverloadedStrings #-}
module Assistant.WebApp.Documentation where
2012-11-25 04:26:46 +00:00
import Assistant.WebApp.Common
import Assistant.Install (standaloneAppBase)
2012-09-27 22:09:05 +00:00
import Build.SysConfig (packageversion)
2013-03-09 18:59:38 +00:00
import BuildFlags
{- The full license info may be included in a file on disk that can
- be read in and displayed. -}
licenseFile :: IO (Maybe FilePath)
licenseFile = do
base <- standaloneAppBase
return $ (</> "LICENSE") <$> base
getAboutR :: Handler Html
2012-11-25 04:26:46 +00:00
getAboutR = page "About git-annex" (Just About) $ do
builtinlicense <- isJust <$> liftIO licenseFile
$(widgetFile "documentation/about")
getLicenseR :: Handler Html
getLicenseR = do
v <- liftIO licenseFile
case v of
Nothing -> redirect AboutR
2012-11-25 04:26:46 +00:00
Just f -> customPage (Just About) $ do
-- no sidebar, just pages of legalese..
setTitle "License"
license <- liftIO $ readFile f
$(widgetFile "documentation/license")
getRepoGroupR :: Handler Html
2013-10-02 05:06:59 +00:00
getRepoGroupR = page "About repository groups" (Just About) $
$(widgetFile "documentation/repogroup")