[Simile-Widgets] Accessibility for web

2012-10-09 Thread Steve Xu
Hi! I recently used built an interactive map using SIMILE 2.3 version. 
http://www.lib.uwaterloo.ca/locations/umd/digital/opendata.html). The 
application itself is working fine but the webpage can't pass 
the accessibility test due to some of SIMILE JavaScript  doesn't have tag 
associated. e.g. no tag for search box. Is this issue going to addressed or 
some kind of plan is there in 3.0 development?

Thanks,

Steve Xu 

-- 
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/simile-widgets/-/viBq9ULMBJkJ.
To post to this group, send email to simile-widgets@googlegroups.com.
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en.



[Simile-Widgets] Web accessibility issue

2012-10-09 Thread Steve Xu
I developed a website using SIMILE Exhibit and can't pass the 
web accessibility test due to lack of some of the tags. Is this issue being 
addressed?
 

-- 
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/simile-widgets/-/c2znTxxhtLsJ.
To post to this group, send email to simile-widgets@googlegroups.com.
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en.



[Simile-Widgets] Error: Failed to derive URL prefix for Timeline API code files

2012-10-03 Thread Steve
The Simile Timeline (v. 2.3.1) is hosted on National Science
Foundation's website at 
http://www.nsf.gov/news/special_reports/history-nsf/timeline/.
The operating system is Windows XP v .5.1. The error message "Failed
to derive prefix for Timeline API code files" pops up when the user
clicks a link in a bubble on the timeline in Firefox (15.0.1), Safari
(5.1.7) and Chrome (v. 22.0.1229.79), but not in IE 8 or IE 9. I've
tried several suggestions on simile-widgets-dev and simile-widgets but
no success. All the scripts are in the  tags. Does anyone have
any idea what could be causing this issue?

-- 
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to simile-widgets@googlegroups.com.
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en.



Re: [Simile-Widgets] setting range in timeline

2012-06-09 Thread Steve Pai
There was a similar question a few weeks back. Search, it involved
timeline_start and timeline_stop. I can't remember off the top of my
head.

Steve @ iPhone

On Jun 9, 2012, at 2:32 PM, David Van Fleet  wrote:

> How do I set a specific range in timeline, e.g., 1800-2000?
>
> --
> You received this message because you are subscribed to the Google Groups 
> "SIMILE Widgets" group.
> To post to this group, send email to simile-widgets@googlegroups.com.
> To unsubscribe from this group, send email to 
> simile-widgets+unsubscr...@googlegroups.com.
> For more options, visit this group at 
> http://groups.google.com/group/simile-widgets?hl=en.
>

-- 
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to simile-widgets@googlegroups.com.
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en.



Re: [Simile-Widgets] Tacking on an image to the beginning/end of a band?

2012-05-30 Thread Steve Pai
Yes sorry, I meant 'tape.' Sorry for the confusion.

Steve

On May 30, 2012, at 12:16 PM, Michael Nosal  wrote:

Wait a sec...
Are you referring to the 'tape' that is used to display a duration event?
e.g. the bar that is drawn to show an event with different start and end
dates?

"Band" refers to the section of the timeline in which the events are drawn.
'Tape' refers to the bar drawn for a duration event.
I'm thinking you're referring to the duration tape, and not the overall
Band?

Is that correct?

--Mike


On May 25, 2012, at 7:31 PM, Steve Pai wrote:

So if I understand this correctly, in band.js, within Timeline._Band =
function(timeline, bandInfo, index) {...}, add:

/* attached image div for the band */
 if (bandInfo.bandImage) {
   this._bandImage =
this._timeline.getDocument().createElement("div");
   this._bandImage.className = "timeline-band-image-layer";
   var img = this._timeline.getDocument().createElement("img");
   img.src = ("bandImage" in bandInfo) ? bandInfo.bandImage :
"../images/blue-circle.png";
   this._label.appendChild(img);
   this._timeline.addDiv(this._bandImage);
}

I'm just using blue-circle.png from images in the parent folder of band.js
to test. Then within timeline.js, in Timeline.createBandInfo =
function(params) {...}, I would need to do something like:

  if ("bandImage" in params) { ...}

or should it be in Timeline.create ?

Still trying to understand everything under the hood, so a bit confused.

My eventual goal is to be able to tack on an image (perhaps a jagged edge)
to bands where:
1. Start date is unknown, tack onto beginning band
2. End date is unknown, tack onto end of band
3. Start and end date is unknown, tack onto both ends of band

http://s21.photobucket.com/albums/b259/stevespai/?action=view¤t=ScreenShot2012-05-25at42020PM.png

At the same time, I'd like to integrate it into the color of the band, so
there will be a number of images. The plan is to specify the image as a
parameter within the source json file for each band. I've done something
similar by leveraging 'classname' and using the associated css to decide
band color and a fade gradient at the ends of the band, consistent with
which dates are known and unknown. However, the gradient is a % function of
the length of the band, so it does not always look consistent. I got a bit
closer by specifying the gradient using pixel count, but still not exactly
right:

http://s21.photobucket.com/albums/b259/stevespai/?action=view¤t=ScreenShot2012-05-25at35706PM.png

If you can suggest a better way of doing this, I'm totally open to
suggestions.

steve


 --
You received this message because you are subscribed to the Google Groups
"SIMILE Widgets" group.
To post to this group, send email to simile-widgets@googlegroups.com.
To unsubscribe from this group, send email to
simile-widgets+unsubscr...@googlegroups.com.
For more options, visit this group at
http://groups.google.com/group/simile-widgets?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to simile-widgets@googlegroups.com.
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en.



Re: [Simile-Widgets] Tacking on an image to the beginning/end of a band?

2012-05-25 Thread Steve Pai
So if I understand this correctly, in band.js, within Timeline._Band =
function(timeline, bandInfo, index) {...}, add:

/* attached image div for the band */
if (bandInfo.bandImage) {
   this._bandImage =
this._timeline.getDocument().createElement("div");
   this._bandImage.className = "timeline-band-image-layer";
   var img = this._timeline.getDocument().createElement("img");
   img.src = ("bandImage" in bandInfo) ? bandInfo.bandImage :
"../images/blue-circle.png";
   this._label.appendChild(img);
   this._timeline.addDiv(this._bandImage);
}

I'm just using blue-circle.png from images in the parent folder of band.js
to test. Then within timeline.js, in Timeline.createBandInfo =
function(params) {...}, I would need to do something like:

  if ("bandImage" in params) { ...}

or should it be in Timeline.create ?

Still trying to understand everything under the hood, so a bit confused.

My eventual goal is to be able to tack on an image (perhaps a jagged edge)
to bands where:
1. Start date is unknown, tack onto beginning band
2. End date is unknown, tack onto end of band
3. Start and end date is unknown, tack onto both ends of band

http://s21.photobucket.com/albums/b259/stevespai/?action=view¤t=ScreenShot2012-05-25at42020PM.png

At the same time, I'd like to integrate it into the color of the band, so
there will be a number of images. The plan is to specify the image as a
parameter within the source json file for each band. I've done something
similar by leveraging 'classname' and using the associated css to decide
band color and a fade gradient at the ends of the band, consistent with
which dates are known and unknown. However, the gradient is a % function of
the length of the band, so it does not always look consistent. I got a bit
closer by specifying the gradient using pixel count, but still not exactly
right:

http://s21.photobucket.com/albums/b259/stevespai/?action=view¤t=ScreenShot2012-05-25at35706PM.png

If you can suggest a better way of doing this, I'm totally open to
suggestions.

steve



On Thu, May 24, 2012 at 1:47 PM, Steve Pai  wrote:

> Sweet!! Can't wait to get back to my computer to try this out :)
>
> Thanks Mike!
>
> steve
>
>
> On Thu, May 24, 2012 at 1:46 PM, Michael Nosal  wrote:
>
>> Yup, done that. It's pretty easy to tack on a div to your band.
>> I modified the constructor for the Band to include an optional image:
>>
>>/* attached image div for the band */
>>if (bandInfo.bandImage) {
>>this._bandImage =
>> this._timeline.getDocument().createElement("div");
>>this._bandImage.className = "timeline-band-image-layer";
>>var img =
>> this._timeline.getDocument().createElement("img");
>>img.src = ("bandImage" in bandInfo) ? bandInfo.bandImage :
>> "/path/to/default/image.png";
>>this._label.appendChild(img);
>>this._timeline.addDiv(this._bandImage);
>>}
>>
>>
>> And modified the Timeline constructor to pass the bandImage parameter
>> from the bandInfo.
>> Now there is another div within the band that you can easily style with
>> CSS (put on left side of band or right side of band, etc) and it contains
>> an image specified by the bandImage value of your bandInfo object.
>>
>> I've also used the same technique to add fixed labels to bands.
>>
>> --Mike
>>
>>
>> On May 24, 2012, at 4:13 PM, SteveP wrote:
>>
>> > Has anyone done this before? I'd like to add an image to the
>> beginning/end of a band, within the band itself. Ideally it should appear
>> over the background color of the band, but not affect the color of the band
>> (defined in the event source). Any direction would be great!
>> >
>> > steve
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "SIMILE Widgets" group.
>> To post to this group, send email to simile-widgets@googlegroups.com.
>> To unsubscribe from this group, send email to
>> simile-widgets+unsubscr...@googlegroups.com.
>> For more options, visit this group at
>> http://groups.google.com/group/simile-widgets?hl=en.
>>
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to simile-widgets@googlegroups.com.
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en.



Re: [Simile-Widgets] Tacking on an image to the beginning/end of a band?

2012-05-24 Thread Steve Pai
Sweet!! Can't wait to get back to my computer to try this out :)

Thanks Mike!

steve

On Thu, May 24, 2012 at 1:46 PM, Michael Nosal  wrote:

> Yup, done that. It's pretty easy to tack on a div to your band.
> I modified the constructor for the Band to include an optional image:
>
>/* attached image div for the band */
>if (bandInfo.bandImage) {
>this._bandImage =
> this._timeline.getDocument().createElement("div");
>this._bandImage.className = "timeline-band-image-layer";
>var img = this._timeline.getDocument().createElement("img");
>img.src = ("bandImage" in bandInfo) ? bandInfo.bandImage :
> "/path/to/default/image.png";
>this._label.appendChild(img);
>this._timeline.addDiv(this._bandImage);
>}
>
>
> And modified the Timeline constructor to pass the bandImage parameter from
> the bandInfo.
> Now there is another div within the band that you can easily style with
> CSS (put on left side of band or right side of band, etc) and it contains
> an image specified by the bandImage value of your bandInfo object.
>
> I've also used the same technique to add fixed labels to bands.
>
> --Mike
>
>
> On May 24, 2012, at 4:13 PM, SteveP wrote:
>
> > Has anyone done this before? I'd like to add an image to the
> beginning/end of a band, within the band itself. Ideally it should appear
> over the background color of the band, but not affect the color of the band
> (defined in the event source). Any direction would be great!
> >
> > steve
>
> --
> You received this message because you are subscribed to the Google Groups
> "SIMILE Widgets" group.
> To post to this group, send email to simile-widgets@googlegroups.com.
> To unsubscribe from this group, send email to
> simile-widgets+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/simile-widgets?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to simile-widgets@googlegroups.com.
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en.



Re: [Simile-Widgets] Simile Widget Timeline Disable Scroll ( Mousewheel + Drag )

2012-05-24 Thread Steve Pai
Thanks for the response Mike! That worked.

At first I was using this form for start/stop:

theme.timeline_start = "Jan 1 2000 00:00:00 GMT";

Then switched to this per instructions in the wiki

theme.timeline_start = new Date(Date.UTC(2000,01,01));

Both of which caused the issues I described previously. Should have just
kept it simple :)

steve

On Thu, May 24, 2012 at 12:23 PM, Michael Nosal  wrote:

