bloxHub

www.infoblox.com/community
8 posts / 0 new
bloxTools beauty contest!

Take a screenshot of your bloxTools landing page, and post it here for all the world to see!

One Rule, you must post your landing page code to your bloxtools files area to share =)

I know you can do better than me...

landing page

+1
0
-1
Tags
Automation Change Manager,landing page index.html
Re: bloxTools beauty contest!

The link to your landing page appears to be broken for me.  Is it just me or is it missing for everyone else as well?

+1
0
-1
Re: bloxTools beauty contest!

Just re-tested works from a few PC's here...

+1
0
-1
Re: bloxTools beauty contest!

there was an issue before, I re-linked it to your image from your files section.

+1
0
-1
Re: bloxTools beauty contest!

Here you go, Phil. Here is my entry into the beauty contest. You can download the files from my home page or by clicking on the screenshot below.

 

 

Briefly, you could probably write a script to generate the html from your directory structure. Everytime you restart the bloxTools environment, the script would run and generate an up-to-date landing page.

+1
0
-1
Re: bloxTools beauty contest!

To follow up on my last post, you can actually take advantage of snapInstall to dynamically update your landing page. In fact, with a little bit of JavaScript and CSS, I put together a dynamic version of my previously published landing page. Simply unzip and copy the htdocs directory to your bloxTools Environment. You must have snapInstall installed, of course.

+1
0
-1
Re: bloxTools beauty contest!

I made a few simple changes to your landing page to compensate for any plugins installed prior to using snapInstall as well as for those snap-ins not yet snapInstall compatible.

Essentially, I just make a couple of new thumbnails, put them in the respective snapin htdocs/images folder and added the following code to index.html in /htdocs.

 

[quote]

                            <!-- existing code -->

                            <ul id="snapinList"></ul>

                            <!-- new code -->

                            <ul>

                                <li>

                                    <div class="SnapinTitle">Snapinstall</div>

                                    <a href="/snapinstall/" target="_blank">

                                        <img class="SnapinThumbnail" src="/snapinstall/images/snapinstall.jpg" alt="snapinstall Screenshot" />

                                    </a>

                                    <p>The bloxTools snap-in installer</p>

                                </li>

                                <li>

                                    <div class="SnapinTitle">IB Graph</div>

                                    <a href="/ibgraph/" target="_blank">

                                        <img class="SnapinThumbnail" src="/ibgraph/images/ibgraph.png" alt="IB Graph Screenshot" />

                                    </a>

                                    <p>The bloxTools IB Graph snap-in</p>

                                </li>

                                <li>

                                    <div class="SnapinTitle">IB Smart</div>

                                    <a href="/ibsmart/" target="_blank">

                                        <img class="SnapinThumbnail" src="/ibsmart/images/ibsmart.jpg" alt="IB Smart Screenshot" />

                                    </a>

                                    <p>The bloxTools IB Smart snap-in</p>

                                </li>

                                <li>

                                    <div class="SnapinTitle">Grid Geoviewer</div>

                                    <a href="/gridgeoviewer/" target="_blank">

                                        <img class="SnapinThumbnail" src="/gridgeoviewer/images/geoviewer.png" alt="Grid Geoviewer Screenshot" />

                                    </a>

                                    <p>The bloxTools Grid Geoviewer snap-in</p>

                                </li>

                            </ul>

[/quote]

+1
0
-1
Re: bloxTools beauty contest!

Cool! This is a nice modification for "backward compatibility." Thank you for sharing, Don.

+1
0
-1