You are viewing a plain text version of this content. The canonical link for it is here.
Posted to svn@forrest.apache.org by cr...@apache.org on 2006/05/13 03:00:05 UTC

svn commit: r405971 - /forrest/events/forrest-friday/20060512-log.txt

Author: crossley
Date: Fri May 12 18:00:04 2006
New Revision: 405971

URL: http://svn.apache.org/viewcvs?rev=405971&view=rev
Log:
Update

Modified:
    forrest/events/forrest-friday/20060512-log.txt

Modified: forrest/events/forrest-friday/20060512-log.txt
URL: http://svn.apache.org/viewcvs/forrest/events/forrest-friday/20060512-log.txt?rev=405971&r1=405970&r2=405971&view=diff
==============================================================================
--- forrest/events/forrest-friday/20060512-log.txt (original)
+++ forrest/events/forrest-friday/20060512-log.txt Fri May 12 18:00:04 2006
@@ -318,3 +318,54 @@
 [10:38] tscherler: that means we hardcoded this somewher and womehow 
 [10:38] tscherler: we need to identify the places where we call or construct this prefix
 [10:39] tscherler: btw are you subscribed in lenya-dev?
+[10:40] Ross: Hi guys... I suspect that the hard coding is in document-to-fo.xsl (I wrote that about 4 years ago now and back then we only had resources/images)
+[10:40] ipv6guru: Yes I am
+[10:40] tscherler: I am waiting to get eclipse up
+[10:40] Ross: Now we have multiple locations we need to remove the hard coded stuf - either us LM or pass in image location via sitemap
+[10:40] tscherler: hi ross:)
+[10:40] ipv6guru: Hi Ross
+[10:41] Ross: Thorsten, question for you...
+[10:41] Ross: Can you recall what caused site: protocol to break (question i relation to FOR-876 - url rewriting in LM broken)
+[10:41] tscherler: btw Ross thank you very much I will response later
+[10:42] tscherler: lemme check
+[10:44] tscherler: Ross
+[10:44] tscherler: Ross: Can you recall what caused site: protocol to break
+[10:45] tscherler: question i relation to FOR-876 - url rewriting in LM broken
+[10:45] tscherler: ATM I would blame infrastructure for FOR-876, but that is too easy ;)
+[10:46] Ross: Too easy to let them off too...
+[10:46] Ross: This is conversion of, for example, lm:foo to http://bar
+[10:46] Ross: It doesn't go on the network
+[10:46] tscherler: you mean an external protocol is not resolved
+[10:47] Ross: Yes, like the example in fresh-site http://localhost:8888/samples/loc​ationmap/index.html
+[10:47] tscherler: like in a source resolver
+[10:47] Ross: yes
+[10:47] tscherler: hmm
+[10:47] ipv6guru:  <xsl:choose>
+[10:47] ipv6guru:         <!-- resources image dir -->
+[10:47] ipv6guru:         <xsl:when test="starts-with(string(@src),'i​mages/')">
+[10:47] ipv6guru:           <xsl:value-of select="concat($imagesdir,substri​ng-after(@src,'images'))"/>
+[10:47] ipv6guru:         </xsl:when>
+[10:47] ipv6guru:         <!-- already absolute -->
+[10:47] ipv6guru:         <xsl:when test="contains(string(@src),':') or starts-with(string(@src),'/')">
+[10:47] ipv6guru:           <xsl:value-of select="@src"/>
+[10:47] ipv6guru:         </xsl:when>
+[10:47] ipv6guru:         <!-- relative to document -->
+[10:47] ipv6guru:         <xsl:otherwise><xsl:value-​of select="concat($xmlbasedir,@src)​"/></xsl:otherwise>
+[10:47] ipv6guru:       </xsl:choose>
+[10:48] tscherler: I will try to debug it. Give me a moment
+[10:48] Ross: Thanks Thorsten
+[10:48] Ross: ODT images...
+[10:49] Ross: how are the $images and $xmlbasedir variables set? (in sitemap?)
+[10:49] ipv6guru: will have a look
+[10:50] Ross: Also, what is the value of @src in the xdoc we get from the ODT conversion?
+[10:54] tscherler: ross why odt?
+[10:54] tscherler: http://issues.apache.org/jira/brow​se/FOR-635
+[10:54] tscherler: is that not fo specific?
+[10:55] ipv6guru: I notice Dispatcher uses old name style documenttofo.xsl also
+[10:55] ipv6guru: sorry document2fo.xsl
+[10:55] Ross: ThorstenL yes, I was getting my issues mixed up - ignore the ODT related question
+[10:55] tscherler: yeah, that can be
+[10:55] tscherler: k
+[10:56] tscherler: where did you found that?
+[10:57] ipv6guru: not in the code but the file itself in /resources/stylesheets/common/xsl​t/fo
+[10:58] ipv6guru: document-to-svg also uses $xmlbasedir, still not found its initial declaration yet