<html>
<head>
<title></title>
<script>
var rowStyler = function(item, database, tr) {
var stage = database.getObject(item, "stage");
var color = "white";
switch (stage) {
case "PRE-CONCEPT": color = "#C8BDB2"; break;
case "CONCEPT": color="#F7D2CD"; break;
case "PLANNING": color="#DECFE8"; break;
case "DESIGN": color="#CCD7EE"; break;
case "CONSTRUCTION": color="#CCE5DE"; break;
}
tr.style.background = color;
};
</script>
<link rel="exhibit/data"
type="application/jsonp"
ex:converter="googleSpreadsheets" />
<link rel="stylesheet" href="stylesheet.css" type="text/css" media=screen />
</head>
<body>
<div ex:role="coder" ex:coderClass="Color" id="stage-color">
<span ex:color="#472200">BEFORE NEON</span>
<span ex:color="#D81E05">CONCEPT</span
<span ex:color="#59118E">PLANNING</span>
<span ex:color="#0038A8">DESIGN</span>
<span ex:color="#007c59">CONSTRUCTION</span>
</div>
<div ex:role="coder" ex:coderClass="Icon" id="dot-color">
<span ex:icon="images/brown-button.png">BEFORE NEON</span>
<span ex:icon="images/red-button.png">CONCEPT</span>
</div>
<table width="100%">
<tr valign="top">
<td ex:role="viewPanel">
<!--This div creates the timeline view-->
<div ex:role="view"
ex:viewClass="Timeline"
ex:label="Interactive Timeline"
ex:timelineHeight="300"
ex:topBandHeight="80"
ex:topBandUnit="month"
ex:topBandPixelsPerUnit="80"
ex:bottomBandHeight="20"
ex:bottomBandUnit="year"
ex:bottomBandPixelsPerUnit="60"
ex:start=".start"
ex:latestStart=".latestStart"
ex:earliestEnd=".earliestEnd"
ex:end=".end"
ex:isDuration=".isDuration"
ex:colorKey=".stage"
ex:colorCoder="stage-color"
ex:iconKey=".stage"
ex:colorCoder="dot-color"
ex:bubbleHeight="400"
ex:bubbleWidth="300"
ex:configuration=timelineConfig">
<div ex:role="lens" class="timeline-bubble" style="display:none;">
<img ex:src-content=".imageURL" class="bubblepic" />
<p><span ex:content=".month" class="title"></span> <span ex:content=".year" class="title"></span>
</p>
<p ex:content=".label" class="title"></p>
<p ex:content=".description" class="description"></p>
<div ex:if-exists=".URL"><a ex:href-content=".URL" class="bubblelink" target="_blank"> read more </a></div>
</div>
</div>
</div>
<!--This div creates the table view-->
<div ex:role="view"
ex:viewClass="Tabular"
ex:label="List of events"
ex:columns=".year,.month,.label,.description,.shortURL"
ex:columnLabels="year, month, event, description, link"
ex:columnFormats="list, list, list, list, url"
ex:sortAscending="false"
ex:rowStyle="rowStyler">
</div>