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
|
{
"name": "GentooBrowse",
"headers": [ "xsltStreamSerializer.h", "icespider-routes-base.h" ],
"routes": {
"news": {
"path": "/news",
"bases": [ "common" ],
"mutators": [ "addUser" ],
"outputSerializers": {
"text/html": {
"serializer": "IceSpider.XsltStreamSerializer",
"params": [ "\"xslt/news.xslt\"" ]
},
"application/atom+xml": {
"serializer": "IceSpider.XsltStreamSerializer",
"params": [ "\"xslt/news-atom.xslt\"" ]
}
},
"operations": {
"articles": {
"operation": "Gentoo.Portage.getNewsRecent"
}
},
"type": "GentooBrowse.NewsRecent",
"params": {
"items": {
"default": "10"
}
}
},
"newsitem": {
"path": "/news/{newsid}",
"bases": [ "common" ],
"mutators": [ "addUser" ],
"outputSerializers": {
"text/html": {
"serializer": "IceSpider.XsltStreamSerializer",
"params": [ "\"xslt/newsitem.xslt\"" ]
}
},
"operations": {
"article": {
"operation": "Gentoo.Portage.getNewsItem"
}
},
"type": "GentooBrowse.NewsArticle"
}
},
"slices": [
"news.ice"
]
}
|