diff --git a/.gitignore b/.gitignore index ca35be0..ee9f118 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,3 @@ +.DS_Store _site +.project diff --git a/README.md b/README.md new file mode 100644 index 0000000..40d3d02 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# jclouds + +This repository supports the GitHub Pages site for jclouds. See and read more at [http://www.jclouds.org](http://www.jclouds.org). \ No newline at end of file diff --git a/README.txt b/README.txt deleted file mode 100644 index 8c8617f..0000000 --- a/README.txt +++ /dev/null @@ -1 +0,0 @@ -GitHub Pages site for jclouds. See http://www.jclouds.org \ No newline at end of file diff --git a/_config.yml b/_config.yml index decb852..732a51d 100644 --- a/_config.yml +++ b/_config.yml @@ -1 +1,3 @@ markdown: rdiscount +pygments: true +permalink: pretty \ No newline at end of file diff --git a/_includes/footer.md b/_includes/footer.md new file mode 100644 index 0000000..1c9bd46 --- /dev/null +++ b/_includes/footer.md @@ -0,0 +1,5 @@ +Copyright © 2011 jclouds, Inc. + +jclouds is licensed under [the Apache License, Version 2.0](https://github.com/jclouds/jclouds/blob/master/resources/LICENSE.txt). + +The jclouds logo is trademark of jclouds, Inc. \ No newline at end of file diff --git a/_includes/menu.md b/_includes/menu.md new file mode 100644 index 0000000..1d1a2ae --- /dev/null +++ b/_includes/menu.md @@ -0,0 +1,6 @@ +* [Getting Started](/documentation/gettingstarted/) +* [Documentation](/documentation/) +* [Community](/documentation/community/) +* [Development](/documentation/devguides/) +* [News](/news/) +* [Contact](http://groups.google.com/group/jclouds) diff --git a/_includes/sidebar.html b/_includes/sidebar.html deleted file mode 100644 index e53e6a8..0000000 --- a/_includes/sidebar.html +++ /dev/null @@ -1,126 +0,0 @@ -
Name | -Description | -Default | -Example | -
---|---|---|---|
*providerName* | -The camel case name for the service. Will be used in class names, so should not contain spaces or other invalid characters. | -- | Tweeter | -
*artifactId* | -The name of the project. Will be prefixed with `jclouds-`, and will also be the name of the generated project directory, so should not contain invalid characters. | -- | tweeter | -
*providerEndpoint* | -The URL at which the service can be accessed. | -- | http://tweeter.com/api | -
*providerIdentity* | -What does this provider call an identity? | -- | user, account, apikey | -
*providerCredential* | -What does this provider call a credential, associated with above? | -- | password, secret, key | -
*providerApiVersion* | -What version of the rest api are you working on? | -- | 1.0, 2001-11-01 | -
*groupId* | -The Maven project groupId. | -org.jclouds | -- |
*author* | -The author of the project. | -Adrian Cole | -- |
*package* | -The Java base package of the project's classes. | -_same as_ `groupId`.`artifactId` | -- |
*version* | -The Maven project version. | -1.0-SNAPSHOT | -- |
file | -Reason | -
---|---|
src/test/resources/log4j.xml | -adding compute logger | -
src/main/java/org/jclouds/`artifactId`/`providerName`ContextBuilder | -converts to build a ComputeServiceContext instead of a RestContext | -
src/main/java/org/jclouds/`artifactId`/`providerName`ContextFactory | -converts to build a ComputeServiceContext instead of a RestContext | -
log | -path | -purpose | -
---|---|---|
test log | -target/surefire-reports/TestSuite.txt | -shows you the line in the test code that failed and specific reason | -
wire log | -target/test-data/jclouds-wire.log | -shows you all http packets sent to the service and their responses | -
jclouds log | -target/test-data/jclouds.log | -shows you which java methods created which packets and also other debug info | -
ssh log | -target/test-data/jclouds-ssh.log | -shows you connections to other machines | -
abstraction log | -target/test-data/jclouds-_compute or blobstore_.log | -shows you high-level commands, like what node is being deployed at what time | -
Name | +Description | +Default | +Example | +
---|---|---|---|
*providerName* | +The camel case name for the service. This will be used in class names, so it should not contain spaces or other invalid characters. | ++ | Tweeter | +
*artifactId* | +The name of the project. It will be prefixed with `jclouds-` and will also be the name of the generated project directory. It should not contain invalid characters. | ++ | tweeter | +
*providerEndpoint* | +The URL at which the service can be accessed. | ++ | http://tweeter.com/api | +
*providerIdentity* | +What does this provider call an identity? | ++ | user, account, apikey | +
*providerCredential* | +This is associated with the providerIdentity. What does this provider call a credential? | ++ | password, secret, key | +
*providerApiVersion* | +What version of the REST API are you working on? | ++ | 1.0, 2001-11-01 | +
*groupId* | +The Maven project groupId. | +org.jclouds | ++ |
*author* | +The author of the project. | +Adrian Cole | ++ |
*package* | +The Java base package of the project's classes. | +groupId.artifactId | ++ |
*version* | +The Maven project version. | +1.0-SNAPSHOT | ++ |
log | +path | +purpose | +
---|---|---|
test log | +target/surefire-reports/TestSuite.txt | +shows you the line in the test code that failed and specific reason | +
wire log | +target/test-data/jclouds-wire.log | +shows you all http packets sent to the service and their responses | +
jclouds log | +target/test-data/jclouds.log | +shows you which java methods created which packets and also other debug info | +
ssh log | +target/test-data/jclouds-ssh.log | +shows you connections to other machines | +
abstraction log | +target/test-data/jclouds-_compute or blobstore_.log | +shows you high-level commands, like what node is being deployed at what time | +