Skip to content

Commit

Permalink
Merge pull request #33 from hagbeck/master
Browse files Browse the repository at this point in the history
Correction for setting up a reverse proxy
  • Loading branch information
mielvds committed Apr 11, 2016
2 parents 83b2c9f + 2426a7e commit eb87c32
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 4 deletions.
22 changes: 19 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
.settings
target
# Eclipse
.classpath
.project
.settings/

# Intellij
.idea/
*.iml
*.iws

# Mac
.DS_Store

# Maven
log/
target/

ldf-server.json
/data/
/nbproject/
/nbproject/

2 changes: 1 addition & 1 deletion src/main/resources/views/index.ftl.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ <h2>Available datasets</h2>
<dl class="datasets">
<#if datasources??>
<#list datasources?keys as datasourceName>
<dt><a href="/${datasourceName}">${datasources[datasourceName].getTitle() }</a></dt>
<dt><a href="${datasourceName}">${datasources[datasourceName].getTitle() }</a></dt>
<dd>${ datasources[datasourceName].getDescription()!"" }</dd>
</#list>
</#if>
Expand Down

0 comments on commit eb87c32

Please sign in to comment.