Re: [svg-developers] SVG Open

2010-09-04 Thread Vincent Hardy
Hi Bruce,

As mentioned by David we are going to put the demos we showed in the closing 
session at http://svg-wow.org. Right now, we put just four of them and we'll 
add 
more in the coming weeks.

Cheers,
Vincent.





From: ddailey 
To: svg-developers@yahoogroups.com
Sent: Fri, September 3, 2010 11:46:23 PM
Subject: Re: [svg-developers] SVG Open

  
Hi Bruce,

I'm sorry you missed it too since it was really interesting, energetic, 
informative, and fun. You would have liked it and you were missed. I think that 
the host, Paris Telecom (who did an extraordinary job by the way) and their 
associates will be posting audio, video and links sometime soon.

I know I found the conference invigorating and am completely excited about the 
various possible futures. Clearly it is very cool that Microsoft is supporting 
it and in such a big way -- putting lots of resources into making it work. I 
also don't know when Erik D. and Vincent H will be putting links up on SVG Wow 
to their most recent stuff, but they showed some completely awesome demos.

I'm not sure how much the very active groups in places like France and China 
read svg-developers, but I'm sure that once the material becomes available, the 
organizers will let folks here know.

cheers
David
- Original Message - 
From: bruce 
To: svg-developers@yahoogroups.com 
Sent: Thursday, September 02, 2010 12:16 PM
Subject: [svg-developers] SVG Open

Sorry I missed the conference. Does anyone want to post the highlights?
Thanks!
Bruce

[Non-text portions of this message have been removed]


 

[Non-text portions of this message have been removed]





-
To unsubscribe send a message to: svg-developers-unsubscr...@yahoogroups.com
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/svg-developers/join
(Yahoo! ID required)

<*> To change settings via email:
svg-developers-dig...@yahoogroups.com 
svg-developers-fullfeatu...@yahoogroups.com

<*> To unsubscribe from this group, send an email to:
svg-developers-unsubscr...@yahoogroups.com

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/



[svg-developers] The reference to entity "T_Edmonton" must end with the ';' delimiter

2010-09-04 Thread lprao_1978
Below exception is coming when I am invoking 

org.apache.batik.transcoder.TranscoderException: null
Enclosed Exception:
The reference to entity "T_Edmonton" must end with the ';' delimiter.
org.apache.batik.transcoder.TranscoderException: null
Enclosed Exception:
The reference to entity "T_Edmonton" must end with the ';' delimiter.
at org.apache.batik.transcoder.XMLAbstractTranscoder.transcode(Unknown 
Source)
at org.apache.batik.transcoder.SVGAbstractTranscoder.transcode(Unknown 
Source)

Code is below

 JPEGTranscoder transcoder = new JPEGTranscoder();
  try {
  BufferedOutputStream bufferedoutputstream = new
  BufferedOutputStream(new FileOutputStream(target));
  transcoder.transcode(new TranscoderInput(file1), new 
TranscoderOutput(bufferedoutputstream));
  bufferedoutputstream.flush();
  bufferedoutputstream.close();
  }catch ( Exception ex ) {}


What could be wrong and how to debug?





-
To unsubscribe send a message to: svg-developers-unsubscr...@yahoogroups.com
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/svg-developers/join
(Yahoo! ID required)

<*> To change settings via email:
svg-developers-dig...@yahoogroups.com 
svg-developers-fullfeatu...@yahoogroups.com

<*> To unsubscribe from this group, send an email to:
svg-developers-unsubscr...@yahoogroups.com

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/



[svg-developers] Re: SVG Open

2010-09-04 Thread heldermagalhaes
Hi everyone,


I'd also take the opportunity to thank the organizing committee [1], with a 
special mention for Cyril and Andreas, and all supporting staff for making such 
a pleasant conference possible. You guys really made it worth it! :-)


> I think that the host, Paris Telecom (who did an extraordinary
> job by the way) and their associates will be posting audio,
> video and links sometime soon.

Yeah, I also hope to see the videos and also the other multimedia material 
(photographers were pretty active) made available soon. ;-)


Cheers,
 Helder


[1] http://svgopen.org/2010/about_svgopen.shtml





-
To unsubscribe send a message to: svg-developers-unsubscr...@yahoogroups.com
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/svg-developers/join
(Yahoo! ID required)

<*> To change settings via email:
svg-developers-dig...@yahoogroups.com 
svg-developers-fullfeatu...@yahoogroups.com

<*> To unsubscribe from this group, send an email to:
svg-developers-unsubscr...@yahoogroups.com

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/



Re: [svg-developers] The reference to entity "T_Edmonton" must end with the ';' delimiter

2010-09-04 Thread Jacob Beard
Hi,

