Skip to content

Commit

Permalink
Add a conf file to show bob's relation set
Browse files Browse the repository at this point in the history
  • Loading branch information
LFDM committed Jun 3, 2014
1 parent 0a744f7 commit c13397e
Showing 1 changed file with 123 additions and 0 deletions.
123 changes: 123 additions & 0 deletions app/static/configs/bob_test.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,123 @@
{
"main" : {
"template" : "templates/main_with_sidepanel.html",
"retrievers" : {
"TreebankRetriever" : {
"resource" : "fakePerseids"
}
},
"plugins" : [
"text",
"search",
"morph",
"relation",
"depTree",
"history"
]
},

"navbar" : {
"template" : "templates/navbar1.html",
"search" : true,
"navigation" : true
},

"resources" : {
"fakePerseids" : {
"route" : "http://74.70.97.104:8085/xml_server/:doc",
"params" : [
"doc",
"s"
]
},

"fakeGold" : {
"route" : "http://74.70.97.104:8085/xml_server/gold:gold",
"params" : [
"gold",
"s"
]
},

"lexInvFusekiEndpoint" : {
"route" : "http://sosol.perseus.tufts.edu/fuseki/ds/query?format=json"
},

"morphologyService" : {
"route" : "http://services.perseids.org/bsp/morphologyservice/analysis/word?lang=lat&engine=morpheuslat"
}
},

"plugins" : {
"text" : {
"name" : "text",
"main" : true,
"template" : "templates/text2.html"
},

"depTree" : {
"name" : "depTree",
"main" : true,
"contextMenu" : true,
"contextMenuTemplate": "templates/arethusa.dep_tree/context_menu.html",
"template" : "templates/dep_tree.html"
},

"search" : {
"name" : "search",
"template" : "templates/search.html",
"regex" : true
},

"morph" : {
"name" : "morph",
"retrievers" : {
"BspMorphRetriever" : {
"resource" : "morphologyService"
}
},
"template" : "templates/morph3.html",
"contextMenu" : true,
"contextMenuTemplate": "templates/arethusa.morph/context_menu.html",
"lexicalInventory" : {
"retriever" : {
"LexicalInventoryRetriever" : {
"resource" : "lexInvFusekiEndpoint"
}
}
},
"matchAll" : true,
"fileUrl" : "./static/configs/morph/attributes.json"
},

"relation" : {
"name" : "relation",
"template" : "templates/relation.html",
"contextMenu" : true,
"contextMenuTemplate": "templates/arethusa.relation/context_menu.html",
"fileUrl" : "./static/configs/relation/bobs_relation.json"
},

"review" : {
"name" : "review",
"template" : "templates/arethusa.review/review.html",
"retrievers" : {
"TreebankRetriever" : {
"resource" : "fakeGold"
}
}
},

"history" : {
"name" : "history",
"listener" : true,
"maxSize" : 5,
"template" : "templates/history.html"
},

"comment" : {
"name" : "comment",
"template" : "templates/comment2.html"
}
}
}

0 comments on commit c13397e

Please sign in to comment.