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
|
;; -*- mode: scheme; -*-
((title . "store bookmarks")
(conkeror . (a (@ (href "http://conkeror.org")) "Conkeror"))
(chicken . (a (@ (href "http://call-cc.org")) "CHICKEN scheme"))
(chicken-sqlite . (a (@ (href "http://wiki.call-cc.org/eggref/4/sqlite3")) "sqlite3"))
(tar-gz
. "http://code.ryuslash.org/cgit.cgi/markam/snapshot/markam-0.2.0.tar.gz")
(zip
. "http://code.ryuslash.org/cgit.cgi/markam/snapshot/markam-0.2.0.zip")
(dev-tar-gz
. "http://code.ryuslash.org/cgit.cgi/markam/snapshot/markam-master.tar.gz")
(dev-zip
. "http://code.ryuslash.org/cgit.cgi/markam/snapshot/markam-master.zip"))
`((div (@ (class "hero-unit"))
(p "Store bookmarks without being stuck to a single browser.")
(div (@ (class "row"))
(div (@ (class "span3 centered"))
(h3 "Version")
"0.2.0")
(div (@ (class "span4 centered"))
(h3 "Language")
,($ 'chicken))
(div (@ (class "span3 centered"))
(h3 "License")
"GPLv3")))
(div (@ (class "row"))
(div (@ (class "span6"))
(h2 "Features")
(ul
(li "Save and tag bookmarks.")
(li "Search bookmarks by title and tags.")
(li "Use it directly from " ,($ 'conkeror) ":"
(ul
(li "Save the current website or a link on the "
"current page.")
(li "Search through saved bookmarks and open one "
"directly, either in the current window or a new "
"one.")))))
(div (@ (class "span6"))
(h2 "Dependencies")
(dl
(dt ,($ 'chicken))
(dd "Markam has been developed with Version 4.8.0.1, but "
"if it doesn't work with your version of "
,($ 'chicken) ", please let me know. It also requires "
"the " ,($ 'chicken-sqlite) " egg.")
(dt ,($ 'conkeror) " (optional)")
(dd "The latest git version is required. Though this is "
"only relevant if you want to use markam with "
"conkeror."))))
(h2 "Download")
(div (@ (class "row"))
(div (@ (class "span6"))
(h3 "Latest version"))
(div (@ (class "span6"))
(h3 "Development version")))
(div (@ (class "row"))
(div (@ (class "span6"))
(a (@ (href ,($ 'tar-gz))
(class "btn btn-large btn-block"))
"Download 0.2.0 .tar.gz")
(a (@ (href ,($ 'zip))
(class "btn btn-large btn-block"))
"Download 0.2.0 .zip"))
(div (@ (class "span6"))
(a (@ (href ,($ 'dev-tar-gz))
(class "btn btn-large btn-block"))
"Download .tar.gz")
(a (@ (href ,($ 'dev-zip))
(class "btn btn-large btn-block"))
"Download .zip")))
(hr)
(h2 "More...")
(p "For more information please read the README."))
|