sebgiroux / Cassandra-Cluster-Admin

Manage your Cassandra cluster in your Web browser!
http://www.wajam.com
MIT License
206 stars 66 forks source link

More structured UI #27

Closed ghost closed 11 years ago

ghost commented 11 years ago

Schema (keyspaces, column families) now easier to look at. Especially if it's growing large.

Schema cassie1

Cluster cassie2

sebgiroux commented 11 years ago

I like it, I can merge after the code changes has been made :)

ghost commented 11 years ago

cool that you like it (because I like it, too ;) ). Made the changes to the files. :)

sebgiroux commented 11 years ago

You're very efficient :) Good work, thanks for this, keep them coming!

sebgiroux commented 11 years ago

Btw, I get a Notice: Undefined index: nav in \CassandraClusterAdmin\views\cluster_info.php on line 12

if ($_GET['nav'] == 'cluster'):

should be replaced with:

if (isset($_GET['nav']) && $_GET['nav'] == 'cluster'):

Feel free to add notice error level to your PHP config :)

ghost commented 11 years ago

You're right. I just don't use that in my own applications because it doesn't stop them from working ;)