depot_timeline.html #2

  • //
  • guest/
  • kevin_sawicki/
  • depot_timeline/
  • resources/
  • depot_timeline.html
  • View
  • Commits
  • Open Download .zip Download (2 KB)
<!-- 

/**
 * Copyright (c) 2009, Perforce Software, Inc.  All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * 1.  Redistributions of source code must retain the above copyright
 *     notice, this list of conditions and the following disclaimer.
 *
 * 2.  Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL PERFORCE SOFTWARE, INC. BE LIABLE FOR ANY
 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

 -->
<html>
<head>
    <title>Depot Timeline</title>
    <style>
        .timeline-event-bubble-title,
        .timeline-event-bubble-body,
        .timeline-event-bubble-time {
            font-size: 10pt;
        }
        .depot-timeline {
            font-family: Trebuchet MS, Helvetica, Arial, sans serif;
            font-size: 8pt;
            border: 1px solid #aaa;
            height: 500px;
        }
        #search {
            margin-top:10px;
            margin-bottom:15px;
        }
    </style>
    <script 
    	src="http://simile.mit.edu/timeline/api/timeline-api.js"
    	type="text/javascript"></script>
    <script src="depot_timeline.js" type="text/javascript"></script>
</head>
<body onresize="onResize()" onload="onLoad()">

<div id="search">
Depot path: <input id="path" type="text" style="width:300px;"/>
<input type="button" 
	value="Generate Timeline"
	onclick="generateTimeline();"/>
</div>

<div class="depot-timeline" id="timeline">
</div>

</body>
</html>
# Change User Description Committed
#2 7493 Kevin Sawicki Adding license header to html file.
#1 7135 Kevin Sawicki Correcting depot path of depot timeline example.
//guest/kevin_sawicki/kevin_sawicki/depot_timeline/resources/depot_timeline.html
#1 7134 Kevin Sawicki Adding depot timeline server example to public depot.