1
0
Fork 0

Show License and Version for each of the apps

This commit is contained in:
Lucas Dohmen 2014-12-12 18:43:10 +01:00 committed by Michael Hackstein
parent 3b1c5b640e
commit ab0885f0ef
8 changed files with 13 additions and 5 deletions

View File

@ -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>

View File

@ -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": [

View File

@ -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": [

View File

@ -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": [

View File

@ -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": [
{ {

View File

@ -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": [
{ {

View File

@ -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": [
{ {

View File

@ -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,