Maybe it thinks that something is an XML entity that is not properly 
delimited. If you have something in your document like "&T_Edmonton", 
that might make sense. If this is the case, then you should escape the 
"&", so you would have "&T_Edmonton" in your document.

Jake

On 10-09-02 02:59 AM, lprao_1978 wrote:
>
> Below exception is coming when I am invoking
>
> org.apache.batik.transcoder.TranscoderException: null
> Enclosed Exception:
> The reference to entity "T_Edmonton" must end with the ';' delimiter.
> org.apache.batik.transcoder.TranscoderException: null
> Enclosed Exception:
> The reference to entity "T_Edmonton" must end with the ';' delimiter.
> at org.apache.batik.transcoder.XMLAbstractTranscoder.transcode(Unknown 
> Source)
> at org.apache.batik.transcoder.SVGAbstractTranscoder.transcode(Unknown 
> Source)
>
> Code is below
>
> JPEGTranscoder transcoder = new JPEGTranscoder();
> try {
> BufferedOutputStream bufferedoutputstream = new
> BufferedOutputStream(new FileOutputStream(target));
> transcoder.transcode(new TranscoderInput(file1), new 
> TranscoderOutput(bufferedoutputstream));
> bufferedoutputstream.flush();
> bufferedoutputstream.close();
> }catch ( Exception ex ) {}
>
> What could be wrong and how to debug?
>
> 


[Non-text portions of this message have been removed]





-
To unsubscribe send a message to: svg-developers-unsubscr...@yahoogroups.com
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/svg-developers/join
(Yahoo! ID required)

<*> To change settings via email:
svg-developers-dig...@yahoogroups.com 
svg-developers-fullfeatu...@yahoogroups.com

<*> To unsubscribe from this group, send an email to:
svg-developers-unsubscr...@yahoogroups.com

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/



[svg-developers] Re: The reference to entity "T_Edmonton" must end with the ';' delimiter

2010-09-04 Thread heldermagalhaes
Hi everyone,

(Jake)
> Maybe it thinks that something is an XML entity that is not properly 
> delimited. If you have something in your document like "&T_Edmonton", 
> that might make sense. If this is the case, then you should escape the 
> "&", so you would have "&T_Edmonton" in your document.

I guess Jake is right, you are likely dealing with invalid XML.

Jake's hint it that you have broken textual content, in the sense that XML 
reserved characters (like '&', '<', '>', etc.) [1] were not properly escaped. 
You should check if it's the case.

I'd also hint towards a possible predefined XML entity being wrongly 
referenced. You can see an example of this mechanism working here [2] (the 
"Smile" is defined as an XML entity, for easier referencing later). In that 
case, Batik's message is correct and you only need to add a semicolon (as in 
"&T_Edmonton;") to fix the broken content.

You may also be interested in knowing that Batik has a dedicated users list 
[3], which may be helpful for searching for related messages and asking for 
Batik-related technical questions. ;-)

Hope this helps,
 Helder

[1] 
http://en.wikipedia.org/wiki/List_of_XML_and_HTML_character_entity_references#Predefined_entities_in_XML
[2] http://www.w3.org/TR/SVG11/images/coords/PreserveAspectRatio.svg
[3] http://xmlgraphics.apache.org/batik/mailing-lists.html#batik-users





-
To unsubscribe send a message to: svg-developers-unsubscr...@yahoogroups.com
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/svg-developers/join
(Yahoo! ID required)

<*> To change settings via email:
svg-developers-dig...@yahoogroups.com 
svg-developers-fullfeatu...@yahoogroups.com

<*> To unsubscribe from this group, send an email to:
svg-developers-unsubscr...@yahoogroups.com

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/



[svg-developers] Re: SVG Open

2010-09-04 Thread meikelneu



--- In svg-developers@yahoogroups.com, "heldermagalhaes"  
wrote:
>
> Hi everyone,
> 
> 
> I'd also take the opportunity to thank the organizing committee 

...

> Yeah, I also hope to see the videos and also the other multimedia material 
> (photographers were pretty active) made available soon. ;-)
> 

Absolutely, my thanks as well. I spoke to the conference photographer and she 
said it wasn't decided yet, where they'd post the fotos. I'd encourage everyone 
to put them on flickr (tag: svgopen) as it's easier to share, comment and 
identify the people in the fotos.

Michael





-
To unsubscribe send a message to: svg-developers-unsubscr...@yahoogroups.com
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/svg-developers/join
(Yahoo! ID required)

<*> To change settings via email:
svg-developers-dig...@yahoogroups.com 
svg-developers-fullfeatu...@yahoogroups.com

<*> To unsubscribe from this group, send an email to:
svg-developers-unsubscr...@yahoogroups.com

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/