> If you set .timeline_start, you should also set .timeline_stop as well, or
> set stop to a date far in the future.
> I've noticed buggy behavior if I specify start and stop is null. I've
> tested on Chrome/Mac with Timeline 2.3.1 and it is working as expected.
>
> It should look like this:
>var theme = Timeline.ClassicTheme.create();
>theme.event.bubble.width = 320;
>theme.event.bubble.height = 220;
>theme.timeline_start = new Date("Jan 1 1840");
>theme.timeline_stop = new Date("Jan 1 1950");
>
> --Mike
>
>
> On May 23, 2012, at 4:48 PM, Derek J. Balling wrote:
>
> > If I set theme.timeline_start and theme.timeline_stop, I can't scroll at
> all.  [Chrome] :-/
> >
> > D
>
> --
> You received this message because you are subscribed to the Google Groups
> "SIMILE Widgets" group.
> To post to this group, send email to simile-widgets@googlegroups.com.
> To unsubscribe from this group, send email to
> simile-widgets+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/simile-widgets?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to simile-widgets@googlegroups.com.
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en.



Re: [Simile-Widgets] Simile Widget Timeline Disable Scroll ( Mousewheel + Drag )

2012-05-24 Thread Steve Pai
Yeah same issue here with safari and Firefox. Setting timeline_start alone
allows you scroll forward in time, but not back. Setting timeline_start and
timeline_stop halts scrolling altogether.

Steve @ iPhone

On May 24, 2012, at 8:36 AM, "Derek J. Balling"  wrote:

If I set theme.timeline_start and theme.timeline_stop, I can't scroll at
all.  [Chrome] :-/

D


On May 23, 2012, at 2:47 PM, Steve Pai wrote:

Have you heard of any reports of not being able to scroll left (back in
time) after setting theme.timeline_start?

I am hitting this issue in both Safari and Firefox.

On Wed, May 23, 2012 at 1:29 PM, Michael Nosal  wrote:

> Yes, they are attributes of the theme object.
> --Mike
>
> On May 23, 2012, at 4:23 PM, Steve Pai wrote:
>
> Is that a variable for theme? e.g.,
>
> var theme = Timeline.ClassicTheme.create();
> theme.timeline_start = "Jan 1 2000 00:00:00 GMT";
>
> On Wed, May 23, 2012 at 1:11 PM, Michael Nosal  wrote:
>
>> You can set timeline_start and timeline_stop in the theme for your
>> bandInfo. These are the dates which will stop the timeline from scrolling
>> past. This is useful if the user shrinks the window and you still want them
>> to be able to get to everything in a range of dates. You can update these
>> values dynamically if you need to let the user scroll.
>>
>> If you wish to disable and prevent *all* horizontal scrolling in the
>> timeline widget, simply do:
>> Timeline._Band.prototype._moveEther = function(shift) {}
>> and all scrolling is disabled.
>>
>> --Mike
>>
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "SIMILE Widgets" group.
> To post to this group, send email to simile-widgets@googlegroups.com.
> To unsubscribe from this group, send email to
> simile-widgets+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/simile-widgets?hl=en.
>


-- 
You received this message because you are subscribed to the Google Groups
"SIMILE Widgets" group.
To post to this group, send email to simile-widgets@googlegroups.com.
To unsubscribe from this group, send email to
simile-widgets+unsubscr...@googlegroups.com.
For more options, visit this group at
http://groups.google.com/group/simile-widgets?hl=en.


 --
You received this message because you are subscribed to the Google Groups
"SIMILE Widgets" group.
To post to this group, send email to simile-widgets@googlegroups.com.
To unsubscribe from this group, send email to
simile-widgets+unsubscr...@googlegroups.com.
For more options, visit this group at
http://groups.google.com/group/simile-widgets?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to simile-widgets@googlegroups.com.
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en.



Re: [Simile-Widgets] Simile Widget Timeline Disable Scroll ( Mousewheel + Drag )

2012-05-23 Thread Steve Pai
Have you heard of any reports of not being able to scroll left (back in
time) after setting theme.timeline_start?

I am hitting this issue in both Safari and Firefox.

On Wed, May 23, 2012 at 1:29 PM, Michael Nosal  wrote:

> Yes, they are attributes of the theme object.
> --Mike
>
> On May 23, 2012, at 4:23 PM, Steve Pai wrote:
>
> Is that a variable for theme? e.g.,
>
> var theme = Timeline.ClassicTheme.create();
> theme.timeline_start = "Jan 1 2000 00:00:00 GMT";
>
> On Wed, May 23, 2012 at 1:11 PM, Michael Nosal  wrote:
>
>> You can set timeline_start and timeline_stop in the theme for your
>> bandInfo. These are the dates which will stop the timeline from scrolling
>> past. This is useful if the user shrinks the window and you still want them
>> to be able to get to everything in a range of dates. You can update these
>> values dynamically if you need to let the user scroll.
>>
>> If you wish to disable and prevent *all* horizontal scrolling in the
>> timeline widget, simply do:
>> Timeline._Band.prototype._moveEther = function(shift) {}
>> and all scrolling is disabled.
>>
>> --Mike
>>
>
>  --
> You received this message because you are subscribed to the Google Groups
> "SIMILE Widgets" group.
> To post to this group, send email to simile-widgets@googlegroups.com.
> To unsubscribe from this group, send email to
> simile-widgets+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/simile-widgets?hl=en.
>

-- 
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to simile-widgets@googlegroups.com.
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en.



Re: [Simile-Widgets] Simile Widget Timeline Disable Scroll ( Mousewheel + Drag )

2012-05-23 Thread Steve Pai
Is that a variable for theme? e.g.,

var theme = Timeline.ClassicTheme.create();
theme.timeline_start = "Jan 1 2000 00:00:00 GMT";

On Wed, May 23, 2012 at 1:11 PM, Michael Nosal  wrote:

> You can set timeline_start and timeline_stop in the theme for your
> bandInfo. These are the dates which will stop the timeline from scrolling
> past. This is useful if the user shrinks the window and you still want them
> to be able to get to everything in a range of dates. You can update these
> values dynamically if you need to let the user scroll.
>
> If you wish to disable and prevent *all* horizontal scrolling in the
> timeline widget, simply do:
> Timeline._Band.prototype._moveEther = function(shift) {}
> and all scrolling is disabled.
>
> --Mike
>
>
> On May 16, 2012, at 3:53 AM, Pierre-Henri Lavigne wrote:
>
> Good day all,
>
> I'm looking for a way to disable completely the scroll function for an
> horizontal timeline.
> After reading the API, I succeeded to generate a "date pagination" using
> .getMinVisibleDate() && .setMinVisibleDate().
> I would like to disable this scroll because I am gonna adding some custom
> html manually sometimes for some items.
>
> Is there any way to do it in a simple way ? Or any kind of trick like
> changing min / max date after setting the minVisibleDate ?
>
> Thank you for your help,
>
> Peter
>
> --
> You received this message because you are subscribed to the Google Groups
> "SIMILE Widgets" group.
> To view this discussion on the web visit
> https://groups.google.com/d/msg/simile-widgets/-/ShEMxI0zR68J.
> To post to this group, send email to simile-widgets@googlegroups.com.
> To unsubscribe from this group, send email to
> simile-widgets+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/simile-widgets?hl=en.
>
>
>  --
> You received this message because you are subscribed to the Google Groups
> "SIMILE Widgets" group.
> To post to this group, send email to simile-widgets@googlegroups.com.
> To unsubscribe from this group, send email to
> simile-widgets+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/simile-widgets?hl=en.
>

-- 
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to simile-widgets@googlegroups.com.
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en.



Re: [Simile-Widgets] how can i insert image in timeline

2012-05-23 Thread Steve Pai
Look at the data source file, it's set using "icon"

{

"title": "Bubble Boy",

"id":"/en/bubble_boy",

"start": "2001-08-24",

"icon":  "
http://www.freebase.com/api/trans/image_thumb//wikipedia/images/en_id/948834?maxheight=76&mode=fillcrop&maxwidth=76
"

},


On Sun, May 13, 2012 at 2:37 AM, freezizo84  wrote:

> how can i insert images in timeline
>
> like this
> http://www.simile-widgets.org/timeline/examples/compact-painter/compact-painter.html
>
> --
> You received this message because you are subscribed to the Google Groups
> "SIMILE Widgets" group.
> To post to this group, send email to simile-widgets@googlegroups.com.
> To unsubscribe from this group, send email to
> simile-widgets+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/simile-widgets?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to simile-widgets@googlegroups.com.
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en.



[Simile-Widgets] IE8 Caching Issue With Simile Timeline

2012-05-11 Thread Steve
There is a caching issue in IE8 with links in the National Science
Foundation Timeline at 
http://www.nsf.gov/news/special_reports/history-nsf/timeline/index.jsp.
The links in the bubbles and horizontal green lines delineating the
tenure of NSF directors work the first time, but not after that.
Cleaning and refreshing the browser cache doesn’t help. Resetting
compatibility view has no effect.

There is no caching issue in IE7, IE9, FF, Chrome, and Safari.

Javascript debugging yielded the following error message in IE8:

User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/
4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR
3.5.30729; .NET CLR 1.1.4322; .NET4.0C; .NET4.0E; InfoPath.2)
Timestamp: Wed, 9 May 2012 11:06:30 UTC

Message: Object required
Line: 466
Char: 5
Code: 0
URI: http://static.simile.mit.edu/timeline/api-2.3.0/scripts/timeline.js

We tried the following, none, of which, were successful:

1. Add IE7-emulation meta tag to the timeline/index.jsp page just
under opening  tag:



2. Generate a Javascript patch generating random URL parameters to
trick the browser into not catching.

var r1=Math.floor(Math.random()*11) ;
var r2 = Math.floor(Math.random()* 100) ;
var r3 = String.fromCharCode(r1)+r2 ;

Timeline.loadJS(
"nsfhistory.js?" + r3,
function(js, url) { eventSource.loadJS(js, url); });

3. Add no-cache and expires http tags



Any suggestions would be greatly appreciated.

-- 
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to simile-widgets@googlegroups.com.
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en.



Re: [Simile-Widgets] Simile local installation problems?

2012-04-20 Thread Steve Pai
I ended up tacking on '?bundle=false' to both the simile-ajax-api.js and
timeline-api.js url, and commented out Timeline_parameters='bundle=false',
which worked.

On Fri, Apr 20, 2012 at 12:27 PM, Steve Pai  wrote:

> Paige,
>
> Not sure if you got it working yet, but I noticed in your original email:
>
> 
>> Timeline_ajax_url="<a  rel="nofollow" href="http://paigemorgan.net/timeline/src/ajax/api/simile-">http://paigemorgan.net/timeline/src/ajax/api/simile-</a>
>> ajax-api.js
>> <<a  rel="nofollow" href="http://paigemorgan.net/timeline/src/ajax/api/simile-ajax-api.js">http://paigemorgan.net/timeline/src/ajax/api/simile-ajax-api.js</a>>
>> ajax-api.js<<a  rel="nofollow" href="http://paigemorgan.net/timeline/src/ajax/api/simile-ajax-api.js">http://paigemorgan.net/timeline/src/ajax/api/simile-ajax-api.js</a>>
>> "
>> Timeline_urlPrefix='<a  rel="nofollow" href="http://paigemorgan.net/timeline/timeline_js/">http://paigemorgan.net/timeline/timeline_js/</a>';
>> Timeline_parameters='bundle=true';
>> 
>
>
>  Someone correct my if I'm wrong but within timeline-api.js, the 'bundle'
> parameter controls this if statement:
>
>>
> if (bundle) {
>
> includeJavascriptFiles(Timeline.urlPrefix, [
> "timeline-bundle.js" ]);
>
> includeCssFiles(Timeline.urlPrefix, [
> "timeline-bundle.css" ]);
>
> } else {
>
> includeJavascriptFiles(Timeline.urlPrefix + "scripts/",
> javascriptFiles);
>
> includeCssFiles(Timeline.urlPrefix + "styles/", cssFiles);
>
> }
>
>
> Setting Timeline_parameters='bundle=true'; will use timeline-bundle.js, a
> condensed version of the .js libraries, rather than the ones you modify for
> custom units.
>
> This section of timeline-api.js appears to parse the url/js variable
> parameters:
>
>   var parseURLParameters = function(parameters) {
>
> var params = parameters.split("&");
>
> for (var p = 0; p < params.length; p++) {
>
> var pair = params[p].split("=");
>
> if (pair[0] == "locales") {
>
> desiredLocales = desiredLocales.concat(pair[1
> ].split(","));
>
> } else if (pair[0] == "defaultLocale") {
>
> defaultServerLocale = pair[1];
>
> } else if (pair[0] == "forceLocale") {
>
> forceLocale = pair[1];
>
> desiredLocales = desiredLocales.concat(pair[1
> ].split(","));
>
> } else if (pair[0] == "bundle") {
>
>     bundle = pair[1] != "false";
>
> }
>
> }
>
> };
>
> My only confusion is since date-time.js also needs to be modified (which
> resides in the ajax scripts), will setting 'bundle=true' also trickle into
> simile-ajax-api.js, or does another param need to be included? Looks to be
> initialized to true:
>
> var SimileAjax = {
>
> loaded: false,
>
> loadingScriptsCount:0,
>
> error:  null,
>
> params: { bundle:"true" }
>
> };
>
>
>
> Steve
>
> On Wed, Apr 18, 2012 at 8:59 PM, Paige Morgan wrote:
>
>> Hi,
>>
>> I'm trying to get Simile installed locally, using the full
>> timeline_source_2.3.0.zip, so that I can customize the units of time.
>>
>> The wiki and other resources pointed me to these instructions, which
>> are also contained in the timeline-api.js file
>>
>>
>> http://code.google.com/p/simile-widgets/source/browse/timeline/trunk/src/webapp/api/timeline-api.js?r=2239
>>
>> Those instructions suggest that I ought to be including the following
>> lines of code in my  section.
>>
>> 
>> Timeline_ajax_url="<a  rel="nofollow" href="http://paigemorgan.net/timeline/src/ajax/api/simile-">http://paigemorgan.net/timeline/src/ajax/api/simile-</a>
>> ajax-api.js<<a  rel="nofollow" href="http://paigemorgan.net/timeline/src/ajax/api/simile-ajax-api.js">http://paigemorgan.net/timeline/src/ajax/api/simile-ajax-api.js</a>>
>> "
>> Timeli

