summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--build.xml4
-rw-r--r--docs/00_index.mkd1
-rw-r--r--docs/02_rpc.mkd5
-rw-r--r--docs/04_releases.mkd1
-rw-r--r--docs/05_roadmap.mkd30
5 files changed, 37 insertions, 4 deletions
diff --git a/build.xml b/build.xml
index 4a5c8867..d6dcbf08 100644
--- a/build.xml
+++ b/build.xml
@@ -258,7 +258,7 @@
<arg value="index=overview" />
<arg value="--alias" />
- <arg value="properties=gitblit.properties" />
+ <arg value="properties=settings" />
<arg value="--substitute" />
<arg value="%VERSION%=${gb.version}" />
@@ -578,7 +578,7 @@
<arg value="index=overview" />
<arg value="--alias" />
- <arg value="properties=gitblit.properties" />
+ <arg value="properties=settings" />
<arg value="--substitute" />
<arg value="%VERSION%=${gb.version}" />
diff --git a/docs/00_index.mkd b/docs/00_index.mkd
index 4aea0d73..09850752 100644
--- a/docs/00_index.mkd
+++ b/docs/00_index.mkd
@@ -36,6 +36,7 @@ Gitblit requires a Java 6 Runtime Environment (JRE) or a Java 6 Development Kit
- improved: summary page performance by caching metric calculations (issue 25)
- added: authenticated JSON RPC mechanism
**New:** *web.enableRpcServlet = true*
+ **New:** *web.enableRpcManagement = false*
**New:** *web.enableRpcAdministration = false*
- added: reusable JSON RPC client class
- added: Gitblit Manager (Java/Swing Application) for remote administration of a Gitblit server.
diff --git a/docs/02_rpc.mkd b/docs/02_rpc.mkd
index 6384862a..13bf8eff 100644
--- a/docs/02_rpc.mkd
+++ b/docs/02_rpc.mkd
@@ -28,12 +28,13 @@ The Gitblit RPC mechanism, like the Gitblit JGit servlet, syndication/feed servl
<tr><td>DELETE_USER</td><td>user name</td><td><em>admin</em></td><td>-</td><td>-</td></tr>
<tr><td>LIST_REPOSITORY_MEMBERS</td><td>repository name</td><td><em>admin</em></td><td>-</td><td>List&lt;String&gt;</td></tr>
<tr><td>SET_REPOSITORY_MEMBERS</td><td>repository name</td><td><em>admin</em></td><td>List&lt;String&gt;</td><td>-</td></tr>
+<tr><td>LIST_SETTINGS</td><td>-</td><td><em>admin</em></td><td>-</td><td>ServerSettings (management keys)</td></tr>
+<tr><td colspan='5'><em>web.enableRpcAdministration=true</em></td></tr>
<tr><td>LIST_FEDERATION_REGISTRATIONS</td><td>-</td><td><em>admin</em></td><td>-</td><td>List&lt;FederationModel&gt;</td></tr>
<tr><td>LIST_FEDERATION_RESULTS</td><td>-</td><td><em>admin</em></td><td>-</td><td>List&lt;FederationModel&gt;</td></tr>
<tr><td>LIST_FEDERATION_PROPOSALS</td><td>-</td><td><em>admin</em></td><td>-</td><td>List&lt;FederationProposal&gt;</td></tr>
<tr><td>LIST_FEDERATION_SETS</td><td>-</td><td><em>admin</em></td><td>-</td><td>List&lt;FederationSet&gt;</td></tr>
-<tr><td colspan='5'><em>web.enableRpcAdministration=true</em></td></tr>
-<tr><td>LIST_SETTINGS</td><td>-</td><td><em>admin</em></td><td>-</td><td>ServerSettings (see example below)</td></tr>
+<tr><td>LIST_SETTINGS</td><td>-</td><td><em>admin</em></td><td>-</td><td>ServerSettings (all keys)</td></tr>
<tr><td>EDIT_SETTINGS</td><td>-</td><td><em>admin</em></td><td>Map&lt;String, String&gt;</td><td>-</td></tr>
<tr><td>LIST_STATUS</td><td>-</td><td><em>admin</em></td><td>-</td><td>ServerStatus (see example below)</td></tr>
</table>
diff --git a/docs/04_releases.mkd b/docs/04_releases.mkd
index ac097781..50612e61 100644
--- a/docs/04_releases.mkd
+++ b/docs/04_releases.mkd
@@ -10,6 +10,7 @@
- improved: summary page performance by caching metric calculations (issue 25)
- added: authenticated JSON RPC mechanism
**New:** *web.enableRpcServlet = true*
+ **New:** *web.enableRpcManagement = false*
**New:** *web.enableRpcAdministration = false*
- added: reusable JSON RPC client class
- added: Gitblit Manager (Java/Swing Application) for remote administration of a Gitblit server.
diff --git a/docs/05_roadmap.mkd b/docs/05_roadmap.mkd
new file mode 100644
index 00000000..65ef8aef
--- /dev/null
+++ b/docs/05_roadmap.mkd
@@ -0,0 +1,30 @@
+## Roadmap
+
+This is not exactly a formal roadmap but it is a priority list of what might be implemented in future releases.
+This list is volatile.
+
+### TODO (high priority)
+
+* Eclipse plugin to browse and clone repositories
+* Support federation RPCs in Gitblit Manager
+
+### TODO (medium priority)
+
+* Editable settings page in GO/WAR
+* Tag repositories and offer views of repositories by tag (issue 27)
+* Aggregate RSS feeds by tag or subfolder
+* Investigate create-on-push possibility
+* Create Repository by Cloning feature (issue 5)
+ * optional scheduled pulls
+ * optional automatic push to origin/remotes?
+ * optional manual push to origin/remotes?
+* Lucene integration with multi-repository search (issue 16)
+
+### TODO (low priority)
+
+* Blame coloring by author (issue 2)
+* View binary files in blob page (issue 6)
+
+### IDEAS
+
+* Stronger ticgit integration (issue 8)