Changeset 5449
- Timestamp:
- 09/04/08 19:51:43 (3 months ago)
- Files:
-
- openmrs-modules/conceptimportexport/branches/1.2.x/metadata/config.xml (modified) (1 diff)
- openmrs-modules/conceptimportexport/branches/1.2.x/src/org/openmrs/module/conceptimportexport/extension/html/AdminList.java (modified) (3 diffs)
- openmrs-modules/conceptimportexport/branches/1.2.x/web/module/conceptimportexportForm.jsp (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
openmrs-modules/conceptimportexport/branches/1.2.x/metadata/config.xml
r5445 r5449 6 6 <!-- Base Module Properties --> 7 7 <id>conceptimportexport</id> 8 <name>Concept Port Module</name>8 <name>Concept Import/Export Module</name> 9 9 <version>1.0</version> 10 10 <package>org.openmrs.module.@MODULE_ID@</package> openmrs-modules/conceptimportexport/branches/1.2.x/src/org/openmrs/module/conceptimportexport/extension/html/AdminList.java
r5445 r5449 22 22 /** 23 23 * This class defines the links that will appear on the administration page 24 * under the "concept portmodule.title" heading.24 * under the "conceptimportexport.title" heading. 25 25 * 26 26 * This extension is enabled by defining (uncommenting) it in the … … 40 40 */ 41 41 public String getTitle() { 42 return "concept portmodule.title";42 return "conceptimportexport.title"; 43 43 } 44 44 … … 50 50 Map<String, String> map = new HashMap<String, String>(); 51 51 52 map.put("module/concept portmodule/importexport.form", "conceptportmodule.title");52 map.put("module/conceptimportexport/importexport.form", "conceptimportexport.title"); 53 53 54 54 return map; openmrs-modules/conceptimportexport/branches/1.2.x/web/module/conceptimportexportForm.jsp
r5445 r5449 6 6 <openmrs:require privilege="View Administration Functions" otherwise="/login.htm" redirect="/admin/index.htm" /> 7 7 8 <h2><spring:message code="concept portmodule.title" /></h2>8 <h2><spring:message code="conceptimportexport.title" /></h2> 9 9 10 10 <br/> 11 11 12 <b class="boxHeader"><spring:message code="concept portmodule.importArea" /></b>12 <b class="boxHeader"><spring:message code="conceptimportexport.importArea" /></b> 13 13 <div class="box"> 14 14 <form id="dictionaryImportForm" action="importexport.form" method="post" enctype="multipart/form-data"> 15 <spring:message code="concept portmodule.importDictionaryArchive"/>:15 <spring:message code="conceptimportexport.importDictionaryArchive"/>: 16 16 <input type="file" name="dictionaryFile" size="40" /> 17 17 <input type="hidden" name="action" value="import"/> … … 19 19 <div id="dictionaryImportButton" style="margin-top: 5px;"> 20 20 <c:choose> 21 <input type="submit" value='<spring:message code="concept portmodule.import"/>'/>21 <input type="submit" value='<spring:message code="conceptimportexport.import"/>'/> 22 22 </c:choose> 23 23 </div> … … 26 26 27 27 <br/> 28 <b class="boxHeader"><spring:message code="concept portmodule.exportArea" /></b>28 <b class="boxHeader"><spring:message code="conceptimportexport.exportArea" /></b> 29 29 <div class="box"> 30 <form id="dictionaryExportForm" action="<%= request.getContextPath() %>/moduleServlet/concept portmodule/exportDictionaryServlet" method="post">31 <spring:message code="concept portmodule.exportDictionaryArchive"/>:30 <form id="dictionaryExportForm" action="<%= request.getContextPath() %>/moduleServlet/conceptimportexport/exportDictionaryServlet" method="post"> 31 <spring:message code="conceptimportexport.exportDictionaryArchive"/>: 32 32 <input type="hidden" name="action" value="export"/> 33 33 34 34 <div id="dictionaryExportButton" style="margin-top: 5px;"> 35 35 <c:choose> 36 <input type="submit" value='<spring:message code="concept portmodule.export"/>'/>36 <input type="submit" value='<spring:message code="conceptimportexport.export"/>'/> 37 37 </c:choose> 38 38 </div> … … 42 42 <br/> 43 43 44 <b class="boxHeader"><spring:message code="concept portmodule.help" /></b>44 <b class="boxHeader"><spring:message code="conceptimportexport.help" /></b> 45 45 <div class="box"> 46 46 <ul> 47 <li><i><spring:message code="concept portmodule.help.import"/></i>48 <li><i><spring:message code="concept portmodule.help.export"/></i>47 <li><i><spring:message code="conceptimportexport.help.import"/></i> 48 <li><i><spring:message code="conceptimportexport.help.export"/></i> 49 49 </ul> 50 50 </div>