]> gitweb @ CieloNegro.org - Rakka.git/blob - Rakka.cabal
Rakka.Resource.Users
[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.Resource.Users
80         Rakka.Storage
81         Rakka.Storage.DefaultPage
82         Rakka.Storage.Repos
83         Rakka.Storage.Types
84         Rakka.Storage.Impl
85         Rakka.SystemConfig
86         Rakka.TrackBack
87         Rakka.Utils
88         Rakka.Validation
89         Rakka.W3CDateTime
90         Rakka.Wiki
91         Rakka.Wiki.Interpreter
92         Rakka.Wiki.Interpreter.Base
93         Rakka.Wiki.Interpreter.Image
94         Rakka.Wiki.Interpreter.PageList
95         Rakka.Wiki.Interpreter.Trackback
96         Rakka.Wiki.Interpreter.Outline
97         Rakka.Wiki.Engine
98         Rakka.Wiki.Formatter
99         Rakka.Wiki.Parser
100     Extensions:
101         Arrows, ExistentialQuantification, ScopedTypeVariables, DeriveDataTypeable, FlexibleInstances
102     GHC-Options:
103         -Wall -threaded
104
105 Executable RakkaUnitTest
106     if flag(build-test-suite)
107         Buildable: True
108     else
109         Buildable: False
110     Main-Is:
111         RakkaUnitTest.hs
112     Hs-Source-Dirs:
113         ., tests
114     Other-Modules:
115         WikiParserTest
116     Extensions:
117         Arrows
118     GHC-Options:
119         -Wall -Werror