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