├── .gitignore ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── animation.gif ├── app.rb ├── app ├── helpers │ ├── async.rb │ ├── json.rb │ └── sse.rb └── public │ ├── css │ ├── bootstrap-theme.css │ ├── bootstrap.css │ ├── codemirror-solarized.css │ ├── codemirror.css │ ├── prism.css │ └── style.css │ ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff │ ├── html │ ├── 404.html │ ├── execute.html │ ├── index.html │ ├── keyspace.html │ └── table.html │ ├── js │ ├── angular-filter.min.js │ ├── cassandra.js │ ├── codemirror-sql.js │ ├── codemirror.js │ ├── prism.js │ ├── prism.min.js │ ├── ui-bootstrap-tpls.min.js │ └── ui-codemirror.js │ └── main.html ├── bin └── cassandra-web └── cassandra-web.gemspec /.gitignore: -------------------------------------------------------------------------------- 1 | # IntelliJ project info 2 | .idea 3 | *.iml 4 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche123/cassandra-web/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche123/cassandra-web/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche123/cassandra-web/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche123/cassandra-web/HEAD/README.md -------------------------------------------------------------------------------- /animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche123/cassandra-web/HEAD/animation.gif -------------------------------------------------------------------------------- /app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche123/cassandra-web/HEAD/app.rb -------------------------------------------------------------------------------- /app/helpers/async.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche123/cassandra-web/HEAD/app/helpers/async.rb -------------------------------------------------------------------------------- /app/helpers/json.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche123/cassandra-web/HEAD/app/helpers/json.rb -------------------------------------------------------------------------------- /app/helpers/sse.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche123/cassandra-web/HEAD/app/helpers/sse.rb -------------------------------------------------------------------------------- /app/public/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche123/cassandra-web/HEAD/app/public/css/bootstrap-theme.css -------------------------------------------------------------------------------- /app/public/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche123/cassandra-web/HEAD/app/public/css/bootstrap.css -------------------------------------------------------------------------------- /app/public/css/codemirror-solarized.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche123/cassandra-web/HEAD/app/public/css/codemirror-solarized.css -------------------------------------------------------------------------------- /app/public/css/codemirror.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche123/cassandra-web/HEAD/app/public/css/codemirror.css -------------------------------------------------------------------------------- /app/public/css/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche123/cassandra-web/HEAD/app/public/css/prism.css -------------------------------------------------------------------------------- /app/public/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche123/cassandra-web/HEAD/app/public/css/style.css -------------------------------------------------------------------------------- /app/public/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche123/cassandra-web/HEAD/app/public/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /app/public/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche123/cassandra-web/HEAD/app/public/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /app/public/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche123/cassandra-web/HEAD/app/public/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /app/public/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche123/cassandra-web/HEAD/app/public/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /app/public/html/404.html: -------------------------------------------------------------------------------- 1 |