-
Notifications
You must be signed in to change notification settings - Fork 1
/
gitit.cabal
129 lines (123 loc) · 6.39 KB
/
gitit.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
name: gitit
version: 0.6.2
Cabal-version: >= 1.2
build-type: Simple
synopsis: Wiki using happstack, git or darcs, and pandoc.
description: Gitit is a wiki backed by a git or darcs filestore.
Pages and uploaded files can be modified either
directly via the VCS's command-line tools or through
the wiki's web interface. Pandoc is used for markup
processing, so pages may be written in
(extended) markdown, reStructuredText, LaTeX, HTML,
or literate Haskell, and exported in ten different
formats, including LaTeX, ConTeXt, DocBook, RTF,
OpenOffice ODT, and MediaWiki markup.
.
Notable features include
.
* plugins: dynamically loaded page
transformations written in Haskell (see
"Network.Gitit.Interface")
.
* conversion of TeX math to MathML for display in
web browsers
.
* syntax highlighting of source code
files and code snippets
.
* Atom feeds (site-wide and per-page)
.
* a library, "Network.Gitit", that makes it simple
to include a gitit wiki in any happstack application
.
You can see a running demo at <http://gitit.johnmacfarlane.net>.
.
For usage information: @gitit --help@
category: Network
license: GPL
license-file: LICENSE
author: John MacFarlane
maintainer: [email protected]
bug-reports: http://code.google.com/p/gitit/issues/list
homepage: http://github.com/jgm/gitit/tree/master
stability: experimental
data-files: data/static/css/screen.css, data/static/css/print.css,
data/static/css/ie.css, data/static/css/hk-pyg.css,
data/static/css/reset-fonts-grids.css, data/static/css/base-min.css,
data/static/css/custom.css,
data/static/img/gitit-dog.png,
data/static/img/icons/folder.png, data/static/img/icons/page.png,
data/static/js/dragdiff.js, data/static/js/jquery.min.js,
data/static/js/uploadForm.js, data/static/js/jquery-ui.packed.js,
data/static/js/jquery.hotkeys-0.7.9.min.js,
data/static/js/preview.js, data/static/js/search.js,
data/static/js/MathMLinHTML.js,
data/static/robots.txt,
data/post-update, data/FrontPage.page, data/Help.page,
data/markup.Markdown, data/markup.RST,
data/markup.HTML, data/markup.LaTeX,
data/default.conf,
data/templates/page.st, data/templates/content.st,
data/templates/userbox.st, data/templates/footer.st,
data/templates/logo.st, data/templates/markuphelp.st,
data/templates/pagetools.st, data/templates/sitenav.st,
data/templates/messages.st, data/templates/listitem.st,
data/templates/expire.st, data/templates/getuser.st,
data/markupHelp/Markdown, data/markupHelp/Markdown+LHS,
data/markupHelp/RST, data/markupHelp/RST+LHS,
data/markupHelp/LaTeX, data/markupHelp/LaTeX+LHS,
data/markupHelp/HTML,
plugins/CapitalizeEmphasis.hs,
plugins/Dot.hs,
plugins/ImgTex.hs,
plugins/Interwiki.hs,
plugins/Deprofanizer.hs,
plugins/WebArchiver.hs,
plugins/ShowUser.hs,
plugins/Signature.hs,
CHANGES, README.markdown, YUI-LICENSE, BLUETRIP-LICENSE, TANGOICONS
Flag plugins
description: Compile in support for plugins. This will increase the size of
the executable and the memory it uses, so those who will not need
plugins should disable this flag.
default: True
Library
hs-source-dirs: .
exposed-modules: Network.Gitit, Network.Gitit.ContentTransformer,
Network.Gitit.Types, Network.Gitit.Framework,
Network.Gitit.Initialize, Network.Gitit.Config
other-modules: Network.Gitit.Layout, Network.Gitit.Cache, Network.Gitit.State,
Paths_gitit, Network.Gitit.Server, Network.Gitit.Export,
Network.Gitit.Util, Network.Gitit.Handlers, Network.Gitit.Plugins,
Network.Gitit.Authentication, Network.Gitit.Page, Network.Gitit.Feed
if flag(plugins)
exposed-modules: Network.Gitit.Interface
build-depends: base >= 3, pandoc >= 1.1, filepath
ghc-options: -Wall
ghc-prof-options: -auto-all -caf-all
Executable gitit
hs-source-dirs: .
main-is: gitit.hs
build-depends: base >=3 && < 5, parsec < 3, pretty, xhtml, containers,
pandoc >= 1.2, process, filepath, directory, mtl, cgi,
network, old-time, highlighting-kate, bytestring,
utf8-string, SHA > 1, HTTP, HStringTemplate, random,
network >= 2.1.0.0, recaptcha >= 0.1, filestore >= 0.3.2,
datetime, zlib, url, happstack-server >= 0.3.3 && < 0.4,
happstack-util >= 0.3.2 && < 0.4, xml >= 1.3.4,
hslogger >= 1 && < 1.1, ConfigFile >= 1, feed >= 0.3.6,
cautious-file >= 0.1.5 && < 0.2, texmath
if impl(ghc >= 6.10)
build-depends: base >= 4, syb
if flag(plugins)
build-depends: ghc, ghc-paths
cpp-options: -D_PLUGINS
ghc-options: -Wall -threaded
ghc-prof-options: -auto-all -caf-all
Executable expireGititCache
hs-source-dirs: .
main-is: expireGititCache.hs
build-depends: base >=3 && < 5, HTTP, url, filepath
if impl(ghc >= 6.10)
build-depends: base >= 4, syb
ghc-options: -Wall