Re: [Simile-Widgets] Simile local installation problems?

2012-04-20 Thread Steve Pai
Paige,

Not sure if you got it working yet, but I noticed in your original email:


> Timeline_ajax_url="<a  rel="nofollow" href="http://paigemorgan.net/timeline/src/ajax/api/simile-">http://paigemorgan.net/timeline/src/ajax/api/simile-</a>
> ajax-api.js
> ajax-api.js<<a  rel="nofollow" href="http://paigemorgan.net/timeline/src/ajax/api/simile-ajax-api.js">http://paigemorgan.net/timeline/src/ajax/api/simile-ajax-api.js</a>>
> "
> Timeline_urlPrefix='<a  rel="nofollow" href="http://paigemorgan.net/timeline/timeline_js/">http://paigemorgan.net/timeline/timeline_js/</a>';
> Timeline_parameters='bundle=true';
> 


 Someone correct my if I'm wrong but within timeline-api.js, the 'bundle'
parameter controls this if statement:

>
if (bundle) {

includeJavascriptFiles(Timeline.urlPrefix, [
"timeline-bundle.js" ]);

includeCssFiles(Timeline.urlPrefix, [ "timeline-bundle.css"]);

} else {

includeJavascriptFiles(Timeline.urlPrefix + "scripts/",
javascriptFiles);

includeCssFiles(Timeline.urlPrefix + "styles/", cssFiles);

}


Setting Timeline_parameters='bundle=true'; will use timeline-bundle.js, a
condensed version of the .js libraries, rather than the ones you modify for
custom units.

This section of timeline-api.js appears to parse the url/js variable
parameters:

  var parseURLParameters = function(parameters) {

var params = parameters.split("&");

for (var p = 0; p < params.length; p++) {

var pair = params[p].split("=");

if (pair[0] == "locales") {

desiredLocales = desiredLocales.concat(pair[1
].split(","));

} else if (pair[0] == "defaultLocale") {

defaultServerLocale = pair[1];

} else if (pair[0] == "forceLocale") {

forceLocale = pair[1];

desiredLocales = desiredLocales.concat(pair[1
].split(","));

} else if (pair[0] == "bundle") {

bundle = pair[1] != "false";

}

}

};

My only confusion is since date-time.js also needs to be modified (which
resides in the ajax scripts), will setting 'bundle=true' also trickle into
simile-ajax-api.js, or does another param need to be included? Looks to be
initialized to true:

var SimileAjax = {

loaded: false,

loadingScriptsCount:0,

error:  null,

params: { bundle:"true" }

};



Steve

On Wed, Apr 18, 2012 at 8:59 PM, Paige Morgan wrote:

> Hi,
>
> I'm trying to get Simile installed locally, using the full
> timeline_source_2.3.0.zip, so that I can customize the units of time.
>
> The wiki and other resources pointed me to these instructions, which
> are also contained in the timeline-api.js file
>
>
> http://code.google.com/p/simile-widgets/source/browse/timeline/trunk/src/webapp/api/timeline-api.js?r=2239
>
> Those instructions suggest that I ought to be including the following
> lines of code in my  section.
>
> 
> Timeline_ajax_url="<a  rel="nofollow" href="http://paigemorgan.net/timeline/src/ajax/api/simile-">http://paigemorgan.net/timeline/src/ajax/api/simile-</a>
> ajax-api.js"
> Timeline_urlPrefix='<a  rel="nofollow" href="http://paigemorgan.net/timeline/timeline_js/">http://paigemorgan.net/timeline/timeline_js/</a>';
> Timeline_parameters='bundle=true';
> 
>
> http://paigemorgan.net/timeline/src/webapp/api/timeline-</a>
> api.js?bundle=true"
> type="text/javascript">
> 
>
> I am -- but I'm not having any luck loading timeline. The page I'm
> trying to load is here: http://www.paigemorgan.net/timelines/demo.html
>
> I tried it with a simple timeline from David Karger's really great
> tutorial here http://people.csail.mit.edu/karger/Exhibit/CAR/HandsOn/
> -- which is where I originally learned to use Simile Timeline -- but
> no luck.
>
> I've checked the archives for this group, and googled creatively --
> but I'm not finding any solutions. Can anyone here suggest anything? I
> would be tremendously grateful.
>
> Thanks,
>
> Paige
>
> --
> You received this message because you are subscribed to the Google Groups
> "SIMILE Widgets" group.
> To post to this group, send email to simile-widgets@googlegroups.com.
> To unsubscribe from this group, send email to
> simile-widgets+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/simile-widgets?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to simile-widgets@googlegroups.com.
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en.



[Simile-Widgets] Re: Not sure where this value is, and can I use it for proportional symbols

2012-04-08 Thread Steve
To the group,

Any thoughts from anyone on the below.  I have a school project and this 
would be very helpful to understand how to get at the value within the map 
marker.

thank you!

Steve

On Saturday, April 7, 2012 7:47:07 AM UTC-4, Steve wrote:
>
> To the group,
>
> I apologize up front for not understanding where this value resides.  
>
> I am using the Map View of Exhibit 2.x and when I have items that reside 
> at the same coordinates, the marker on the map groups them and place a 
> number in the marker that shows the total of items that exist at that 
> location.  I would like to use this value in the marker that I am 
> specifying (ex:sizeKey=) for another map that I implement proportional 
> markers?  I just cannot seem to find anything that tells me how to 
> reference this value?
>
> Can anyone help me determine what value should go within the "" on this 
> statement ex:sizeKey=""  that uses the value contained with the marker?
>
> thanks so much...
>
> Steve
>

-- 
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/simile-widgets/-/jKqZQidWyx8J.
To post to this group, send email to simile-widgets@googlegroups.com.
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en.



[Simile-Widgets] Not sure where this value is, and can I use it for proportional symbols

2012-04-07 Thread Steve
To the group,

I apologize up front for not understanding where this value resides.  

I am using the Map View of Exhibit 2.x and when I have items that reside at 
the same coordinates, the marker on the map groups them and place a number 
in the marker that shows the total of items that exist at that location.  I 
would like to use this value in the marker that I am specifying 
(ex:sizeKey=) for another map that I implement proportional markers?  I 
just cannot seem to find anything that tells me how to reference this value?

Can anyone help me determine what value should go within the "" on this 
statement ex:sizeKey=""  that uses the value contained with the marker?

thanks so much...

Steve

-- 
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/simile-widgets/-/Kc_YVyYYTdkJ.
To post to this group, send email to simile-widgets@googlegroups.com.
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en.



[Simile-Widgets] Please, need help for a school project

2012-04-04 Thread Steve
To the group,

What I would like to do is to be able to map an object to multiple (more 
than 1, but could be more than 3 or 4) different sets of longitude and 
latitude coordinates.  I have been play around with proxy, in Exhibit Map, 
but not sure if this is my best solution.  Can anyone send me an example 
json file and associated code?

thanks

Steve

Steve,

I'd suggest that you email simile-widgets@googlegroups.com, as there are 
more people there to help you out. I'm no longer providing technical 
support for Simile Exhibit myself.

David

On Wed, Apr 4, 2012 at 12:49 PM, David Huynh  wrote:

