Downloads Documentation Community Contribute Demo






Show Sidebar
Login | Register

root/openmrs-modules/formcompletion/metadata/config.xml

Revision 4719, 2.8 kB (checked in by catullus, 6 months ago)

form-completion: made more backwards compatible

Line 
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- <!DOCTYPE module PUBLIC "-//OpenMRS//DTD OpenMRS Config 1.0//EN" "http://resources.openmrs.org/doctype/config-1.0.dtd"> -->
3
4 <module configVersion="1.0">
5        
6         <!-- Form Completion Module Properties -->
7         <id>formcompletion</id>
8         <name>Form Completion Module</name>
9         <version>1.1</version>
10         <package>org.openmrs.module.@MODULE_ID@</package>
11         <author>Chase Yarbrough</author>
12         <description>
13                         Form Completion Module.  Describes what forms have been completed for each patient.
14         </description>
15
16         <activator>@MODULE_PACKAGE@.FormCompletionActivator</activator>
17        
18         <!-- <updateURL>https://dev.openmrs.org/modules/download/@MODULE_ID@/update.rdf</updateURL> -->
19         <!-- /Base Module Properties -->
20        
21         <require_version>1.2.0.3505</require_version>
22        
23         <!-- Extensions -->
24         <extension>
25                 <point>org.openmrs.admin.list</point>
26                 <class>@MODULE_PACKAGE@.extension.html.AdminList</class>
27         </extension>
28        
29        
30         <!-- AOP
31         <advice>
32                 <point>org.openmrs.api.FormService</point>
33                 <class>@MODULE_PACKAGE@.advice.DuplicateFormAdvisor</class>
34         </advice>
35          /AOP -->
36        
37        
38         <!-- Required Privileges
39         <privilege>
40                 <name>Form Entry</name>
41                 <description>Allows user to access Form Entry pages/functions</description>
42         </privilege>
43          /Required Privileges -->
44
45
46         <!-- Required Global Properties
47         <globalProperty>
48                 <property>@MODULE_ID@.someProperty</property>
49                 <defaultValue></defaultValue>
50                 <description>
51                         A description of the global property goes here.  The description
52                         should explain enough for administrators to understand the purpose
53                         and possible values for the global property.
54                 </description>
55         </globalProperty>
56         /Required Global Properties -->
57        
58         <!--
59         <dwr>
60                 <allow>
61                         <create creator="new" javascript="DWRFormEntryService">
62                                 <param name="class" value="org.openmrs.module.@MODULE_ID@.web.DWRFormEntryService"/>
63                                 <include method="enterForm"/>
64                         </create>
65                 </allow>
66
67                 <signatures>
68                         <![CDATA[
69                         import @MODULE_PACKAGE@.web.DWRFormEntryService;
70                         DWRFormEntryService.enterForm(Integer patientId, Integer formId, boolean useEncounter, List<String> fields);
71                         ]]>
72                 </signatures>   
73         </dwr>
74         -->
75        
76         <!-- Servlets -->
77         <!-- Accessed through the url /pageContext()/moduleServlet/<moduleId>/<servlet-name>
78         <servlet>
79                 <servlet-name>formDownload</servlet-name>
80                 <servlet-class>@MODULE_PACKAGE@.web.FormDownloadServlet</servlet-class>
81         </servlet>
82         -->
83         <!-- /Servlets -->
84        
85        
86         <!-- Internationalization -->
87         <!-- All message codes should start with @MODULE_ID@.* -->
88         <messages>
89                 <lang>en</lang>
90                 <file>messages.properties</file>
91         </messages>
92         <messages>
93                 <lang>fr</lang>
94                 <file>messages_fr.properties</file>
95         </messages>
96         <messages>
97                 <lang>es</lang>
98                 <file>messages_es.properties</file>
99         </messages>
100         <!-- /Internationalization -->
101        
102 </module>
103
Note: See TracBrowser for help on using the browser.