You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@curator.apache.org by ra...@apache.org on 2013/03/27 02:11:29 UTC

[34/52] [abbrv] git commit: Hacked a fix for sub-project nav menu selection

Hacked a fix for sub-project nav menu selection


Project: http://git-wip-us.apache.org/repos/asf/incubator-curator/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-curator/commit/69c9d8ba
Tree: http://git-wip-us.apache.org/repos/asf/incubator-curator/tree/69c9d8ba
Diff: http://git-wip-us.apache.org/repos/asf/incubator-curator/diff/69c9d8ba

Branch: refs/heads/master
Commit: 69c9d8baeb06718c2d887127f0fed6354ebc99c2
Parents: 6c0be37
Author: Jordan Zimmerman <jo...@jordanzimmerman.com>
Authored: Sun Mar 10 17:27:56 2013 -0700
Committer: Jordan Zimmerman <jo...@jordanzimmerman.com>
Committed: Sun Mar 10 17:27:56 2013 -0700

----------------------------------------------------------------------
 curator-client/src/site/site.xml             |    5 +++++
 curator-examples/src/site/site.xml           |    5 +++++
 curator-framework/src/site/site.xml          |    5 +++++
 curator-recipes/src/site/site.xml            |    5 +++++
 curator-x-discovery-server/src/site/site.xml |    5 +++++
 curator-x-discovery/src/site/site.xml        |    5 +++++
 6 files changed, 30 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-curator/blob/69c9d8ba/curator-client/src/site/site.xml
----------------------------------------------------------------------
diff --git a/curator-client/src/site/site.xml b/curator-client/src/site/site.xml
index c095f34..d89650c 100644
--- a/curator-client/src/site/site.xml
+++ b/curator-client/src/site/site.xml
@@ -21,6 +21,11 @@
     <body>
         <head>
             <link rel="stylesheet" href="../css/site.css" />
+            <script type="text/javascript">
+                $(function(){
+                    $('a[title="Client"]').parent().addClass("active");
+                });
+            </script>
         </head>
     </body>
 </project>

http://git-wip-us.apache.org/repos/asf/incubator-curator/blob/69c9d8ba/curator-examples/src/site/site.xml
----------------------------------------------------------------------
diff --git a/curator-examples/src/site/site.xml b/curator-examples/src/site/site.xml
index c29bb39..b7533f1 100644
--- a/curator-examples/src/site/site.xml
+++ b/curator-examples/src/site/site.xml
@@ -21,6 +21,11 @@
     <body>
         <head>
             <link rel="stylesheet" href="../css/site.css" />
+            <script type="text/javascript">
+                $(function(){
+                    $('a[title="Examples"]').parent().addClass("active");
+                });
+            </script>
         </head>
     </body>
 </project>

http://git-wip-us.apache.org/repos/asf/incubator-curator/blob/69c9d8ba/curator-framework/src/site/site.xml
----------------------------------------------------------------------
diff --git a/curator-framework/src/site/site.xml b/curator-framework/src/site/site.xml
index af05364..70ea15a 100644
--- a/curator-framework/src/site/site.xml
+++ b/curator-framework/src/site/site.xml
@@ -21,6 +21,11 @@
     <body>
         <head>
             <link rel="stylesheet" href="../css/site.css" />
+            <script type="text/javascript">
+                $(function(){
+                    $('a[title="Framework"]').parent().addClass("active");
+                });
+            </script>
         </head>
     </body>
 </project>

http://git-wip-us.apache.org/repos/asf/incubator-curator/blob/69c9d8ba/curator-recipes/src/site/site.xml
----------------------------------------------------------------------
diff --git a/curator-recipes/src/site/site.xml b/curator-recipes/src/site/site.xml
index e32ee3e..19867f7 100644
--- a/curator-recipes/src/site/site.xml
+++ b/curator-recipes/src/site/site.xml
@@ -21,6 +21,11 @@
     <body>
         <head>
             <link rel="stylesheet" href="../css/site.css" />
+            <script type="text/javascript">
+                $(function(){
+                    $('a[title="Recipes"]').parent().addClass("active");
+                });
+            </script>
         </head>
     </body>
 </project>

http://git-wip-us.apache.org/repos/asf/incubator-curator/blob/69c9d8ba/curator-x-discovery-server/src/site/site.xml
----------------------------------------------------------------------
diff --git a/curator-x-discovery-server/src/site/site.xml b/curator-x-discovery-server/src/site/site.xml
index b3d398d..750cb33 100644
--- a/curator-x-discovery-server/src/site/site.xml
+++ b/curator-x-discovery-server/src/site/site.xml
@@ -21,6 +21,11 @@
     <body>
         <head>
             <link rel="stylesheet" href="../css/site.css" />
+            <script type="text/javascript">
+                $(function(){
+                    $('a[title="Service Discovery Server"]').parent().addClass("active");
+                });
+            </script>
         </head>
     </body>
 </project>

http://git-wip-us.apache.org/repos/asf/incubator-curator/blob/69c9d8ba/curator-x-discovery/src/site/site.xml
----------------------------------------------------------------------
diff --git a/curator-x-discovery/src/site/site.xml b/curator-x-discovery/src/site/site.xml
index 95e9a71..907f97d 100644
--- a/curator-x-discovery/src/site/site.xml
+++ b/curator-x-discovery/src/site/site.xml
@@ -21,6 +21,11 @@
     <body>
         <head>
             <link rel="stylesheet" href="../css/site.css" />
+            <script type="text/javascript">
+                $(function(){
+                    $('a[title="Service Discovery"]').parent().addClass("active");
+                });
+            </script>
         </head>
     </body>
 </project>