]> gitweb @ CieloNegro.org - Rakka.git/blob - Rakka.cabal
implemented /checkAuth
[Rakka.git] / Rakka.cabal
1 Name:          Rakka
2 Synopsis:      Wiki engine with Subversion backend
3 Description:
4     FIXME: write this
5 Version:       0.1
6 License:       PublicDomain
7 Author:        PHO <phonohawk at ps dot sakura dot ne dot jp>
8 Maintainer:    PHO <phonohawk at ps dot sakura dot ne dot jp>
9 Stability:     experimental
10 Homepage:      http://ccm.sherry.jp/Rakka/
11 Category:      Web
12 Tested-With:   GHC == 6.6.1
13 Cabal-Version: >= 1.2
14
15 Data-Files:
16     defaultpages/Help/SampleImage/Large.xml
17     defaultpages/Help/SampleImage/Small.xml
18     defaultPages/Help/Syntax.xml
19     defaultPages/MainPage.xml
20     defaultPages/PageTitle.xml
21     defaultPages/SideBar/Left.xml
22     defaultPages/SideBar/Right.xml
23     defaultPages/StyleSheet/Default.xml
24     schemas/rakka-page-1.0.rng
25
26 Extra-Source-Files:
27     Rakka.buildinfo.in
28     configure
29     configure.ac
30     js/Makefile
31     js/base.js
32     js/base64.js
33     js/editPage.js
34     js/jquery-1.2.1.js
35     js/jquery-dom.js
36     js/localFile.js
37     js/screen.js
38
39 Flag build-test-suite
40     Description: Build the test suite.
41     Default:     False
42
43 Executable rakka
44     Build-Depends:
45         Crypto, FileManip, HUnit, HsHyperEstraier, HsSVN, Lucu, base,
46         bytestring, containers, directory, utf8-string, filepath,
47         hslogger, hxt, magic, mtl, network, parsec, stm, time, unix,
48         zlib
49     Main-Is:
50         Main.hs
51     Other-Modules:
52         Rakka.Authorization
53         Rakka.Environment
54         Rakka.Page
55         Rakka.Resource
56         Rakka.Resource.CheckAuth
57         Rakka.Resource.Index
58         Rakka.Resource.JavaScript
59         Rakka.Resource.Object
60         Rakka.Resource.PageEntity
61         Rakka.Resource.Render
62         Rakka.Storage
63         Rakka.Storage.DefaultPage
64         Rakka.Storage.Repos
65         Rakka.Storage.Types
66         Rakka.Storage.Impl
67         Rakka.SystemConfig
68         Rakka.Utils
69         Rakka.Validation
70         Rakka.W3CDateTime
71         Rakka.Wiki
72         Rakka.Wiki.Interpreter
73         Rakka.Wiki.Interpreter.Base
74         Rakka.Wiki.Interpreter.Image
75         Rakka.Wiki.Interpreter.PageList
76         Rakka.Wiki.Interpreter.Trackback
77         Rakka.Wiki.Interpreter.Outline
78         Rakka.Wiki.Engine
79         Rakka.Wiki.Formatter
80         Rakka.Wiki.Parser
81     Extensions:
82         Arrows, ExistentialQuantification, ScopedTypeVariables
83     GHC-Options:
84         -Wall -XDeriveDataTypeable
85
86 Executable RakkaUnitTest
87     if flag(build-test-suite)
88         Buildable: True
89     else
90         Buildable: False
91     Main-Is:
92         RakkaUnitTest.hs
93     Hs-Source-Dirs:
94         ., tests
95     Other-Modules:
96         WikiParserTest
97     Extensions:
98         Arrows
99     GHC-Options:
100         -Wall -Werror