Skip to content

Commit

Permalink
Cleanup in XSLTWriterBase. XSLT params $ldh:absolutePath, `$ldh:r…
Browse files Browse the repository at this point in the history
…equestUri`, `$ac:uri` are now gone.

SNAPSHOT's minor version bump
  • Loading branch information
namedgraph committed Oct 11, 2023
1 parent bbf947a commit e351d61
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<groupId>com.atomgraph</groupId>
<artifactId>linkeddatahub</artifactId>
<version>4.0.10-SNAPSHOT</version>
<version>4.1.0-SNAPSHOT</version>
<packaging>${packaging.type}</packaging>

<name>AtomGraph LinkedDataHub</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,11 +121,6 @@ public <T extends XdmValue> Map<QName, XdmValue> getParameters(MultivaluedMap<St

try
{
//params.put(new QName("ldh", LDH.absolutePath.getNameSpace(), LDH.absolutePath.getLocalName()), new XdmAtomicValue(getAbsolutePath()));
//params.put(new QName("ldh", LDH.requestUri.getNameSpace(), LDH.requestUri.getLocalName()), new XdmAtomicValue(getRequestURI()));
//if (getURI() != null) params.put(new QName("ac", AC.uri.getNameSpace(), AC.uri.getLocalName()), new XdmAtomicValue(getURI()));
//else params.put(new QName("ac", AC.uri.getNameSpace(), AC.uri.getLocalName()), new XdmAtomicValue(getAbsolutePath()));

com.atomgraph.linkeddatahub.apps.model.Application app = getApplication().get();
if (log.isDebugEnabled()) log.debug("Passing $lapp:Application to XSLT: <{}>", app);
params.put(new QName("ldt", LDT.base.getNameSpace(), LDT.base.getLocalName()), new XdmAtomicValue(app.getBaseURI()));
Expand Down

0 comments on commit e351d61

Please sign in to comment.