Might want to start by aiming at: http://api.simile-widgets.org/exhibit/2.2.0/exhibit-api.js http://api.simile-widgets.org/exhibit/2.2.0/extensions/time/time-extension.js
to get a non-3.0 version of exhibit, though I think using exhibit 3.0 (latest) might serve you better: http://api.simile-widgets.org/exhibit/STABLE/exhibit-api.js http://api.simile-widgets.org/exhibit/STABLE/extensions/time/time-extension.js I just copies your code, replaced the js you had with the version 3.0 stuff, placed it on my webserver and opened the page in google-chrome, then right clicked and selected 'inspect element'. That showed me there were 3 errors. The first is as follows: Uncaught SyntaxError: Unexpected token < docs.google.com/spreadsheet/pub?key=<https://docs.google.com/spreadsheet/pub?key=0Amcu0weNjoTCdHA0MXFMQ19nTlVvWFdFb1I1XzhPZWc&output=html&callback=jQuery17204501171561423689_1398401061440&_=1398401062553>......(your google doc here) Looking at your google doc, I see in the label column <b>The Cold War</> which should probably be '<b>The Cold War</b> That should get you started and past the first error anyway. Hope that helps you out... wjw On Thursday, April 24, 2014 6:40:58 PM UTC-5, Mary McCartney wrote: > > I am trying this for my class, and all I can produce is my title. Can > someone look at my script and html code to let me know my mistakes? > Greatly appreciate. > <html> > <head> > <title>The Big Green Timeline</title> > > <script src="http://static.simile.mit.edu/exhibit/api-2.0/exhibit-api.js" > type="text/javascript"></script> > <script src=" > http://static.simile.mit.edu/exhibit/extensions-2.0/time/time-extension.js > "></script> > <link > rel="exhibit/data" > type="application/jsonp" > href=" > https://docs.google.com/spreadsheet/pub?key=0Amcu0weNjoTCdHA0MXFMQ19nTlVvWFdFb1I1XzhPZWc&output=html > " > ex:converter="googleSpreadsheets" /> > </head> > > > > > > > > > <body> > > <h1>The Big Green Timeline</h1> > > <table width="100%" cellspacing="20"> > <tr valign="top"> > <td> > <div ex:role="view" > ex:viewClass="Timeline" > ex:start=".start" > ex:end=".end" > ex:topBandUnit="month" > ex:bottomBandUnit="year" > ex:topBandPixelsPerUnit="100" > ex:bubbleWidth="500" > ex:bubbleHeight="300" > ex:colorKey=".eventType"> > </div> > <center ex:role="logo" ex:color="DimGrey"></center> > </td> > > <td width="20%"> > <div ex:role="facet" ex:facetClass="TextSearch" > ex:facetLabel="Search"></div> > <div ex:role="facet" ex:expression=".eventType" ex:facetLabel="Event > Type"></div> > </td> > </tr> > </table> > > <div ex:role="lens"> > <b ex:content=".label"></b> > <p><img ex:if-exists=".image" ex:src-content=".image" /></p> > <p ex:content=".description"></p> > <i ex:content=".initials"></i> > </div> > > </body> > </html> > > -- You received this message because you are subscribed to the Google Groups "SIMILE Widgets" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/simile-widgets. For more options, visit https://groups.google.com/d/optout.