>
>
>  Original Message 
> Subject: Need your help on a class project using Exhibit Map, ex:proxy 
> attribute?
> From: "Martino, Steve" 
> To: dfhu...@csail.mit.edu
> CC: 
>
> David,
>
> I am sorry to bother you, but I selected Simile Exhibit for a class 
> project at Harvard and I need to be able to plot on a Map a species of a 
> particular tropical fish that exists in multiple locations, lets say 
> Brazil, South America, and Cambridge, Ma.
>
> I have been reading through the documentation for proxy: and this seems to 
> be what I want to do, but I can't seem to get it setup correctly.
>
> Here is my map div:
>
>  ex:viewClass="Map"
> ex:type="normal"
> ex:overviewControl="True"
> ex:label="Distribution"
> ex:lat=".latitude"
> ex:lng=".longitude"
> ex:colorKey=".party"
> ex:colorCoder="party-colors"
> ex:center="-10.0, -55.0"
> ex:scaleControl="true"
> ex:zoom="5"
> ex:bubbleWidth="50"
> ex:bubbleHeight="50"
> ex:icon=".imageURL"
> ex:shape="rectangle"
> ex:shapeWidth="40"
> ex:shapeHeight="30"
> ex:mapHeight="1024"
> >
>
>
>
> I am using a json file for my data that contains, you will notice in the 
> distribution field that this tropical fish can exist in multiple locations, 
> and I have two longitude and latitude coordinates below ( I actually just 
> made them up, for my app to work currently, I can only use one of them..
>
> Can you help?
>
> Thanks
>
> Steve
>
> {   label: 'L001',
> type: 'Loricariidae',
> pronunciation: 'terry gop LICK thees',
> scientificname: 'Pterygoplichthys joselimaianus  Weber, 1991',
> commonname: ["L-Number Only"],
> imageURL: '
> http://www.planetcatfish.com/images/thumb/loricariidae/pterygoplichthys/joselimaianus/2.jpg
> ',
> url: '
> http://www.planetcatfish.com/pterygoplichthys_joselimaianus',
> identification: 'Pterygoplichthys can be identified by the 
> number of rays in the dorsal fin. More than 10 indicates that its a 
> Pterygoplichthys. Most other plecos have 8 or fewer rays (in particular the 
> larger Hypostomus species that are most likely to be confused with 
> Pterygoplichthys). L001 is the same as L022.',
> distribution: [ "Tocantins River basin", "Amazon", "Lower 
> Amazon", "Tocantins" ]
> },
>
> {   id: 'L001',
> longitude:'-49.5133781433105',
> latitude: '-2.25272011756897'
> },
> {   id: 'L001',
> longitude:'-47.1000',
> latitude: '-1.5500'
> },
>
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/simile-widgets/-/h7fDGRx-Kk8J.
To post to this group, send email to simile-widgets@googlegroups.com.
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en.



Re: [Simile-Widgets] Twitter stream on simile timeline at pinkeepr.com

2012-03-23 Thread steve white
I like that when you click on hashtag it shows the timeline of it, but when
you go all the way back and it tells you no more tweets from twitter, (in
latest firefox and chrome) it gets stuck, maybe a timeline issue?

On Mon, Mar 19, 2012 at 2:28 PM, Pinkeepr.com  wrote:

> Hi all,
>
> I have built a small personnal project around Twitter to display twitter
> stream over the (great!) simile timeline widget at http://pinkeepr.com/
> I would be happy to have your comments/ideas!
>
> See u,
>
> --
> You received this message because you are subscribed to the Google Groups
> "SIMILE Widgets" group.
> To view this discussion on the web visit
> https://groups.google.com/d/msg/simile-widgets/-/cS-jASo_7vkJ.
> To post to this group, send email to simile-widgets@googlegroups.com.
> To unsubscribe from this group, send email to
> simile-widgets+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/simile-widgets?hl=en.
>

-- 
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to simile-widgets@googlegroups.com.
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en.



Re: [Simile-Widgets] Creating a vertical bar in the timeline

2012-03-22 Thread Steve Pai
Thank you Mike, that helped a lot. Again, great explanation :)

On Wed, Mar 21, 2012 at 11:33 AM, Michael Nosal  wrote:

>
> On Mar 20, 2012, at 5:19 PM, Steve Pai wrote:
>
> > Michael, another question for you if you don't mind:
> >
> > I'd like to define start/end time in the form: '2000-01-01' rather than
> just year. If I change format in the JSON source file, the timeline appears
> to hit an error while trying to parse it. So, I assumed that we needed to
> leverage the .parseGregorianDateTime function:
> >
> >   var deco = new Timeline.SpanHighlightDecorator({
> >   startDate :
> Timeline.DateTime.parseGregorianDateTime(span.start),
> >   endDate :
> Timeline.DateTime.parseGregorianDateTime(span.end),
> >   startLabel : span.title,
> >   color : span.color
> >   });
> >
> > However, this does not seem to work either. Is there another parameter I
> am missing?
> >
> > Steve
>
> This causes lots of confusion for folks.
> parseGregorianDateTime() basically tries to do two things with a date
> string:
> If it's less than 8 chars long, it assumes it is a year value.
> e.g. parseGregorianDateTime will return:
> "1995" -> Sun Jan 1 1995
>
> If it is more than 8 chars long, then it calls the JS Date.parse method.
> This takes dates in the RFC2822 / IETF date syntax:
> "Mon, Dec 25 1995" or "25 Dec 1995" or "December 25, 1995".
>
> Browsers differ in their support of date formats that are not RFC2822. For
> example, Firefox supports a subset of ISO8601 date formats. Firefox will
> parse "1995-12-25", Safari will not. Firefox and Safari will parse
> "12/25/1995" but not "12-25-1995". IE9 supports the ISO8601 date formats.
> If the date format is not ISO8601, then IE will attempt to parse the date
> by using (in their words) "other parsing rules".
>
> So your best bets are to format your dates as "25 Dec 1995" or
> "12/25/1995" if you want to use parseGregorianDateTime.
>
> You say you want to define your dates as "2000-01-01", which is a subset
> of the ISO8601 format.
> You can use Timeline.DateTime.parseIso8601DateTime("1995-12-25").
>
> Hope this helps.
> --Mike
>
> --
> You received this message because you are subscribed to the Google Groups
> "SIMILE Widgets" group.
> To post to this group, send email to simile-widgets@googlegroups.com.
> To unsubscribe from this group, send email to
> simile-widgets+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/simile-widgets?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to simile-widgets@googlegroups.com.
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en.



Re: [Simile-Widgets] Creating a vertical bar in the timeline

2012-03-20 Thread Steve Pai
Michael, another question for you if you don't mind:

I'd like to define start/end time in the form: '2000-01-01' rather than
just year. If I change format in the JSON source file, the timeline appears
to hit an error while trying to parse it. So, I assumed that we needed to
leverage the .parseGregorianDateTime function:

var deco = new Timeline.SpanHighlightDecorator({
startDate : Timeline.DateTime.parseGregorianDateTime(span.start),
endDate : Timeline.DateTime.parseGregorianDateTime(span.end),
startLabel : span.title,
color : span.color
});

However, this does not seem to work either. Is there another parameter I am
missing?

Steve

On Tue, Mar 20, 2012 at 1:38 PM, Steve Pai  wrote:

> Michael, I can't thank you enough! Extremely helpful example. :)
>
>
> On Tue, Mar 20, 2012 at 1:10 PM, Michael Nosal  wrote:
>
>> Simple example - lets add decorators to the Life of Monet example (
>> http://simile-widgets.org/timeline/examples/monet/monet.html)
>>
>> Make a json file with the dates for your decorators (wars.json):
>> [{"title":"Crimean War",start:"1853",end:"1856"},
>>  {"title":"Algerian War",start:"1830",end:"1847"},
>>  {"title":"Franco-Prussian War",start:"1870",end:"1871"}]
>>
>> Decorators are specified as part of the bandInfos, but no reason we can't
>> add them after the fact. Let's add a method to _Band:
>> Timeline._Band.prototype.addDecorator = function(decorator) {
>> this._decorators.push(decorator);
>> decorator.initialize(this,this._timeline);
>>  decorator.paint();
>> }
>>
>> (Don't modify the Timeline source code to do this, instead load this
>> function as part of your own code, either as a .js script or as a 

Re: [Simile-Widgets] Creating a vertical bar in the timeline

2012-03-20 Thread Steve Pai
Michael, I can't thank you enough! Extremely helpful example. :)

On Tue, Mar 20, 2012 at 1:10 PM, Michael Nosal  wrote:

> Simple example - lets add decorators to the Life of Monet example (
> http://simile-widgets.org/timeline/examples/monet/monet.html)
>
> Make a json file with the dates for your decorators (wars.json):
> [{"title":"Crimean War",start:"1853",end:"1856"},
>  {"title":"Algerian War",start:"1830",end:"1847"},
>  {"title":"Franco-Prussian War",start:"1870",end:"1871"}]
>
> Decorators are specified as part of the bandInfos, but no reason we can't
> add them after the fact. Let's add a method to _Band:
> Timeline._Band.prototype.addDecorator = function(decorator) {
> this._decorators.push(decorator);
> decorator.initialize(this,this._timeline);
> decorator.paint();
> }
>
> (Don't modify the Timeline source code to do this, instead load this
> function as part of your own code, either as a .js script or as a 

Re: [Simile-Widgets] Creating a vertical bar in the timeline

2012-03-20 Thread Steve Pai
Thanks for clearing that up Michael. Re-reading the JFK example makes a lot
more sense now.

Do you have any examples I can reference?  So if I understand correctly,
within the timeline script I would have something like:

Timeline.SpanHighlightDecorator({
startDate:  startDate ,
endDate:endDate
});


Do I then use loadJSON to specify the source file? Sorry, this is all still
very new to me.

Steve


On Tue, Mar 20, 2012 at 12:05 PM, Michael Nosal  wrote:

> These can be created with SpanHighlightDecorators. HotZones are used to
> expand/compress a span of time. SpanHighlightDecorators simply draw the
> highlighted region on the timeline band.
> You can easily specify these start/end times in a JSON file, which is
> loaded via ajax and then processed to create SpanHighlightDecorators.
>
> --Mike
>
> On Mar 17, 2012, at 4:43 PM, SteveP wrote:
>
> My goal is to create something similar to the picture attached below. This
> is from the JFK example.
>
> Am I limited to creating hot zones, or is there another method, preferably
> one I can specify in a JSON source file?
>
>
> <https://lh6.googleusercontent.com/-dgNrOs00XYo/T2TztT6IHZI/AKs/VOmUZSgR62g/s1600/Screen+Shot+2012-03-17+at+1.22.30+PM.png>
>
>
>  --
> You received this message because you are subscribed to the Google Groups
> "SIMILE Widgets" group.
> To post to this group, send email to simile-widgets@googlegroups.com.
> To unsubscribe from this group, send email to
> simile-widgets+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/simile-widgets?hl=en.
>

-- 
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to simile-widgets@googlegroups.com.
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en.



Re: [Simile-Widgets] Simile Timeline Event HTML CSS Customisation

2012-03-16 Thread Steve Pai
Are you talking about the event_tape being custom?  Look at the examples
"test_example_2" - it shows you how to accomplish this using 'classname'

Also look back on my previous question 'custom event tapes', it has a bit
more information in there if test_example_2 is not clear.

Steve

On Mon, Mar 12, 2012 at 6:46 AM, yuvraj singh  wrote:

> Hi all
>
> I am working in Simile Compact Painter widget. I have one question
> that I need to customize timeline event that are in main area. Can we
> implement our own design using html and css.
>
> Please help.
>
> Thanks
> Roshi
>
> --
> You received this message because you are subscribed to the Google Groups
> "SIMILE Widgets" group.
> To post to this group, send email to simile-widgets@googlegroups.com.
> To unsubscribe from this group, send email to
> simile-widgets+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/simile-widgets?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to simile-widgets@googlegroups.com.
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en.



Re: [Simile-Widgets] show the tape and the label event in the same line... label inside tape... :S

2012-03-16 Thread Steve Pai
I don't know if this functionality is actually built in. Have not seen in
any of the examples either. If I'm wrong, all the better. I'd love to be
able to place my labels inside the bar/event_tape

2012/3/16 Bryan Andrés Echegoyen Rozas 

> please, help :/
>
> --
> You received this message because you are subscribed to the Google Groups
> "SIMILE Widgets" group.
> To post to this group, send email to simile-widgets@googlegroups.com.
> To unsubscribe from this group, send email to
> simile-widgets+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/simile-widgets?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to simile-widgets@googlegroups.com.
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en.



Re: [Simile-Widgets] Exhibit timeline extension

2012-02-24 Thread Steve Pai
I also have the same question. Anyone know?

On Fri, Feb 24, 2012 at 9:14 AM, Sandeep  wrote:

> Is there a way to align items on the vertical plane (y-axis) with the
> Exhibit timeline extension? I wish to display grades on it, but I
> could not see how to do this in the documentation.
>
> --
> You received this message because you are subscribed to the Google Groups
> "SIMILE Widgets" group.
> To post to this group, send email to simile-widgets@googlegroups.com.
> To unsubscribe from this group, send email to
> simile-widgets+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/simile-widgets?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to simile-widgets@googlegroups.com.
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en.



Re: [Simile-Widgets] Custom Event Tapes

2012-02-23 Thread Steve Pai
Never mind. Figured it out :)  There is an example in 'test_example2'
within the examples section.

If anyone searches this in the future, all you have to do is to create the
gradient you want using the colorzilla generator, then define it in your
.css class like so:

.tape-gradient-blue {
/* paste output from generator here */
}

Then within you JSON or XML data source, define the 'classname' (rather
than 'color') as the name of your css gradient (.tape-gradient-blue in this
case)

{'start':'100','end':'200','title':'blah','description':'foo','link':'blarg',
'classname':'tape-gradient-blue'}

On Wed, Feb 22, 2012 at 4:30 PM, SteveP  wrote:

> Hi,
>
> My goal is to create custom event tapes. Ive seen this example where
> it is turned into a stripe:
>
>
> http://simile-widgets.googlecode.com/svn/timeline/tags/latest/src/webapp/examples/test_example/test.html
>
> Can anyone explain to me what is necessary to use something like this
> gradient generator:
>
> http://www.colorzilla.com/gradient-editor/
>
> to create bands/tapes that "pop" ?
>
> Thank You!
> Steve
>
> --
> You received this message because you are subscribed to the Google Groups
> "SIMILE Widgets" group.
> To post to this group, send email to simile-widgets@googlegroups.com.
> To unsubscribe from this group, send email to
> simile-widgets+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/simile-widgets?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to simile-widgets@googlegroups.com.
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en.



Re: [Simile-Widgets] Custom Timeline ranges, that are not time based?

2012-02-14 Thread Steve Pai
Thanks David, that helped a lot. I'll try to pick through the source and
see if I can figure it out.

Steve

On Tue, Feb 14, 2012 at 8:22 AM, David Karger  wrote:

> It was used for a gene map here:
> http://substrate.burnham.org/**protein/annotation/789/html<http://substrate.burnham.org/protein/annotation/789/html>
> I'm not sure how much specialized coding was done.
>
>
> On 2/7/2012 4:32 PM, SteveP wrote:
>
>> Has anyone used the Simile Timeline widget to create a "timeline" that
>> is not time based?
>>
>> For example A1, A2, ...A12, B1, B2, , B12, C1, C2, ...
>>
>> I've looked at the documentation on creating custom date ranges,
>> however, they appear to all still be based on time.
>>
>> Thanks!
>> Steve
>>
>>

-- 
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to simile-widgets@googlegroups.com.
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en.



Re: [Simile-Widgets] Timeline monthly date into daily

2012-02-14 Thread Steve Pai
Is this what you are looking for?

http://www.simile-widgets.org/wiki/How_to_create_own_date_ranges

On Fri, Feb 10, 2012 at 4:40 AM, Martin Johansson wrote:

> Yeah, so uhm.. I've been using the Timeline that is provided by the
> MIT team with an overview over a monthly basis. However, I'd like to
> make it into a daily basis with hourly milestones instead.
> Unfortunately I'm not so good with Java Programming yet so I'm not
> really sure where to modify the code to make it work.
>
> Just to clarify, now the timeline shows an overview over the months
> and years, but I want to change it so it shows every hour for the
> specific date instead.
>
> Appreciate the time taken, thanks.
>
> Kind regards, Martin
>
> --
> You received this message because you are subscribed to the Google Groups
> "SIMILE Widgets" group.
> To post to this group, send email to simile-widgets@googlegroups.com.
> To unsubscribe from this group, send email to
> simile-widgets+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/simile-widgets?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to simile-widgets@googlegroups.com.
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en.



[Simile-Widgets] Re: Timeline: odd behavior when timeline div needs to be scrolled to in IE 8

2011-09-12 Thread Steve Shaw
Thanks, Mike! That worked like a charm.

On Sep 12, 2:02 pm, Michael Nosal  wrote:
> The problem happens when the user has scrolled the window - Simile clears the 
> popup before the event can bubble up to the link element.
> The problem is that the vertical scroll offset is not being taken into 
> account in IE.
> Modern doctypes and IE8 can cause issues.
> I think this should work:
>
> SimileAjax.DOM.getEventPageCoordinates = function(evt) {
>     if (SimileAjax.Platform.browser.isIE) {
>       if (document.documentElement) {
>         // use document.documentElement instead of body with doctype 4.01+ or 
> xhtml
>           return {
>               x: evt.clientX + document.documentElement.scrollLeft,
>               y: evt.clientY + document.documentElement.scrollTop
>           };
>       }
>       else {
>           return {
>               x: evt.clientX + document.body.scrollLeft,
>               y: evt.clientY + document.body.scrollTop
>           };
>       }
>     } else {
>         return {
>             x: evt.pageX,
>             y: evt.pageY
>         };
>     }
>
> };
>
> --Mike
>
> On Sep 9, 2011, at 3:02 PM, Steve Shaw wrote:
>
>
>
>
>
>
>
> > Hi,
>
> > I've inherited a system that uses the timeline package to display a
> > timeline. I've been wrestling with a bug in IE 8 where the link in a
> > pop-up bubble cannot be clicked. After a few hours, I've narrowed it
> > down to a specific problem: if the timeline div does not appear on the
> > page originally (in other words, it has to be scrolled to), then the
> > pop-up bubble links do not work.
>
> > I've put two examples up:
> > -http://steveshaw.ca/samples/TimelinePage.htmlworks for me in IE8
> > -http://steveshaw.ca/samples/TimelinePageBroken.htmldoes not work in
> > IE 8
>
> > These are simplified from the code I'm actually using but demonstrate
> > the problem.
>
> > The only difference between the pages is the height of the spacer div
> > - in the working example, it's 500px and in the broken example it's
> > 900 px. That's enough on my current setup to force a scroll to see the
> > timeline. When I try to click on the link in the pop-up, nothing
> > happens (except the pop-up disappearing). If I view the broken page
> > with a "tall" screen I don't see the error.
>
> > Another way to recreate the error is to resize the browser to a
> > smaller screen and load the working page. It no longer works once I
> > scroll to the div containing the timeline.
>
> > Both pages work as expected in Firefox.
>
> > Any ideas or suggestions?
> > -Steve
>
> > p.s. there's no way I would believe this error report without seeing a
> > working example. I really hope it's not some artifact of my installed
> > browser.

-- 
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to simile-widgets@googlegroups.com.
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en.



[Simile-Widgets] Timeline: odd behavior when timeline div needs to be scrolled to in IE 8

2011-09-09 Thread Steve Shaw
Hi,

I've inherited a system that uses the timeline package to display a
timeline. I've been wrestling with a bug in IE 8 where the link in a
pop-up bubble cannot be clicked. After a few hours, I've narrowed it
down to a specific problem: if the timeline div does not appear on the
page originally (in other words, it has to be scrolled to), then the
pop-up bubble links do not work.

I've put two examples up:
- http://steveshaw.ca/samples/TimelinePage.html works for me in IE8
- http://steveshaw.ca/samples/TimelinePageBroken.html does not work in
IE 8

These are simplified from the code I'm actually using but demonstrate
the problem.

The only difference between the pages is the height of the spacer div
- in the working example, it's 500px and in the broken example it's
900 px. That's enough on my current setup to force a scroll to see the
timeline. When I try to click on the link in the pop-up, nothing
happens (except the pop-up disappearing). If I view the broken page
with a "tall" screen I don't see the error.

Another way to recreate the error is to resize the browser to a
smaller screen and load the working page. It no longer works once I
scroll to the div containing the timeline.

Both pages work as expected in Firefox.

Any ideas or suggestions?
-Steve

p.s. there's no way I would believe this error report without seeing a
working example. I really hope it's not some artifact of my installed
browser.

-- 
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to simile-widgets@googlegroups.com.
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en.



[Simile-Widgets] Vertical Scroll

2011-07-08 Thread Steve K
I am trying to add vertical scroll functionality to my timeline. I
have followed the instructions here:
http://code.google.com/p/simile-widgets/wiki/Timeline_VerticalScrollbar
and modified my timelinecontainer css and my setBandShiftAndWidth
function, but it is still not working.  How do I get this working?

-- 
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to simile-widgets@googlegroups.com.
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en.



[Simile-Widgets] Timeline vertical scroll

2011-06-24 Thread Steve K
I am trying to add vertical scroll functionality to my timeline like
the kind shown here:

http://simile.mit.edu/wiki/Timeline/vertical_scrollbar

But their solution does not work.  I assume it is because the
documentation is outdated.  How do I do this with the current version
of timeline?

-- 
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to simile-widgets@googlegroups.com.
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en.



[Simile-Widgets] Re: "latestStart" from Google Spreadsheet?

2010-11-01 Thread Steve
Hi Michiel!
You made my day! Many thanks for your quick and sucessfull work!
Found a little typo and i can't get colorkey to work, see: 409http://
code.google.com/p/simile-widgets/issues/detail?id=409

Would it be possible to add the "trackNum" function as well? My goal
is to place the bars on the timeline in geographical order (from south
to north).

Greetings,
Steve


On 1 Nov., 09:11, Michiel  wrote:
> Hi Steve,
>
> You are right, "latestStart" and "earliestEnd" don't work when you use
> a Timeline from within an Exhibit. It only takes a little bit of code
> to get it to work. I created issue 
> 409http://code.google.com/p/simile-widgets/issues/detail?id=409
> on the issue tracker so that you and future people can easily use it.
> Load the file you find there after loading exhibit and its time
> extension. Please add failure or success with it to the issue tracker.
>
> Michiel
>
> On Oct 31, 9:28 pm, Steve  wrote:
>
> > I would like to use the "latestStart", "earliestEnd" and "trackNum"
> > attributes as shown 
> > athttp://www.simile-widgets.org/timeline/examples/test_example/test.html
> > from a google spreadsheet source.
> > That seems to be the perfect tool for a common research programm, i am
> > involved in.
>
> > The examples athttp://www.simile-widgets.org/timeline/examples/index.html
> > don't show this feature as for Exhibit, but i hope it is possible and
> > would be glad for any help.
>
> > Thanks in advance,
> > Steve

-- 
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to simile-widg...@googlegroups.com.
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en.



[Simile-Widgets] "latestStart" from Google Spreadsheet?

2010-10-31 Thread Steve
I would like to use the "latestStart", "earliestEnd" and "trackNum"
attributes as shown at 
http://www.simile-widgets.org/timeline/examples/test_example/test.html
from a google spreadsheet source.
That seems to be the perfect tool for a common research programm, i am
involved in.

The examples at http://www.simile-widgets.org/timeline/examples/index.html
don't show this feature as for Exhibit, but i hope it is possible and
would be glad for any help.

Thanks in advance,
Steve

-- 
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to simile-widg...@googlegroups.com.
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en.



Re: [Simile-Widgets] Re: Problem getting timeline events onto a timeplot graph as per the tutorial

2010-09-01 Thread Steve Cox
Hi,

Thanks, but the events were still missing. I've found the issue though
- just a dumb typo. Webdeveloper on Firefox wasn't properly catching
the error (it was saying "invalid 'in' operand F). Anyway, the typo -
instead of:

timeplot.loadXML("events.xml", eventSource2);

I had:

timeplot.loadXML("events.xml", ",", eventSource2);

with the errant "," parameter copied over from the

timeplot.loadText("events.csv", ",", eventSource2); call.

I have the corrected code at:

http://ffatsatina.com/test/test2.html

Annoyingly though, Chrome does not seem to want to use the lineColor
of the event so you have to hover over it to see it. Whereas firefox
does show it.

Chrome (5.0.375.127): http://imagebin.ca/view/fVKvzG.html

Firefox (3.5.11): http://imagebin.ca/view/lQM8jB.html

Many thanks for your help.
Cheers,
Steve


On 1 September 2010 13:55, Jakob Fix  wrote:
>
> Hi Steve,
>
> it shows OK for me, even though there are two errors displayed in the
> javascript debugger, in the simile-ajax-bundle.js file. you have
> cleared your cache?
>
> see here: http://imagebin.ca/view/ktPwQM7s.html
>
> cheers,
> Jakob.
>
>
>
> On Wed, Sep 1, 2010 at 02:26, SteveO  wrote:
> > Thanks - my mistake but the issue is still there. The actual code is
> > PHP driven but I (unsuccessfully) stripped it down to simple HTML to
> > set up the example.
> >
> > I've put in static max values so the code should be clean now. I would
> > really appreciate it if you could have a look again?
> >
> > Thanks,
> > Steve
> >
> > On Aug 31, 5:47 pm, Jakob Fix  wrote:
> >> Hi Steve,
> >>
> >> you've got non-interpreted php tags in the code of test.html (where
> >> you're calculating a max value) on line 19 and 23, says Chrome's
> >> javascript debugger.
> >>
> >> Once you've fixed these problems, you may get better results already.
> >>
> >> cheers,
> >> Jakob.
> >>
> >> On Tue, Aug 31, 2010 at 17:16, Steve Cox  wrote:
> >> > Hi,
> >>
> >> > I've been following the timeplot tutorial here:
> >>
> >> >http://www.simile-widgets.org/timeplot/docs/
> >>
> >> > But cannot accomplish the final step of getting the timeline events to
> >> > appear. There is an occasional js error but that seems to apply to error
> >> > handling code so I can't really see what's going on.
> >>
> >> > I'm using firefox 3.5.11.
> >>
> >> > I've set up a very simple example is someone could be good enough to 
> >> > check
> >> > out what I may have done wrong. The main page is:
> >>
> >> >http://92.48.117.50/~ffatsati/test/test.html
> >>
> >> > and the timeplot and event files are respectively:
> >>
> >> >http://92.48.117.50/~ffatsati/test/test.csv
> >>
> >> > and
> >>
> >> >http://92.48.117.50/~ffatsati/test/test.xml
> >>
> >> > Many thanks for your consideration.
> >>
> >> > --
> >> > You received this message because you are subscribed to the Google Groups
> >> > "SIMILE Widgets" group.
> >> > To post to this group, send email to simile-widg...@googlegroups.com.
> >> > To unsubscribe from this group, send email to
> >> > simile-widgets+unsubscr...@googlegroups.com.
> >> > For more options, visit this group at
> >> >http://groups.google.com/group/simile-widgets?hl=en.
> >
> > --
> > You received this message because you are subscribed to the Google Groups 
> > "SIMILE Widgets" group.
> > To post to this group, send email to simile-widg...@googlegroups.com.
> > To unsubscribe from this group, send email to 
> > simile-widgets+unsubscr...@googlegroups.com.
> > For more options, visit this group at 
> > http://groups.google.com/group/simile-widgets?hl=en.
> >
> >
>
> --
> You received this message because you are subscribed to the Google Groups 
> "SIMILE Widgets" group.
> To post to this group, send email to simile-widg...@googlegroups.com.
> To unsubscribe from this group, send email to 
> simile-widgets+unsubscr...@googlegroups.com.
> For more options, visit this group at 
> http://groups.google.com/group/simile-widgets?hl=en.
>

-- 
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to simile-widg...@googlegroups.com.
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en.



[Simile-Widgets] Problem getting timeline events onto a timeplot graph as per the tutorial

2010-08-31 Thread Steve Cox
Hi,

I've been following the timeplot tutorial here:

http://www.simile-widgets.org/timeplot/docs/

But cannot accomplish the final step of getting the timeline events to
appear. There is an occasional js error but that seems to apply to error
handling code so I can't really see what's going on.

I'm using firefox 3.5.11.

I've set up a very simple example is someone could be good enough to check
out what I may have done wrong. The main page is:

http://92.48.117.50/~ffatsati/test/test.html

and the timeplot and event files are respectively:

http://92.48.117.50/~ffatsati/test/test.csv

and

http://92.48.117.50/~ffatsati/test/test.xml

Many thanks for your consideration.

-- 
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to simile-widg...@googlegroups.com.
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en.



[Simile-Widgets] Re: Simile Exhibit default map markers broken

2010-06-29 Thread Steve
That's the puppy - I should have joined the group ages ago so I could
keep up with the changes ;-)

Thanks very much for your help...

Steve

On Jun 29, 2:34 pm, John Callahan  wrote:
> Do these apps use the old
>
> http://static.simile.mit.edu/exhibit/api-2.0/exhibit-api.js
>
> or the current
>
> http://api.simile-widgets.org/exhibit/2.2.0/exhibit-api.js
>
> Please use the latter (api.simile)   This will call the
> appropriate/current painter service as well.
>
> - John
>
> **
> John Callahan, Geographic Information Scientist
> Delaware Geological Survey, University of Delaware
> URL:http://www.dgs.udel.edu
> **
>
> On Tue, Jun 29, 2010 at 4:49 AM, Steve Gardner wrote:
>
> >  I am unable to display the default map marker icons on Map pages that
> > have currently worked.  It looks as though the map markers (and the default
> > size coder icon (circles)) have been moved and the icons are unavailable, so
> > I get a functional page but with invisible markers which is less than
> > helpful.  You can see that the markers have been rendered on the map as the
> > cursor changes on rollover and selects properly, but the image is not
> > displaying and I get an image not found icon in the colour and size coder
> > legends.
>
> > Example pages:
> >http://www.biolauncher.com/Biopharma%20Manufacturing%20Plants.htm(uses
> > map markers)
> >http://www.biolauncher.com/BioprocessingSites.html(uses size coder)
> >http://gvn.rhizomatics.org.uk/glasgowguide.html(someone else's site)
>
> > The problem occurs on every browser I've tried FF3.5, IE8, Chrome etc. on
> > Win 7 and Vista
>
> > Can anyone help fix this please?
>
> > Cheers
>
> > Steve
> > --
>
> >   --
> > You received this message because you are subscribed to the Google Groups
> > "SIMILE Widgets" group.
> > To post to this group, send email to simile-widg...@googlegroups.com.
> > To unsubscribe from this group, send email to
> > simile-widgets+unsubscr...@googlegroups.com
> > .
> > For more options, visit this group at
> >http://groups.google.com/group/simile-widgets?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to simile-widg...@googlegroups.com.
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en.



[Simile-Widgets] Simile Exhibit default map markers broken

2010-06-29 Thread Steve Gardner
I am unable to display the default map marker icons on Map pages that 
have currently worked.  It looks as though the map markers (and the 
default size coder icon (circles)) have been moved and the icons are 
unavailable, so I get a functional page but with invisible markers which 
is less than helpful.  You can see that the markers have been rendered 
on the map as the cursor changes on rollover and selects properly, but 
the image is not displaying and I get an image not found icon in the 
colour and size coder legends.


Example pages:
http://www.biolauncher.com/Biopharma%20Manufacturing%20Plants.htm (uses 
map markers)

http://www.biolauncher.com/BioprocessingSites.html (uses size coder)
http://gvn.rhizomatics.org.uk/glasgowguide.html (someone else's site)

The problem occurs on every browser I've tried FF3.5, IE8, Chrome etc. 
on Win 7 and Vista


Can anyone help fix this please?

Cheers

Steve
--




--
You received this message because you are subscribed to the Google Groups "SIMILE 
Widgets" group.
To post to this group, send email to simile-widg...@googlegroups.com.
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en.



[Simile-Widgets] Exhibit Facebook application

2010-01-20 Thread Steve
I've created a fun little app using Exhibit for displaying your
Facebook friends available here:

http://apps.facebook.com/socialmine/

Enjoy!
-- 
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to simile-widg...@googlegroups.com.
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en.




Re: Facebook Simile Exhibit

2009-05-02 Thread Steve

Thanks David! And thanks for the tip, I'll make the change.

On May 1, 9:25 am, David Karger  wrote:
> Steve, this is really cool.  I tried to get a graduate student to put
> something like this together, but it never happened.  One quick
> suggestion: in my exhibit, it looks like you'd get a bit more term
> convergence in facets if you regularized capitalization; eg "liberal" =
> "Liberal" in political views.
>

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to simile-widgets@googlegroups.com
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en
-~--~~~~--~~--~--~---



Facebook Simile Exhibit

2009-05-01 Thread Steve

I've created a Facebook application using Exhibit that allows you to
explore your social network. For more details look here:

http://www.stevetrefethen.com/blog/MiningYourFacebookSocialNetwork.aspx
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to simile-widgets@googlegroups.com
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en
-~--~~~~--~~--~--~---



Cubism example

2009-02-28 Thread Steve

Can someone take a look at the following Timeline link.  I tried to
just download the html files and .js files for the cubism example, but
I do not get a timeline at all

thanks

Steve

http://itinfrastructure.hms.harvard.edu/storage/test3.html

I also tried to go through the tutorial, trying to use xml instead,
but it does not seem to work for me...this locations is:

http://itinfrastructure.hms.harvard.edu/storage/projecttimeline.html
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to simile-widgets@googlegroups.com
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en
-~--~~~~--~~--~--~---



Re: Simile timeline to display radio spectrum

2009-01-23 Thread Steve Song

Many thanks Scott.  Checking it out.

A question, if this turns out to be beyond my expertise and/or
patience to do, is there someone in this community who would accept a
modest bounty to do this?

Thanks... Steve

On Jan 22, 11:22 pm, Scott Thomson 
wrote:
> Hi Steve,
>
> You might find this site 
> useful...http://josh-in-antarctica.blogspot.com/2008/03/simile-timeline.html
>
> Josh changed timeline to display depth below sea level instead of time.
>
> Cheers,
> Scott
>
>
>
> On Fri, Jan 23, 2009 at 7:41 AM, Steve Song  wrote:
>
> > Thanks for the quick response Larry.  I'll have a dig into the code
> > and assess the challenge.
>
> > -Steve
>
> > On Jan 22, 4:42 pm, Larry Kluger  wrote:
> > > Hi Steve,
>
> > > Sounds like a great project. You'll need to re-work on the event storage
> > and iterator software (in the Ajax directory) since you will be comparing
> > frequencies, not dates. Currently the events are ordered by dates. You'll
> > also need to change the labeling sw.
>
> > > Difficulty of the project will depend on your software background. In any
> > case, I think Timeline would be the best base for you, but others will have
> > more expert opinions.
>
> > > Good luck and let us know how it goes.
>
> > > Regards,
>
> > > Larry
>
> > > 
> > > From: Steve Song 
> > > To: SIMILE Widgets 
> > > Sent: Thursday, January 22, 2009 9:01:04 AM
> > > Subject: Simile timeline to display radio spectrum
>
> > > Hi,
>
> > > I'd like to use timeline to create a moveable, zoomable bar
> > > representing the radio spectrum, allowing people to see what different
> > > parts of the radio spectrum are used for, possibly being able to
> > > overlay usage in different countries.
>
> > > The timeline software seems ideal except I want to replace years/
> > > months/days with GHz/KHz/Hz.  Is that feasible or is there some other
> > > simile widget that would be better suited to this task?
>
> > > Many thanks in advance for your help... Steve Song
>
> --
> Scott Thomson
> 0401 726 889
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to simile-widgets@googlegroups.com
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en
-~--~~~~--~~--~--~---



Re: Simile timeline to display radio spectrum

2009-01-22 Thread Steve Song

Thanks for the quick response Larry.  I'll have a dig into the code
and assess the challenge.

-Steve

On Jan 22, 4:42 pm, Larry Kluger  wrote:
> Hi Steve,
>
> Sounds like a great project. You'll need to re-work on the event storage and 
> iterator software (in the Ajax directory) since you will be comparing 
> frequencies, not dates. Currently the events are ordered by dates. You'll 
> also need to change the labeling sw.
>
> Difficulty of the project will depend on your software background. In any 
> case, I think Timeline would be the best base for you, but others will have 
> more expert opinions.
>
> Good luck and let us know how it goes.
>
> Regards,
>
> Larry
>
> 
> From: Steve Song 
> To: SIMILE Widgets 
> Sent: Thursday, January 22, 2009 9:01:04 AM
> Subject: Simile timeline to display radio spectrum
>
> Hi,
>
> I'd like to use timeline to create a moveable, zoomable bar
> representing the radio spectrum, allowing people to see what different
> parts of the radio spectrum are used for, possibly being able to
> overlay usage in different countries.
>
> The timeline software seems ideal except I want to replace years/
> months/days with GHz/KHz/Hz.  Is that feasible or is there some other
> simile widget that would be better suited to this task?
>
> Many thanks in advance for your help... Steve Song
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to simile-widgets@googlegroups.com
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en
-~--~~~~--~~--~--~---



Simile timeline to display radio spectrum

2009-01-22 Thread Steve Song

Hi,

I'd like to use timeline to create a moveable, zoomable bar
representing the radio spectrum, allowing people to see what different
parts of the radio spectrum are used for, possibly being able to
overlay usage in different countries.

The timeline software seems ideal except I want to replace years/
months/days with GHz/KHz/Hz.  Is that feasible or is there some other
simile widget that would be better suited to this task?

Many thanks in advance for your help... Steve Song
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to simile-widgets@googlegroups.com
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en
-~--~~~~--~~--~--~---



Removing fields from a sort

2009-01-15 Thread Steve

To the Group,

Can you exclude columns in a Tabular view in exhibit from having the
ability to sort by clicking on the header of the column in Tabular
view?  I have a column that is an icon image and when I click on the
column to sort, it basically hangs the application Perhaps someone
can tell me how to fix it so it does sort, or tell me how to take it
out of the sort so users cannot click on the header and try

Here is the code for the table:



thanks

Steve
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to simile-widgets@googlegroups.com
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en
-~--~~~~--~~--~--~---



Re: displaying the blue ball for events in Exhibit

2009-01-14 Thread Steve

Any thoughts on why the below is not working and will it work with a
Tabular view?

On Jan 13, 8:48 am, Steve  wrote:
> Eric,
>
> Thanks I started down this road, but can't seem to get it to
> work...here is my colorcoder
>
> 
>    http://ora253.dce.harvard.edu:7779/~smartino/final/
> images/StephenMartino.gif">1
>    http://ora253.dce.harvard.edu:7779/~smartino/final/
> images/GlennFull.gif">2
>    http://ora253.dce.harvard.edu:7779/~smartino/final/
> images/JohnBatista.gif">3
>  
>
> And here is the View I am trying to implement it in...
>
> ex:role="view"
>            ex:viewClass="Tabular"
>            ex:colorCoder="health-icons"
>            ex:phealth=".phealth"
>            ex:colorKey=".phealth"
>            ex:label="Table"
>
> ex:columns=".icon, .pstartdate, .penddate, .ppriority, .staffname, .pstatus, 
> .budget, .pdescription, .DetailBio,
> phealth"
>            ex:columnLabels="Photo, Project Start Date, Project End
> Date, Priority, Project Manager, Project Status, Project Budget,
> Project Name, Project Administration, Project Health"
>            ex:formats="date { mode: medium; show: date }"
>            ex:columnFormats="list, date, date, list, list, list, list,
> list, ,list, list"
>            ex:sortColumn="1"
>            ex:sortAscending="true"
>            ex:showToolbox="false"
>
> But I do not see anything changing  Can this be used in a Tabular
> view?
>
> thanks
>
> Steve
>
> On Jan 12, 11:50 am, Eric Pugh 
> wrote:
>
> > If you are using Exhibit, then look at the iconCoder stuff to pick  
> > what image to use.
>
> > Eric
>
> > On Jan 11, 2009, at 8:31 AM, Steve wrote:
>
> > > to the group,
>
> > > I remember that the blue.png ball would display for certain events
> > > (start and end date were equal in timeline view?), but mine do not see
> > > to work...any suggestions would help.
>
> > > the second part is can I always make this ball appear and change the
> > > color of it based on one of my values that in my json data?
>
> > > I have a value of 1, 2, or 3 that I read it from my json data
> > > (.phealth) and I want to display a colored ball based on the value it
> > > is set to, can this be done?
>
> > > thanks
>
> > > Steve
>
> > -
> > Eric Pugh | Principal | OpenSource Connections, LLC | 434.466.1467 
> > |http://www.opensourceconnections.com
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to simile-widgets@googlegroups.com
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en
-~--~~~~--~~--~--~---



Re: displaying the blue ball for events in Exhibit

2009-01-13 Thread Steve

Eric,

Thanks I started down this road, but can't seem to get it to
work...here is my colorcoder


   http://ora253.dce.harvard.edu:7779/~smartino/final/
images/StephenMartino.gif">1
   http://ora253.dce.harvard.edu:7779/~smartino/final/
images/GlennFull.gif">2
   http://ora253.dce.harvard.edu:7779/~smartino/final/
images/JohnBatista.gif">3
 


And here is the View I am trying to implement it in...

ex:role="view"
   ex:viewClass="Tabular"
   ex:colorCoder="health-icons"
   ex:phealth=".phealth"
   ex:colorKey=".phealth"
   ex:label="Table"
 
ex:columns=".icon, .pstartdate, .penddate, .ppriority, .staffname, .pstatus, 
.budget, .pdescription, .DetailBio,
phealth"
   ex:columnLabels="Photo, Project Start Date, Project End
Date, Priority, Project Manager, Project Status, Project Budget,
Project Name, Project Administration, Project Health"
   ex:formats="date { mode: medium; show: date }"
   ex:columnFormats="list, date, date, list, list, list, list,
list, ,list, list"
   ex:sortColumn="1"
   ex:sortAscending="true"
   ex:showToolbox="false"

But I do not see anything changing  Can this be used in a Tabular
view?

thanks

Steve

On Jan 12, 11:50 am, Eric Pugh 
wrote:
> If you are using Exhibit, then look at the iconCoder stuff to pick  
> what image to use.
>
> Eric
>
> On Jan 11, 2009, at 8:31 AM, Steve wrote:
>
>
>
>
>
> > to the group,
>
> > I remember that the blue.png ball would display for certain events
> > (start and end date were equal in timeline view?), but mine do not see
> > to work...any suggestions would help.
>
> > the second part is can I always make this ball appear and change the
> > color of it based on one of my values that in my json data?
>
> > I have a value of 1, 2, or 3 that I read it from my json data
> > (.phealth) and I want to display a colored ball based on the value it
> > is set to, can this be done?
>
> > thanks
>
> > Steve
>
> -
> Eric Pugh | Principal | OpenSource Connections, LLC | 434.466.1467 
> |http://www.opensourceconnections.com
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to simile-widgets@googlegroups.com
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en
-~--~~~~--~~--~--~---



displaying the blue ball for events in Exhibit

2009-01-11 Thread Steve

to the group,

I remember that the blue.png ball would display for certain events
(start and end date were equal in timeline view?), but mine do not see
to work...any suggestions would help.

the second part is can I always make this ball appear and change the
color of it based on one of my values that in my json data?

I have a value of 1, 2, or 3 that I read it from my json data
(.phealth) and I want to display a colored ball based on the value it
is set to, can this be done?

thanks

Steve
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to simile-widgets@googlegroups.com
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en
-~--~~~~--~~--~--~---



couple of questions

2008-12-29 Thread Steve

To the group,

First question, what are the data formats that Exhibit supports?

I know it does Google Spreadsheets, and Excel, json, what else...

2nd question, has anyone every put together and export script or
utility that exports an Oracle Database to anyone of these supported
data sources?

thanks

Steve
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to simile-widgets@googlegroups.com
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en
-~--~~~~--~~--~--~---



Re: Timegrid example

2008-12-22 Thread Steve

Hi David,
  Thanks for the update, much appreciated.

-Steve

On Dec 22, 7:49 am, David Huynh  wrote:
> Steve,
>
> Timegrid has never been released officially. It was a summer project for
> one of our undergrad students and we never found resources after that
> summer to finish it up. The only place that we use it is
>
>    http://picker.mit.edu/
>
> Pick a department and click Browse Courses. You should see a timegrid on
> the right side. You can click on Full View to see a bigger timegrid. It
> should work on FF3.
>
> The code is there, open source, so if anyone is willing to continue
> hacking on it, we'd be grateful.
>
> David
>
> Steve wrote:
> > Is there a functioning example of the Simile Timegrid control? None of
> > the examples from the Simile site appear to actually load the control
> > for me. I've tried IE7, FF3, Chrome and Safari.
>
> > Thanks
> > -Steve
> >http://www.stevetrefethen.com/blog/
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to simile-widgets@googlegroups.com
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en
-~--~~~~--~~--~--~---



Timegrid example

2008-12-21 Thread Steve

Is there a functioning example of the Simile Timegrid control? None of
the examples from the Simile site appear to actually load the control
for me. I've tried IE7, FF3, Chrome and Safari.

Thanks
-Steve
http://www.stevetrefethen.com/blog/
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to simile-widgets@googlegroups.com
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en
-~--~~~~--~~--~--~---



Re: simile.mit.edu down?

2008-12-21 Thread Steve

Hi Larry,
  Fyi, here is what I did to host Exhibit. Feel free to post comments
if there is anything I should clarify.

http://www.stevetrefethen.com/blog/HostingMITsSimileExhibitOSProject.aspx

-Steve

On Dec 19, 10:45 am, Larry Kluger  wrote:
> Hi Steve,
>
> I was wondering if you and the other posters were using Timeline or Exhibit. 
> (Or one of the other fine Simile libraries.)
>
> Anyhow, I don't have much knowledge about Exhibit, but David H is an ace 
> programmer. It may well be the case that the software looks to see if a 
> certain library is already loaded, and, if not, it then loads it from MIT. In 
> that case, the solution is for your html file to load the needed libraries 
> (from your server) before the Exhibit code needs them.
>
> It could also be the case that something in the sw will need to be changed to 
> enable you to host all of Exhibit on your server. In that case, I'm sure that 
> David would be receptive to your patch.
>
> And your step by step instructions on how to locally host Exhibit would be 
> very much appreciated by the community.
>
> Note that David sometimes dynamically adds script tags to the dom. In other 
> words, he tells the browser to load libraries at runtime, not as a normal 
> script tag inside of an html file.
>
> HTH,
>
> Larry

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to simile-widgets@googlegroups.com
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en
-~--~~~~--~~--~--~---



Re: simile.mit.edu down?

2008-12-21 Thread Steve

Thanks for the update. I'll be watching for any announcements related
to redundancy.

-Steve

On Dec 21, 9:31 am, David Huynh  wrote:
> Hi Steve,
>
> You're right that you would need your ISP to support Java servlets to
> run painter. We're thinking of running painter at several places for
> redundancy, so that you can switch between them in case one goes down.
> But a client side painter is also a great alternative.
>
> David
>
> Steve wrote:
> > Hi David,
> >   If I'm reading things correctly, unfortunately, that's not a generic
> > solution as it requires specific technology from your ISP which mine
> > unfortunately, doesn't support.
>
> > I think I'll need to investigate the thread where a client side
> > painter was posted as that seems like the only viable alternative. The
> > MIT painter URL is still down and has broken the app I've been working
> > on so I need to seek another solution.
>
> > -Steve
>
> > On Dec 19, 11:21 am, David Huynh  wrote:
>
> >> Robert Forkel wrote:
>
> >>> hi,
> >>> i took the opportunity today - simile.mit.edu being down - to get
> >>> exhibit plus timeline and maps extension to run independent of
> >>> simile.mit.edu.
> >>> while the necessary changes in the source code to work around hard
> >>> coded paths were pretty minimal (i have to clean up my code before it
> >>> can serve as a tutorial), the problem with the painter script was
> >>> harder. the map extension call a script running on simile.mit.edu to
> >>> create dynamic map markers on the fly.
> >>> i first replaced that script with a pretty basic python cgi script
> >>> using PIL to create rather primitive markers, but then found the
> >>> javascript here:
> >>>http://gmaps-utility-library.googlecode.com/svn/trunk/mapiconmaker/re...
> >>> which i simply substituted for the Exhibit.MapView._makeIcon function.
> >>> the only thing left to do now is replacing the calls to the painter
> >>> script used for the markers in the map legend.
> >>> regards,
> >>> robert
>
> >> In case you still want to use "painter", then you can host it yourself
> >> at some URL and then tell Exhibit to use that service URL:
>
> >>http://groups.google.com/group/simile-widgets/browse_thread/thread/84...
> >> <http://groups.google.com/group/simile-widgets/browse_thread/thread/84...>
>
> >> David
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to simile-widgets@googlegroups.com
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en
-~--~~~~--~~--~--~---



Re: simile.mit.edu down?

2008-12-20 Thread Steve

As of 8AM PST the map painter is back online.

Thanks, much appreciated!

I haven't gotten the simple map view extension by Dan Lange working
yet but I'll probably be headed in that direction so there aren't any
external dependencies. I am hosting Exhibit at this point so getting
the map painter working is more or less the last step.

-Steve

On Dec 19, 4:49 pm, Steve  wrote:
> Hi David,
>   If I'm reading things correctly, unfortunately, that's not a generic
> solution as it requires specific technology from your ISP which mine
> unfortunately, doesn't support.
>
> I think I'll need to investigate the thread where a client side
> painter was posted as that seems like the only viable alternative. The
> MIT painter URL is still down and has broken the app I've been working
> on so I need to seek another solution.
>
> -Steve
>
> On Dec 19, 11:21 am, David Huynh  wrote:
>
> > Robert Forkel wrote:
> > > hi,
> > > i took the opportunity today - simile.mit.edu being down - to get
> > > exhibit plus timeline and maps extension to run independent of
> > > simile.mit.edu.
> > > while the necessary changes in the source code to work around hard
> > > coded paths were pretty minimal (i have to clean up my code before it
> > > can serve as a tutorial), the problem with the painter script was
> > > harder. the map extension call a script running on simile.mit.edu to
> > > create dynamic map markers on the fly.
> > > i first replaced that script with a pretty basic python cgi script
> > > using PIL to create rather primitive markers, but then found the
> > > javascript here:
> > >http://gmaps-utility-library.googlecode.com/svn/trunk/mapiconmaker/re...
> > > which i simply substituted for the Exhibit.MapView._makeIcon function.
> > > the only thing left to do now is replacing the calls to the painter
> > > script used for the markers in the map legend.
> > > regards,
> > > robert
>
> > In case you still want to use "painter", then you can host it yourself
> > at some URL and then tell Exhibit to use that service URL:
>
> >http://groups.google.com/group/simile-widgets/browse_thread/thread/84...
> > <http://groups.google.com/group/simile-widgets/browse_thread/thread/84...>
>
> > David
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to simile-widgets@googlegroups.com
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en
-~--~~~~--~~--~--~---



Re: simile.mit.edu down?

2008-12-19 Thread Steve

Hi David,
  If I'm reading things correctly, unfortunately, that's not a generic
solution as it requires specific technology from your ISP which mine
unfortunately, doesn't support.

I think I'll need to investigate the thread where a client side
painter was posted as that seems like the only viable alternative. The
MIT painter URL is still down and has broken the app I've been working
on so I need to seek another solution.

-Steve

On Dec 19, 11:21 am, David Huynh  wrote:
> Robert Forkel wrote:
> > hi,
> > i took the opportunity today - simile.mit.edu being down - to get
> > exhibit plus timeline and maps extension to run independent of
> > simile.mit.edu.
> > while the necessary changes in the source code to work around hard
> > coded paths were pretty minimal (i have to clean up my code before it
> > can serve as a tutorial), the problem with the painter script was
> > harder. the map extension call a script running on simile.mit.edu to
> > create dynamic map markers on the fly.
> > i first replaced that script with a pretty basic python cgi script
> > using PIL to create rather primitive markers, but then found the
> > javascript here:
> >http://gmaps-utility-library.googlecode.com/svn/trunk/mapiconmaker/re...
> > which i simply substituted for the Exhibit.MapView._makeIcon function.
> > the only thing left to do now is replacing the calls to the painter
> > script used for the markers in the map legend.
> > regards,
> > robert
>
> In case you still want to use "painter", then you can host it yourself
> at some URL and then tell Exhibit to use that service URL:
>
> http://groups.google.com/group/simile-widgets/browse_thread/thread/84...
> <http://groups.google.com/group/simile-widgets/browse_thread/thread/84...>
>
> David
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to simile-widgets@googlegroups.com
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en
-~--~~~~--~~--~--~---



Re: simile.mit.edu down?

2008-12-19 Thread Steve

Hi Larry,
  Yes, I'm using Timeline and Exhibit with the Google Map extension.
I've created a Facebook (I know, I know I just find the platform
really interesting) application that maps your Facebook friends and
displays lots of their profile content in an Exhibit. It's pretty cool
means of being able to explore your social network. I've also created
another Facebook App that displays your uploaded photos on a Timeline.
Both apps are in the earliest stages of development and not currently
available on Facebook (yet).

I'm not familiar with the "bundling" that's used and perhaps that's
the solution to the problem of the hardcoded references to MIT's
server, I just don't know at this point.

I'll look to post the steps I used to get Exhibit self hosted to my
blog as it was pretty straightforward. The only thing not working is
the map painter so the map looks pretty dull as none of the data
points are plotted.

http://www.stevetrefethen.com/blog/

Btw, here are a few posts which were came out of getting a few of
these things working:

http://www.stevetrefethen.com/blog/FacebookDeveloperToolkitNowSupportsJSONResultsOnFQLQueries.aspx
http://www.stevetrefethen.com/blog/UsingGoogleMapsForGeocodingInC.aspx

-Steve

On Dec 19, 10:45 am, Larry Kluger  wrote:
> Hi Steve,
>
> I was wondering if you and the other posters were using Timeline or Exhibit. 
> (Or one of the other fine Simile libraries.)
>
> Anyhow, I don't have much knowledge about Exhibit, but David H is an ace 
> programmer. It may well be the case that the software looks to see if a 
> certain library is already loaded, and, if not, it then loads it from MIT. In 
> that case, the solution is for your html file to load the needed libraries 
> (from your server) before the Exhibit code needs them.
>
> It could also be the case that something in the sw will need to be changed to 
> enable you to host all of Exhibit on your server. In that case, I'm sure that 
> David would be receptive to your patch.
>
> And your step by step instructions on how to locally host Exhibit would be 
> very much appreciated by the community.
>
> Note that David sometimes dynamically adds script tags to the dom. In other 
> words, he tells the browser to load libraries at runtime, not as a normal 
> script tag inside of an html file.
>
> HTH,
>
> Larry
>
> 
> From: Steve 
> To: SIMILE Widgets 
> Sent: Friday, December 19, 2008 1:04:06 PM
> Subject: Re: simile.mit.edu down?
>
> Hi Larry,
>   I agree hosting yourself makes the most sense and I've moved the
> source to my own server and I'm trying to run an app that uses Exhibit
> with the Google Maps extension but the problem is there appears to be
> references to things that aren't provided. For example, the painters
> (simile.mit.edi/painter...) for the map used in the map extension. I
> can't seem to find that anywhere, am I simply missing something?
>
> Also, the reference to static.simile... is hardcoded throughout the
> source so there appears to be no easy way to direct it to a server of
> your own.
>
> Having said those things, I understand this is open source thus I
> don't mind fixing the URL's myself (unfortunately, I don't have time
> right now to work on a better solution) but the missing piece are
> pretty crucial.
>
> -Steve
>
> On Dec 19, 9:54 am, Larry Kluger  wrote:
>
>
>
> > Hi Eric,
>
> > In my humble opinion, you are *far* better off hosting the libraries 
> > yourself rather than depending on an .mit.edu server.
> > Like, night and day better off.
>
> > The Yahoo folks have studied the issues of people's caches being primed and 
> > the effect is, unfortunately, much less than what would be hoped for.
> > The odds of one of your clients having a cached version of the Simile 
> > libraries from some other Simile-based page that is not connected to your 
> > app are tiny. Or smaller.
>
> > Be vertically integrated, host it yourself.
>
> > Regards,
>
> > Larry
>
> > 
> > From: Eric Pugh 
> > To: simile-widgets@googlegroups.com
> > Sent: Friday, December 19, 2008 8:52:19 AM
> > Subject: Re: simile.mit.edu down?
>
> > Joern,
>
> > We are seeing the same thing.  I had made the assumption that this  
> > site would be more reliable then hosting it ourselves, and allow the  
> > possiblity that folks might already have the javascript cached  
> > locally, however, maybe we are better off hosting it ourselves :-(
>
> > I know Google had an effort to host some big javascript libraries, is  
> >

Re: simile.mit.edu down?

2008-12-19 Thread Steve

Hi Robert,
  Thanks very much for the reference to that function. It would be
really nice to get the default implementation as it has a number of
other features.

Would you mind elaborating on how you replaced the default painter?

TIA,
-Steve

On Dec 19, 10:07 am, "Robert Forkel"  wrote:
> just replaced the call to the painter script with a map icon factory i
> fond 
> here:http://gmaps-utility-library.googlecode.com/svn/trunk/mapiconmaker/re...
>
>
>
> On Fri, Dec 19, 2008 at 7:04 PM, Steve  wrote:
>
> > Hi Larry,
> >  I agree hosting yourself makes the most sense and I've moved the
> > source to my own server and I'm trying to run an app that uses Exhibit
> > with the Google Maps extension but the problem is there appears to be
> > references to things that aren't provided. For example, the painters
> > (simile.mit.edi/painter...) for the map used in the map extension. I
> > can't seem to find that anywhere, am I simply missing something?
>
> > Also, the reference to static.simile... is hardcoded throughout the
> > source so there appears to be no easy way to direct it to a server of
> > your own.
>
> > Having said those things, I understand this is open source thus I
> > don't mind fixing the URL's myself (unfortunately, I don't have time
> > right now to work on a better solution) but the missing piece are
> > pretty crucial.
>
> > -Steve
>
> > On Dec 19, 9:54 am, Larry Kluger  wrote:
> >> Hi Eric,
>
> >> In my humble opinion, you are *far* better off hosting the libraries 
> >> yourself rather than depending on an .mit.edu server.
> >> Like, night and day better off.
>
> >> The Yahoo folks have studied the issues of people's caches being primed 
> >> and the effect is, unfortunately, much less than what would be hoped for.
> >> The odds of one of your clients having a cached version of the Simile 
> >> libraries from some other Simile-based page that is not connected to your 
> >> app are tiny. Or smaller.
>
> >> Be vertically integrated, host it yourself.
>
> >> Regards,
>
> >> Larry
>
> >> 
> >> From: Eric Pugh 
> >> To: simile-widgets@googlegroups.com
> >> Sent: Friday, December 19, 2008 8:52:19 AM
> >> Subject: Re: simile.mit.edu down?
>
> >> Joern,
>
> >> We are seeing the same thing.  I had made the assumption that this
> >> site would be more reliable then hosting it ourselves, and allow the
> >> possiblity that folks might already have the javascript cached
> >> locally, however, maybe we are better off hosting it ourselves :-(
>
> >> I know Google had an effort to host some big javascript libraries, is
> >> there anything like that for the Simile assets?
>
> >> Eric
>
> >> On Dec 19, 2008, at 4:25 AM, Jörn Clausen wrote:
>
> >> > Hi!
>
> >> > I think simile.mit.edu is down. The site is not reachable, and so are
> >> > sites still using the code hosted there.
>
> >> > Is this a planned downtime? Did I miss the EOL announcement??
>
> >> > --
> >> > Joern Clausen
> >> > joe...@gmail.com
> >> >http://www.oe-files.de/oefiles/
> >> >http://thebloeg.blogspot.com/
>
> >> -
> >> Eric Pugh | Principal | OpenSource Connections, LLC | 434.466.1467 
> >> |http://www.opensourceconnections.com- Hide quoted text -
>
> - Show quoted text -
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to simile-widgets@googlegroups.com
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en
-~--~~~~--~~--~--~---



Re: simile.mit.edu down?

2008-12-19 Thread Steve

Hi Larry,
  I agree hosting yourself makes the most sense and I've moved the
source to my own server and I'm trying to run an app that uses Exhibit
with the Google Maps extension but the problem is there appears to be
references to things that aren't provided. For example, the painters
(simile.mit.edi/painter...) for the map used in the map extension. I
can't seem to find that anywhere, am I simply missing something?

Also, the reference to static.simile... is hardcoded throughout the
source so there appears to be no easy way to direct it to a server of
your own.

Having said those things, I understand this is open source thus I
don't mind fixing the URL's myself (unfortunately, I don't have time
right now to work on a better solution) but the missing piece are
pretty crucial.

-Steve

On Dec 19, 9:54 am, Larry Kluger  wrote:
> Hi Eric,
>
> In my humble opinion, you are *far* better off hosting the libraries yourself 
> rather than depending on an .mit.edu server.
> Like, night and day better off.
>
> The Yahoo folks have studied the issues of people's caches being primed and 
> the effect is, unfortunately, much less than what would be hoped for.
> The odds of one of your clients having a cached version of the Simile 
> libraries from some other Simile-based page that is not connected to your app 
> are tiny. Or smaller.
>
> Be vertically integrated, host it yourself.
>
> Regards,
>
> Larry
>
> 
> From: Eric Pugh 
> To: simile-widgets@googlegroups.com
> Sent: Friday, December 19, 2008 8:52:19 AM
> Subject: Re: simile.mit.edu down?
>
> Joern,
>
> We are seeing the same thing.  I had made the assumption that this  
> site would be more reliable then hosting it ourselves, and allow the  
> possiblity that folks might already have the javascript cached  
> locally, however, maybe we are better off hosting it ourselves :-(
>
> I know Google had an effort to host some big javascript libraries, is  
> there anything like that for the Simile assets?
>
> Eric
>
> On Dec 19, 2008, at 4:25 AM, Jörn Clausen wrote:
>
>
>
> > Hi!
>
> > I think simile.mit.edu is down. The site is not reachable, and so are
> > sites still using the code hosted there.
>
> > Is this a planned downtime? Did I miss the EOL announcement??
>
> > --
> > Joern Clausen
> > joe...@gmail.com
> >http://www.oe-files.de/oefiles/
> >http://thebloeg.blogspot.com/
>
> -
> Eric Pugh | Principal | OpenSource Connections, LLC | 434.466.1467 
> |http://www.opensourceconnections.com
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to simile-widgets@googlegroups.com
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en
-~--~~~~--~~--~--~---



New Exhibit and exhibit-bundle.css

2008-11-24 Thread Steve

To the group,

I recently upgraded to the latest exhibit 2.1, and now get the
following errors in my error console for Firefox.  Also all of my
colors seem modified,  can I exclude using this .css file?

thanks

Steve


Warning: Error in parsing value for property 'filter'.  Declaration
dropped.
Source File: http://static.simile.mit.edu/exhibit/api-2.1.0/exhibit-bundle.css
Line: 658
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to simile-widgets@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en
-~--~~~~--~~--~--~---



Does not work in IE

2008-11-05 Thread Steve

To the group,

My application works great in Firefox, but the Timeline View and other
views in Exhibit do not work properly, can anyone give me advice on
what I can do to fix it for IE?

The link is http://itinfrastructure.hms.harvard.edu/

thanks

Steve
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to simile-widgets@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en
-~--~~~~--~~--~--~---



Oracle Support

2008-10-22 Thread Steve

To all,

Does anyone know if you can use Oracle (specifically Oracle 11g) as a
source for Exhibit?

thanks

Steve
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to simile-widgets@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en
-~--~~~~--~~--~--~---