diff --git a/autodoc-params/templates/api-index.html b/autodoc-params/templates/api-index.html new file mode 100644 index 00000000..6d6f3f52 --- /dev/null +++ b/autodoc-params/templates/api-index.html @@ -0,0 +1,27 @@ +

Index of Public Functions and Variables in no project name specified

+ +
+Shortcuts:
+A B C D + E F G H + I J K L + M +
+N O P Q + R S T U + V W X Y + Z +
+Other +
+
+ +
+

A

+
+ name
+  
+
+ diff --git a/autodoc-params/templates/layout.html b/autodoc-params/templates/layout.html new file mode 100644 index 00000000..ef30ac09 --- /dev/null +++ b/autodoc-params/templates/layout.html @@ -0,0 +1,53 @@ + + + Overview + + + + + + + + + + + + + +
+ +
+
+
+
+
+ +
+
+
+
+
+ +
+
Logo & site design by Tom Hickey.
+ Clojure auto-documentation system by Tom Faulhaber.
+
+ + + diff --git a/autodoc-params/templates/local-toc.html b/autodoc-params/templates/local-toc.html new file mode 100644 index 00000000..d4185af8 --- /dev/null +++ b/autodoc-params/templates/local-toc.html @@ -0,0 +1,10 @@ +
+

Table of Contents

+
+ Section name +
+ Index entry +
+
+
+
diff --git a/autodoc-params/templates/master-toc.html b/autodoc-params/templates/master-toc.html new file mode 100644 index 00000000..b33b1574 --- /dev/null +++ b/autodoc-params/templates/master-toc.html @@ -0,0 +1,11 @@ +
+ diff --git a/autodoc-params/templates/namespace-api.html b/autodoc-params/templates/namespace-api.html new file mode 100644 index 00000000..cce46b2d --- /dev/null +++ b/autodoc-params/templates/namespace-api.html @@ -0,0 +1,13 @@ +

API for my-namespace

+
docstr here
+
+
+
+

Var-name

+ Type goes here (var, multimethod, etc.)
+
Arglists go here
+
docstr here
+ Source +
+
+ diff --git a/autodoc-params/templates/overview.html b/autodoc-params/templates/overview.html new file mode 100644 index 00000000..0a6cbd45 --- /dev/null +++ b/autodoc-params/templates/overview.html @@ -0,0 +1,19 @@ +

Overview of the Project API

+
+
+
+
+
+
+

Namespace

+ Detailed API documentation
+
docstr here
+ var-name
+
Variables and functions in + subspace name: + + var-name + +
+
+
diff --git a/autodoc-params/templates/sub-namespace-api.html b/autodoc-params/templates/sub-namespace-api.html new file mode 100644 index 00000000..6fefa56f --- /dev/null +++ b/autodoc-params/templates/sub-namespace-api.html @@ -0,0 +1,10 @@ +

Sub-namespace

+
docstr here
+
+
+

Var-name

+ Type goes here (var, multimethod, etc.)
+
Arglists go here
+
docstr here
+ Source +
diff --git a/project.clj b/project.clj index 8e5fad8b..1d4335f4 100644 --- a/project.clj +++ b/project.clj @@ -5,4 +5,17 @@ [ring/ring-devel "0.2.0-SNAPSHOT"] [ring/ring-httpcore-adapter "0.2.0-SNAPSHOT"] [ring/ring-jetty-adapter "0.2.0-SNAPSHOT"] - [ring/ring-servlet "0.2.0-SNAPSHOT"]]) + [ring/ring-servlet "0.2.0-SNAPSHOT"]] + :dev-dependencies [[autodoc "0.7.0"]] + :autodoc + {:name "Ring" + :description "A Clojure web applications library" + :copyright "Copyright 2009-2010 Mark McGranaghan" + :root "." + :source-path "" + :web-src-dir "http://github.com/mmcgrana/ring/blob/" + :web-home "http://mmcgrana.github.com/ring/" + :output-path "/Users/mmcgrana/Desktop/ring-autodoc" + :namespaces-to-document ["ring"] + :trim-prefix "ring." + :load-except-list [#"/example/" #"/test/" #"project\.clj"]})