mirror of https://gitee.com/bigwinds/arangodb
intermediate
This commit is contained in:
parent
b7fbe09919
commit
740834d79f
|
@ -1,79 +0,0 @@
|
|||
table-view
|
||||
{
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background: #1d1d1d;
|
||||
font-family: "Lucida Grande", Verdana, sans-serif;
|
||||
font-size: 100%;
|
||||
}
|
||||
|
||||
ul#sliding-navigation
|
||||
{
|
||||
list-style: none;
|
||||
font-size: .75em;
|
||||
margin: 30px 0;
|
||||
}
|
||||
|
||||
ul#sliding-navigation li.sliding-element h3,
|
||||
ul#sliding-navigation li.sliding-element a
|
||||
{
|
||||
display: block;
|
||||
width: 150px;
|
||||
padding: 5px 15px;
|
||||
margin: 0;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
ul#sliding-navigation li.sliding-element h3
|
||||
{
|
||||
color: #fff;
|
||||
background: #c0c0c0;
|
||||
border: 1px solid #1a1a1a;
|
||||
font-weight: normal;
|
||||
-moz-border-radius:7px;
|
||||
-khtml-border-radius:7px;
|
||||
}
|
||||
|
||||
ul#sliding-navigation li.sliding-element a
|
||||
{
|
||||
color: #999;
|
||||
background: #222;
|
||||
border: 1px solid #1a1a1a;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
ul#sliding-navigation li.sliding-element a:hover { color: #ffff66; }
|
||||
|
||||
h2
|
||||
{
|
||||
color: #999;
|
||||
margin-bottom: 0;
|
||||
margin-left:13px;
|
||||
background:url(navigation.jpg) no-repeat;
|
||||
height:40px;
|
||||
}
|
||||
|
||||
h2 span
|
||||
{
|
||||
display: none;
|
||||
}
|
||||
|
||||
p
|
||||
{
|
||||
color: #ffff66;
|
||||
margin-top: .5em;
|
||||
font-size: .75em;
|
||||
padding-left:15px;
|
||||
}
|
||||
|
||||
#navigation-block {
|
||||
position:relative;
|
||||
top:200px;
|
||||
left:200px;
|
||||
}
|
||||
|
||||
#hide {
|
||||
position:absolute;
|
||||
top:30px;
|
||||
left:-190px;
|
||||
}
|
|
@ -25,6 +25,8 @@
|
|||
/// @author Copyright 2011, triAGENS GmbH, Cologne, Germany
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
var time = SYS_TIME;
|
||||
|
||||
// -----------------------------------------------------------------------------
|
||||
// --SECTION-- public functions
|
||||
// -----------------------------------------------------------------------------
|
||||
|
|
|
@ -142,6 +142,25 @@ defineSystemAction("collection/info",
|
|||
}
|
||||
);
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @brief returns information about all documents
|
||||
///
|
||||
/// @REST{GET /_system/documents}
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
defineSystemAction("documents",
|
||||
function (req, res) {
|
||||
queryReferences(req, res, req.collection.all());
|
||||
},
|
||||
{
|
||||
parameters : {
|
||||
collection : "collection-identifier",
|
||||
blocksize : "number",
|
||||
page : "number"
|
||||
}
|
||||
}
|
||||
);
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @}
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
|
Loading…
Reference in New Issue