PonteIneptique / simile-widgets

Automatically exported from code.google.com/p/simile-widgets
0 stars 0 forks source link

TIMELINE. Bug Fix/Patch: International *.js not loading when running Timeline locally #157

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
This is a bug fix for running timeline locally. Timeline would not load
unless the following path was applied.

Line 233:
http://simile.mit.edu/repository/timeline/trunk/src/webapp/api/timeline-api.js

includeJavascriptFiles(Timeline.urlPrefix + "scripts/l10n/" + locale + "/",
localizedJavascriptFiles);

should be changed to

includeJavascriptFiles(Timeline.urlPrefix + "l10n/" + locale + "/",
localizedJavascriptFiles);

--------------------

Also, line 234:
http://simile.mit.edu/repository/timeline/trunk/src/webapp/api/timeline-api.js

refers to "styles/l10n/", when no "styles/l10n/" exists.

[Submitted by Micheal on simile.mit.edu] 

Original issue reported on code.google.com by GabrielR...@googlemail.com on 5 Apr 2009 at 2:59