From 0e33755e31a24e092f5941fb98b96a37561103c7 Mon Sep 17 00:00:00 2001 From: Olivier Lamy Date: Mon, 24 Sep 2012 11:47:18 +0000 Subject: [PATCH] add files git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1389308 13f79535-47bb-0310-9956-ffa450edef68 --- archiva-docs/src/site/resources/js/index.js | 26 +++++ archiva-docs/src/site/xdoc/index.xml | 122 ++++++++++++++++++++ 2 files changed, 148 insertions(+) create mode 100644 archiva-docs/src/site/resources/js/index.js create mode 100644 archiva-docs/src/site/xdoc/index.xml diff --git a/archiva-docs/src/site/resources/js/index.js b/archiva-docs/src/site/resources/js/index.js new file mode 100644 index 000000000..43a6db049 --- /dev/null +++ b/archiva-docs/src/site/resources/js/index.js @@ -0,0 +1,26 @@ +$(document).ready(function(){ + $('#screenshots-carousel').carousel({ + interval: 2500 + }) + + $('#carousel-prev' ).on("click", function(){ + $('#screenshots-carousel').carousel('prev'); + }) + + $('#carousel-next' ).on("click", function(){ + $('#screenshots-carousel').carousel('next'); + }) + + $("#openDialogRelease" ).on("click",function(){ + $('#dialogRelease').modal('show'); + }) + + $("#openDialogPreview" ).on("click",function(){ + $('#dialogPreview').modal('show'); + }) + + $("#carousel-main" ).addClass("features-preview"); + + +}); + diff --git a/archiva-docs/src/site/xdoc/index.xml b/archiva-docs/src/site/xdoc/index.xml new file mode 100644 index 000000000..141411bc2 --- /dev/null +++ b/archiva-docs/src/site/xdoc/index.xml @@ -0,0 +1,122 @@ + + + + + + User Guild + Brett Porter + + + + + + + + + + + + + +
+
+

+ Archiva is a build artifact repository manager for use with + build tools such as Maven, Jenkins, + Continuum, and ANT. +

+

+ With Archiva, you can share artifacts with other developers and manage the associated + security required, aggregate (proxy) content from remote artifact repositories, visualise + your artifact utilisation with search, browse and reporting, and perform routine + maintenance on your repositories. +

+

This documentation is based on the new UI only.

+ +

+ To get started with Archiva, you can read the following documentation: +

+

+
+
+ + +
+ + +
-- 2.39.5