mirror of https://gitee.com/bigwinds/arangodb
Show License and Version for each of the apps
This commit is contained in:
parent
3b1c5b640e
commit
ab0885f0ef
|
@ -10,7 +10,7 @@
|
||||||
<h3>
|
<h3>
|
||||||
<%= attributes.name %>
|
<%= attributes.name %>
|
||||||
<span class="license"><%= attributes.license %></span>
|
<span class="license"><%= attributes.license %></span>
|
||||||
<span class="version"><%= attributes.version %></span>
|
<span class="version"><%= attributes.app.split(':').pop() %></span>
|
||||||
</h3>
|
</h3>
|
||||||
<p class="description"><%= attributes.description %></p>
|
<p class="description"><%= attributes.description %></p>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
"description": "ArangoDB Admin Web Interface",
|
"description": "ArangoDB Admin Web Interface",
|
||||||
"author": "ArangoDB GmbH",
|
"author": "ArangoDB GmbH",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
|
"license": "Apache License, Version 2.0",
|
||||||
"isSystem": true,
|
"isSystem": true,
|
||||||
|
|
||||||
"contributors": [
|
"contributors": [
|
||||||
|
|
|
@ -1,7 +1,9 @@
|
||||||
{
|
{
|
||||||
"name": "cerberus",
|
"name": "cerberus",
|
||||||
"version": "0.0.1",
|
"description": "Password Manager",
|
||||||
"author": "ArangoDB GmbH",
|
"author": "ArangoDB GmbH",
|
||||||
|
"version": "0.0.1",
|
||||||
|
"license": "Apache License, Version 2.0",
|
||||||
"isSystem": true,
|
"isSystem": true,
|
||||||
|
|
||||||
"contributors": [
|
"contributors": [
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
"description": "ArangoDB Graph Module",
|
"description": "ArangoDB Graph Module",
|
||||||
"author": "ArangoDB GmbH",
|
"author": "ArangoDB GmbH",
|
||||||
"version": "0.1",
|
"version": "0.1",
|
||||||
|
"license": "Apache License, Version 2.0",
|
||||||
"isSystem": true,
|
"isSystem": true,
|
||||||
|
|
||||||
"contributors": [
|
"contributors": [
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
{
|
{
|
||||||
"name": "sessions",
|
"name": "sessions",
|
||||||
|
"description": "Session storage for Foxx.",
|
||||||
"author": "ArangoDB GmbH",
|
"author": "ArangoDB GmbH",
|
||||||
"version": "0.1",
|
"version": "0.1",
|
||||||
|
"license": "Apache License, Version 2.0",
|
||||||
"isSystem": true,
|
"isSystem": true,
|
||||||
"description": "Session storage for Foxx.",
|
|
||||||
|
|
||||||
"contributors": [
|
"contributors": [
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
{
|
{
|
||||||
"name": "simple-auth",
|
"name": "simple-auth",
|
||||||
|
"description": "Simple password-based authentication for Foxx.",
|
||||||
"author": "ArangoDB GmbH",
|
"author": "ArangoDB GmbH",
|
||||||
"version": "0.1",
|
"version": "0.1",
|
||||||
|
"license": "Apache License, Version 2.0",
|
||||||
"isSystem": true,
|
"isSystem": true,
|
||||||
"description": "Simple password-based authentication for Foxx.",
|
|
||||||
|
|
||||||
"contributors": [
|
"contributors": [
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
{
|
{
|
||||||
"name": "users",
|
"name": "users",
|
||||||
|
"description": "Username-based user storage for Foxx.",
|
||||||
"author": "ArangoDB GmbH",
|
"author": "ArangoDB GmbH",
|
||||||
"version": "0.1",
|
"version": "0.1",
|
||||||
|
"license": "Apache License, Version 2.0",
|
||||||
"isSystem": true,
|
"isSystem": true,
|
||||||
"description": "Username-based user storage for Foxx.",
|
|
||||||
|
|
||||||
"contributors": [
|
"contributors": [
|
||||||
{
|
{
|
||||||
|
|
|
@ -665,6 +665,7 @@ function mountAalApp (app, mount, options) {
|
||||||
app: app._id,
|
app: app._id,
|
||||||
name: app._name,
|
name: app._name,
|
||||||
description: app._manifest.description,
|
description: app._manifest.description,
|
||||||
|
license: app._manifest.license,
|
||||||
author: app._manifest.author,
|
author: app._manifest.author,
|
||||||
contributors: app._manifest.contributors,
|
contributors: app._manifest.contributors,
|
||||||
mount: mount,
|
mount: mount,
|
||||||
|
|
Loading…
Reference in New Issue