=== modified file 'dhis-2/dhis-web/dhis-web-appmanager/src/main/java/org/hisp/dhis/appmanager/action/AppListAction.java' --- dhis-2/dhis-web/dhis-web-appmanager/src/main/java/org/hisp/dhis/appmanager/action/AppListAction.java 2013-05-27 07:31:56 +0000 +++ dhis-2/dhis-web/dhis-web-appmanager/src/main/java/org/hisp/dhis/appmanager/action/AppListAction.java 2013-05-28 08:27:16 +0000 @@ -53,14 +53,14 @@ // Input & Output // ------------------------------------------------------------------------- - private List appList; + private List appList = new ArrayList(); public List getAppList() { return appManagerService.getInstalledApps(); } - private List appFolderNames; + private List appFolderNames = new ArrayList(); public List getAppFolderNames() { @@ -75,8 +75,6 @@ public String execute() throws Exception { - appFolderNames = new ArrayList(); - for ( App app : getAppList() ) { appFolderNames.add( appManagerService.getAppFolderName( app ) ); === modified file 'dhis-2/dhis-web/dhis-web-appmanager/src/main/resources/org/hisp/dhis/appmanager/i18n_module.properties' --- dhis-2/dhis-web/dhis-web-appmanager/src/main/resources/org/hisp/dhis/appmanager/i18n_module.properties 2013-05-27 07:35:21 +0000 +++ dhis-2/dhis-web/dhis-web-appmanager/src/main/resources/org/hisp/dhis/appmanager/i18n_module.properties 2013-05-28 08:27:16 +0000 @@ -12,3 +12,4 @@ appmanager_delete_success=App Deleted Successfully appmanager_management=Manage Installed Apps appmanager_appname=Application Name +appmanager_you_have_no_apps_installed=You have no apps installed at the moment === modified file 'dhis-2/dhis-web/dhis-web-appmanager/src/main/webapp/dhis-web-appmanager/getApps.vm' --- dhis-2/dhis-web/dhis-web-appmanager/src/main/webapp/dhis-web-appmanager/getApps.vm 2013-05-25 16:25:22 +0000 +++ dhis-2/dhis-web/dhis-web-appmanager/src/main/webapp/dhis-web-appmanager/getApps.vm 2013-05-28 08:27:16 +0000 @@ -6,8 +6,8 @@ });
-

$i18n.getString( "appmanager_go" ) #*openHelp( "appManager" )*#

-
+

$i18n.getString( "appmanager_go" ) #*openHelp( "appManager" )*#

+
$i18n.getString( "appmanager_upload_app_package" ):
=== modified file 'dhis-2/dhis-web/dhis-web-appmanager/src/main/webapp/dhis-web-appmanager/index.vm' --- dhis-2/dhis-web/dhis-web-appmanager/src/main/webapp/dhis-web-appmanager/index.vm 2013-05-23 00:18:55 +0000 +++ dhis-2/dhis-web/dhis-web-appmanager/src/main/webapp/dhis-web-appmanager/index.vm 2013-05-28 08:27:16 +0000 @@ -8,14 +8,18 @@

$i18n.getString( "dhis-web-appmanager" ) #*openHelp( "appManager" )*#

    +#if( $appList.isEmpty() ) +
  • $i18n.getString( "appmanager_you_have_no_apps_installed" )
  • +#else #foreach( $app in $appList )
  • - $app.name + ${app.name}
    - $app.developer.name + ${app.developer.name}
  • #end +#end
=== modified file 'resources/sql/integritychecks.sql' --- resources/sql/integritychecks.sql 2013-03-19 19:56:11 +0000 +++ resources/sql/integritychecks.sql 2013-05-28 08:27:16 +0000 @@ -115,7 +115,7 @@ select * from dataelementcategory where categoryid not in (select distinct categoryid from categories_categoryoptions); --- Get categories without category combos +-- Get categories without category combos (not an error but could be removed) select * from dataelementcategory where categoryid not in (select distinct categoryid from categorycombos_categories);