[Groonga-commit] groonga/groonga-admin at 353cd1c [master] Support schema in client

Back to archive index

Kouhei Sutou null+****@clear*****
Mon Nov 23 14:59:13 JST 2015


Kouhei Sutou	2015-11-23 14:59:13 +0900 (Mon, 23 Nov 2015)

  New Revision: 353cd1c6abb693381ae78c0aeb205884e0efd9bf
  https://github.com/groonga/groonga-admin/commit/353cd1c6abb693381ae78c0aeb205884e0efd9bf

  Message:
    Support schema in client

  Added files:
    app/scripts/groonga-client/response/schema.js
  Modified files:
    app/index.html

  Modified: app/index.html (+1 -0)
===================================================================
--- app/index.html    2015-11-23 14:29:56 +0900 (a8a91c2)
+++ app/index.html    2015-11-23 14:59:13 +0900 (103775b)
@@ -69,6 +69,7 @@
         <script src="scripts/groonga-client/response.js"></script>
         <script src="scripts/groonga-client/response/base.js"></script>
         <script src="scripts/groonga-client/response/select.js"></script>
+        <script src="scripts/groonga-client/response/schema.js"></script>
         <script src="scripts/groonga-client/response/table-list.js"></script>
         <script src="scripts/groonga-client/response/table-create.js"></script>
         <script src="scripts/groonga-client/response/table-remove.js"></script>

  Added: app/scripts/groonga-client/response/schema.js (+11 -0) 100644
===================================================================
--- /dev/null
+++ app/scripts/groonga-client/response/schema.js    2015-11-23 14:59:13 +0900 (9f9acd1)
@@ -0,0 +1,11 @@
+'use strict';
+
+(function() {
+  function Schema(rawData) {
+    GroongaClient.Response.Base.call(this, rawData);
+  }
+  GroongaClient.Response.Schema = Schema;
+
+  Schema.prototype = Object.create(GroongaClient.Response.Base.prototype);
+  Schema.prototype.constructor = Schema;
+})();
-------------- next part --------------
HTML����������������������������...
Download 



More information about the Groonga-commit mailing list
Back to archive index