From: <rv...@us...> - 2010-03-12 23:23:17
|
Revision: 558 http://treebase.svn.sourceforge.net/treebase/?rev=558&view=rev Author: rvos Date: 2010-03-12 23:23:11 +0000 (Fri, 12 Mar 2010) Log Message: ----------- Removed superfluous feed image (we can't really compute its absolute path here, unless we hardcode things), removed superfluous forward slashes in URLs. Modified Paths: -------------- trunk/treebase-web/src/main/webapp/WEB-INF/pages/anyObjectAsRDF.jsp Modified: trunk/treebase-web/src/main/webapp/WEB-INF/pages/anyObjectAsRDF.jsp =================================================================== --- trunk/treebase-web/src/main/webapp/WEB-INF/pages/anyObjectAsRDF.jsp 2010-03-12 23:22:09 UTC (rev 557) +++ trunk/treebase-web/src/main/webapp/WEB-INF/pages/anyObjectAsRDF.jsp 2010-03-12 23:23:11 UTC (rev 558) @@ -6,54 +6,54 @@ xmlns:dcterms="http://purl.org/dc/terms/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns="http://purl.org/rss/1.0/"> - <channel rdf:about="${baseURL}/${phyloWSPath}"> + <channel rdf:about="${baseURL}${phyloWSPath}"> <title>${phyloWSPath}</title> <link>${baseURL}</link> <description>Serializations for ${phyloWSPath}</description> - <image rdf:resource="${domainAddress}<fmt:message key="icons.treebase.16px"/>"/> + <%--image rdf:resource="<c:url value="/images/logo16px.png"/>"/--%> <items> <rdf:Seq> - <c:if test="${hasWebPage}"><rdf:li rdf:resource="${baseURL}/${phyloWSPath}?format=html"/></c:if> - <c:if test="${hasNeXML}"><rdf:li rdf:resource="${baseURL}/${phyloWSPath}?format=nexml"/></c:if> - <c:if test="${hasNexus}"><rdf:li rdf:resource="${baseURL}/${phyloWSPath}?format=nexus"/></c:if> - <c:if test="${hasRdf}"><rdf:li rdf:resource="${baseURL}/${phyloWSPath}?format=rdf"/></c:if> + <c:if test="${hasWebPage}"><rdf:li rdf:resource="${baseURL}${phyloWSPath}?format=html"/></c:if> + <c:if test="${hasNeXML}"><rdf:li rdf:resource="${baseURL}${phyloWSPath}?format=nexml"/></c:if> + <c:if test="${hasNexus}"><rdf:li rdf:resource="${baseURL}${phyloWSPath}?format=nexus"/></c:if> + <c:if test="${hasRdf}"><rdf:li rdf:resource="${baseURL}${phyloWSPath}?format=rdf"/></c:if> </rdf:Seq> </items> </channel> - <image rdf:about="${domainAddress}<fmt:message key="icons.treebase.16px"/>"> + <%--image rdf:about="<c:url value="/images/logo16px.png"/>"> <title>${phyloWSPath}</title> <link>${baseURL}</link> - <url>${domainAddress}<fmt:message key="icons.treebase.16px"/></url> - </image> + <url><c:url value="/images/logo16px.png"/></url> + </image--%> <c:if test="${hasWebPage}"> - <item rdf:about="${baseURL}/${phyloWSPath}?format=html"> + <item rdf:about="${baseURL}${phyloWSPath}?format=html"> <title>Web page</title> - <link>${baseURL}/${phyloWSPath}?format=html</link> + <link>${baseURL}${phyloWSPath}?format=html</link> <description>A human-readable version of the resource</description> <dc:format>text/html</dc:format> <dc:language>EN-US</dc:language> </item> </c:if> <c:if test="${hasNeXML}"> - <item rdf:about="${baseURL}/${phyloWSPath}?format=nexml"> + <item rdf:about="${baseURL}${phyloWSPath}?format=nexml"> <title>NeXML file</title> - <link>${baseURL}/${phyloWSPath}?format=nexml</link> + <link>${baseURL}${phyloWSPath}?format=nexml</link> <description>A NeXML serialization of the resource</description> <dc:format>application/xml</dc:format> </item> </c:if> <c:if test="${hasNexus}"> - <item rdf:about="${baseURL}/${phyloWSPath}?format=nexus"> + <item rdf:about="${baseURL}${phyloWSPath}?format=nexus"> <title>Nexus file</title> - <link>${baseURL}/${phyloWSPath}?format=nexus</link> + <link>${baseURL}${phyloWSPath}?format=nexus</link> <description>A Nexus serialization of the resource</description> <dc:format>text/plain</dc:format> </item> </c:if> <c:if test="${hasRdf}"> - <item rdf:about="${baseURL}/${phyloWSPath}?format=rdf"> + <item rdf:about="${baseURL}${phyloWSPath}?format=rdf"> <title>RDF file</title> - <link>${baseURL}/${phyloWSPath}?format=rdf</link> + <link>${baseURL}${phyloWSPath}?format=rdf</link> <description>An RDF/XML serialization of the resource</description> <dc:format>application/rdf+xml</dc:format> </item> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |