viz: Comment out the Log Viewer imports for Polymer

The Log Viewer tries to use Polymer, but Polymer isn't loading at the
right time. This causes us to be unable to load the page.
Until we figure it out, we are commenting out the troublesome imports.

https://github.com/veyron/release-issues/issues/1001

Change-Id: I9cf23d47c40f202fccbc5fa7ed6aa284b8a4fda3
2 files changed
tree: 76b5fbb869611c1c47af84cdaa5473f866f1c128
  1. go/
  2. public/
  3. scripts/
  4. src/
  5. test/
  6. .gitignore
  7. .jshintrc
  8. bower.json
  9. css-transform.js
  10. main-transform.js
  11. Makefile
  12. md-transform.js
  13. package.json
  14. README.md
  15. web-component-dependencies.html
README.md

Viz Vanadium Viewer

Viz is a browser-like application that lets developers and other users view the Vanadium world. Starting from their namespace root, a user can see where services are mounted and browse through the mount table hierarchy. The user can also select a service to see more detailed information about it. A user can also interact with the service; by invoking methods they can examine or modify the service's state.

Installing the Vanadium Extension

Viz requires that users install the Vanadium Extension from the Chrome Web Store. Without this extension, Viz will not load properly.

Link to the Vanadium Extension: https://chrome.google.com/webstore/detail/vanadium-extension/jcaelnibllfoobpedofhlaobfcoknpap

##Building Viz

You will need to install the Vanadium environment and setup the web profile to build your own copy of Viz. See the development instructions for Vanadium for more information.

Building Viz for deployment

In order to build your own copy of Viz, simply run:

cd $VANADIUM_ROOT/release/projects/namespace_browser
make build

This compiles the relevant bundle files in the ‘public’ folder. The assets inside can be served as your own instance of Viz.

Running Viz locally for development

You can serve a local instance of Viz with the following command:

make start

Note: You will need to install the Vanadium environment and setup the web profile for this command to succeed.

This command compiles and launches Viz. Additionally, demo services that represent a virtual house and cottage are added to your local namespace.

Navigate to http://localhost:9000 to access Viz. You can quit by using CTRL-C on the console running make start

If you have any problems after updating the code, try cleaning the build.

make clean
make start

Testing Viz

Viz has some unit and integration tests that verify basic functionality.

Run these tests with the following command:

make test

There are no UI tests yet.

Contributing to Viz

Coming Soon! Meanwhile, you can submit issues and suggestions from Viz itself.