Last change
on this file since 483 was
483,
checked in by roberth, 13 years ago
|
Improved flexibility of the publication chooser and added comments
|
File size:
1.1 KB
|
Line | |
---|
1 | |
---|
2 | <%@ page import="dbnp.studycapturing.Publication" %> |
---|
3 | <% |
---|
4 | /** |
---|
5 | * Form to add publications based on PubMed articles |
---|
6 | * |
---|
7 | * @author Robert Horlings |
---|
8 | * @since 20100526 |
---|
9 | * @see dbnp.studycapturing.PublicationController |
---|
10 | * |
---|
11 | * Revision information: |
---|
12 | * $Rev$ |
---|
13 | * $Author$ |
---|
14 | * $Date$ |
---|
15 | */ |
---|
16 | %> |
---|
17 | <%@ page contentType="text/html;charset=UTF-8" %> |
---|
18 | <html> |
---|
19 | <head> |
---|
20 | <meta name="layout" content="dialog"/> |
---|
21 | <script type="text/javascript" src="${resource(dir: 'js', file: 'publication-chooser.js')}"></script> |
---|
22 | <script type="text/javascript" src="${resource(dir: 'js', file: 'publication-chooser.pubmed.js')}"></script> |
---|
23 | <script type="text/javascript" src="${resource(dir: 'js', file: 'publication-chooser.programminglanguages.js')}"></script> |
---|
24 | |
---|
25 | </head> |
---|
26 | <body> |
---|
27 | |
---|
28 | <g:form action="createFromPubmed"> |
---|
29 | <g:textField name="publication" rel="publication-pubmed" style="width:300px;"/> |
---|
30 | <g:submitButton name="add" value="Add publication" /> |
---|
31 | </g:form> |
---|
32 | |
---|
33 | |
---|
34 | |
---|
35 | ${errors} |
---|
36 | ${message} |
---|
37 | |
---|
38 | <script type="text/javascript"> |
---|
39 | $(document).ready(function() { |
---|
40 | // initialize the ontology chooser |
---|
41 | PublicationChooser.init(); |
---|
42 | }); |
---|
43 | </script> |
---|
44 | </body> |
---|
45 | </html> |
---|
Note: See
TracBrowser
for help on using the repository browser.