Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create programmatic_access.vm #39

Closed
wants to merge 31 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
711ae54
customisation
Dec 1, 2015
4341232
packaging
Dec 1, 2015
1ba6a68
Configuration flag to suppress password login
der Dec 8, 2015
14c010d
Fix edit form when deployed at non-root tomcat context
der Dec 8, 2015
629a100
UI to create temporary (API) passwords
der Dec 8, 2015
4ef9ff9
Support for supressing link view, allows property view to be wider
der Dec 8, 2015
f437006
Support for displaying registers using data tables
der Dec 8, 2015
599c0aa
Fix rendering of search results in case where entity is registered in…
der Dec 9, 2015
7034afc
Reformat input query as a conjunctive Lucene query
der Dec 9, 2015
ae56269
Admin menu entry for text indexing
der Dec 9, 2015
72ac81c
Typo fix
der Dec 9, 2015
cbb4241
Make registry name a configuration item so templates are more reusable
der Dec 9, 2015
d8dc78c
Support download of versioned data
der Dec 22, 2015
d9c149d
Replace manual registry name with configurable value
der Dec 31, 2015
2aa31e6
Initial version of class diagram support
der Jan 3, 2016
a464ff8
Add configurations switch to control provision of class diagrams
der Jan 4, 2016
bde9842
Use routing restrictions instead of ports to separate in/out links
der Jan 4, 2016
c05d0ef
Protected against XSS attacks in text search parameters
der Jan 6, 2016
a1cb6df
Support basic cases of intersection/union domains
der Jan 6, 2016
83c9409
Clean out unused code fragments
der Jan 6, 2016
dec4531
Add final re-routing step to redraw links after layout
der Jan 6, 2016
dd82c78
deploy ready
Jan 8, 2016
79c1ec0
1.1-4 deploy
Jan 14, 2016
26af62b
Merge pull request #7 from marqh/newui
marqh Jan 14, 2016
c705c35
resources
marqh Feb 23, 2016
763ed51
Merge pull request #11 from marqh/resources
marqh Feb 23, 2016
cc820ea
about page structure
marqh May 3, 2016
2ed10d2
Merge pull request #18 from marqh/docs_structure
marqh May 5, 2016
425cec4
Typofix (#20)
Crocstar May 25, 2016
8dac389
Create programmatic_access.vm
Crocstar Jul 7, 2016
5696162
Update programmatic_access.vm
Crocstar Aug 4, 2016
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Protected against XSS attacks in text search parameters
der authored and marqh committed Jan 14, 2016
commit c05d0efa42dd6f569579cb471134d7cf7cd76ae6
2 changes: 1 addition & 1 deletion ldregistry/templates/navbar.vm
Original file line number Diff line number Diff line change
@@ -53,7 +53,7 @@

<form action="$uiroot/text-search" method="get" class="navbar-form navbar-left" role="search">
<div class="form-group">
<input type="search" class="form-control search-query" placeholder="Search" #if($query)value="$query"#end name="query"/>
<input type="search" class="form-control search-query" placeholder="Search" #if($query)value="$lib.escapeHtml($query)"#end name="query"/>
</div>
<button type="submit" class="btn btn-default">Submit</button>
</form>
5 changes: 3 additions & 2 deletions ldregistry/templates/text-search.vm
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@
</tr>
#end

#set($pageTitle="Search: $query")
#set($pageTitle="Search: $lib.escapeHtml($query)")
#parse("header.vm")
#parse("navbar.vm")

@@ -66,7 +66,8 @@
</tbody>
</table>

#set($qparam="&query=$query")
## #set($qparam="&query=$lib.pathEncode($query)")
#set($qparam="&query=$lib.escapeHtml($query)")
#parse("paging.vm")

#else