You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafodion.apache.org by db...@apache.org on 2015/10/30 16:34:09 UTC

[1/2] incubator-trafodion git commit: List all configurations

Repository: incubator-trafodion
Updated Branches:
  refs/heads/master af7809dcd -> 54f44ec28


List all configurations


Project: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/commit/568fba86
Tree: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/tree/568fba86
Diff: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/diff/568fba86

Branch: refs/heads/master
Commit: 568fba8655ad5d6e0d19cfd93b737795a816c8d7
Parents: 393eae3
Author: Kevin Xu <ka...@esgyn.cn>
Authored: Mon Oct 26 18:26:43 2015 +0800
Committer: Kevin Xu <ka...@esgyn.cn>
Committed: Mon Oct 26 18:26:43 2015 +0800

----------------------------------------------------------------------
 .../main/resources/dcs-webapps/master/servers.jsp  | 17 +++++++++++++++++
 dcs/src/main/resources/dcs-webapps/static/dcs.css  | 16 ++++++++++++----
 2 files changed, 29 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/568fba86/dcs/src/main/resources/dcs-webapps/master/servers.jsp
----------------------------------------------------------------------
diff --git a/dcs/src/main/resources/dcs-webapps/master/servers.jsp b/dcs/src/main/resources/dcs-webapps/master/servers.jsp
index 22cf61e..d666975 100644
--- a/dcs/src/main/resources/dcs-webapps/master/servers.jsp
+++ b/dcs/src/main/resources/dcs-webapps/master/servers.jsp
@@ -194,5 +194,22 @@ entries
     <%
     }  
     %>
+<br>
+<h2> List all configurations</h2>
+<table>
+<tr><th>Properties Name</th><th>Value</th></tr>
+<%
+TreeMap<String, String> sm = new TreeMap<String, String>();
+for(Map.Entry<String, String> obj: conf){
+	sm.put(obj.getKey(), obj.getValue());
+}
+
+for(Map.Entry<String, String> entry: sm.entrySet()){
+%>
+	<tr><td><%=entry.getKey()%></td> <td> <%=entry.getValue()%></td></tr>	
+<%
+}
+%>
+</table>
 </body>
 </html>        

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/568fba86/dcs/src/main/resources/dcs-webapps/static/dcs.css
----------------------------------------------------------------------
diff --git a/dcs/src/main/resources/dcs-webapps/static/dcs.css b/dcs/src/main/resources/dcs-webapps/static/dcs.css
index 725930d..de7d410 100644
--- a/dcs/src/main/resources/dcs-webapps/static/dcs.css
+++ b/dcs/src/main/resources/dcs-webapps/static/dcs.css
@@ -17,10 +17,18 @@
  * limitations under the License.
  */
 h1, h2, h3 { color: DarkSlateBlue }
-table { border: thin solid DodgerBlue }
-tr { border: thin solid DodgerBlue }
-td { border: thin solid DodgerBlue }
-th { border: thin solid DodgerBlue }
+table { border: thin solid lightgrey }
+tr { border: thin solid lightgrey }
+td 
+{ 
+  border-left: thin solid lightgrey;
+  border-bottom: thin solid lightgrey;
+}
+th 
+{ 
+  border: thin solid lightgrey;
+  text-align: left;
+ }
 #logo {float: right;}
 #logo img {border: none;}
 #page_title {}


[2/2] incubator-trafodion git commit: Merge [TRAFODION-1561] PR 146 List all DCS configurations

Posted by db...@apache.org.
Merge [TRAFODION-1561] PR 146 List all DCS configurations


Project: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/commit/54f44ec2
Tree: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/tree/54f44ec2
Diff: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/diff/54f44ec2

Branch: refs/heads/master
Commit: 54f44ec28f623a7fd71ed213a9f85a7ee28449ae
Parents: af7809d 568fba8
Author: Dave Birdsall <db...@apache.org>
Authored: Fri Oct 30 15:33:15 2015 +0000
Committer: Dave Birdsall <db...@apache.org>
Committed: Fri Oct 30 15:33:15 2015 +0000

----------------------------------------------------------------------
 .../main/resources/dcs-webapps/master/servers.jsp  | 17 +++++++++++++++++
 dcs/src/main/resources/dcs-webapps/static/dcs.css  | 16 ++++++++++++----
 2 files changed, 29 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/54f44ec2/dcs/src/main/resources/dcs-webapps/master/servers.jsp
----------------------------------------------------------------------