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