Downloads Documentation Community Contribute Demo






Show Sidebar
Login | Register

Changeset 5449

Show
Ignore:
Timestamp:
09/04/08 19:51:43 (3 months ago)
Author:
akollegger
Message:

conceptimportexport 1.2.x: corrected links

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • openmrs-modules/conceptimportexport/branches/1.2.x/metadata/config.xml

    r5445 r5449  
    66        <!-- Base Module Properties --> 
    77        <id>conceptimportexport</id> 
    8         <name>Concept Port Module</name> 
     8        <name>Concept Import/Export Module</name> 
    99        <version>1.0</version> 
    1010        <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  
    2222/** 
    2323 * This class defines the links that will appear on the administration page 
    24  * under the "conceptportmodule.title" heading. 
     24 * under the "conceptimportexport.title" heading. 
    2525 *  
    2626 * This extension is enabled by defining (uncommenting) it in the  
     
    4040         */ 
    4141        public String getTitle() { 
    42                 return "conceptportmodule.title"; 
     42                return "conceptimportexport.title"; 
    4343        } 
    4444         
     
    5050                Map<String, String> map = new HashMap<String, String>(); 
    5151                 
    52                 map.put("module/conceptportmodule/importexport.form", "conceptportmodule.title"); 
     52                map.put("module/conceptimportexport/importexport.form", "conceptimportexport.title"); 
    5353                 
    5454                return map; 
  • openmrs-modules/conceptimportexport/branches/1.2.x/web/module/conceptimportexportForm.jsp

    r5445 r5449  
    66<openmrs:require privilege="View Administration Functions" otherwise="/login.htm" redirect="/admin/index.htm" /> 
    77 
    8 <h2><spring:message code="conceptportmodule.title" /></h2>     
     8<h2><spring:message code="conceptimportexport.title" /></h2>   
    99 
    1010<br/> 
    1111 
    12 <b class="boxHeader"><spring:message code="conceptportmodule.importArea" /></b> 
     12<b class="boxHeader"><spring:message code="conceptimportexport.importArea" /></b> 
    1313<div class="box"> 
    1414        <form id="dictionaryImportForm" action="importexport.form" method="post" enctype="multipart/form-data"> 
    15                 <spring:message code="conceptportmodule.importDictionaryArchive"/>:  
     15                <spring:message code="conceptimportexport.importDictionaryArchive"/>:  
    1616                <input type="file" name="dictionaryFile" size="40" /> 
    1717                <input type="hidden" name="action" value="import"/> 
     
    1919                <div id="dictionaryImportButton" style="margin-top: 5px;"> 
    2020                        <c:choose> 
    21                                 <input type="submit" value='<spring:message code="conceptportmodule.import"/>'/> 
     21                                <input type="submit" value='<spring:message code="conceptimportexport.import"/>'/> 
    2222                        </c:choose> 
    2323                </div> 
     
    2626 
    2727<br/> 
    28 <b class="boxHeader"><spring:message code="conceptportmodule.exportArea" /></b> 
     28<b class="boxHeader"><spring:message code="conceptimportexport.exportArea" /></b> 
    2929<div class="box"> 
    30         <form id="dictionaryExportForm" action="<%= request.getContextPath() %>/moduleServlet/conceptportmodule/exportDictionaryServlet" method="post"> 
    31                 <spring:message code="conceptportmodule.exportDictionaryArchive"/>:  
     30        <form id="dictionaryExportForm" action="<%= request.getContextPath() %>/moduleServlet/conceptimportexport/exportDictionaryServlet" method="post"> 
     31                <spring:message code="conceptimportexport.exportDictionaryArchive"/>:  
    3232                <input type="hidden" name="action" value="export"/> 
    3333                 
    3434                <div id="dictionaryExportButton" style="margin-top: 5px;"> 
    3535                        <c:choose> 
    36                                 <input type="submit" value='<spring:message code="conceptportmodule.export"/>'/> 
     36                                <input type="submit" value='<spring:message code="conceptimportexport.export"/>'/> 
    3737                        </c:choose> 
    3838                </div> 
     
    4242<br/> 
    4343 
    44 <b class="boxHeader"><spring:message code="conceptportmodule.help" /></b> 
     44<b class="boxHeader"><spring:message code="conceptimportexport.help" /></b> 
    4545<div class="box"> 
    4646        <ul> 
    47                 <li><i><spring:message code="conceptportmodule.help.import"/></i> 
    48                 <li><i><spring:message code="conceptportmodule.help.export"/></i> 
     47                <li><i><spring:message code="conceptimportexport.help.import"/></i> 
     48                <li><i><spring:message code="conceptimportexport.help.export"/></i> 
    4949        </ul> 
    5050</div>