Changeset 391 for gssim_ui/branches
- Timestamp:
- 08/14/12 10:37:05 (13 years ago)
- Location:
- gssim_ui/branches/vine/gssimstudio/src/web/ui/flex
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
gssim_ui/branches/vine/gssimstudio/src/web/ui/flex/app/gssim/gssimstudio/editor/GSSimStudio.mxml
r389 r391 16 16 <fx:Metadata> 17 17 [ResourceBundle("Common")] 18 [ResourceBundle("Messages")] 18 19 [ResourceBundle("Help")] 19 20 </fx:Metadata> -
gssim_ui/branches/vine/gssimstudio/src/web/ui/flex/app/gssim/gssimstudio/editor/views/ExperimentEditor.mxml
r377 r391 77 77 submitExperiment(removeItem(experimentsDG) as ExperimentProperties); 78 78 experimentMetaname.text = ""; 79 Alert.show(resourceManager.getString("ExperimentEditor", "ExperimentSubmited"));80 79 } 81 80 } … … 111 110 } 112 111 experimentMetaname.text = ""; 113 Alert.show(resourceManager.getString("ExperimentEditor", "ExperimentsSubmited"));114 112 } 115 113 -
gssim_ui/branches/vine/gssimstudio/src/web/ui/flex/java/gssim/gssimstudio/flex/app/editor/GanntChart.java
r24 r391 94 94 */ 95 95 @BlazeDsDestination(portletEntry = false, locales = {"en_US","pl_PL"}, names = {"GSSim Studio","GSSim Studio"}, descriptions = {"Application for GSSim job description","Aplikacja do generowania zadaᅵ dla symulatora GSSim"}) 96 public class GanntChart { 97 98 /** 99 * The location of database source 100 */ 101 private String dbAddress = "seagrass.man.poznan.pl:3306/gssim_results"; 102 /** 103 * Username to access database 104 */ 105 private String dbUser = "gssim"; 106 /** 107 * Password to database [is it safe?] 108 */ 109 private String dbPassword = "Ua7Ahs9r"; 110 96 public class GanntChart extends DatabaseHelper { 97 111 98 private Boolean developement = true; 112 99 -
gssim_ui/branches/vine/gssimstudio/src/web/ui/flex/java/gssim/gssimstudio/flex/app/editor/ResourceChart.java
r208 r391 94 94 */ 95 95 @BlazeDsDestination(portletEntry = false, locales = {"en_US","pl_PL"}, names = {"GSSim Studio","GSSim Studio"}, descriptions = {"Application for GSSim job description","Aplikacja do generowania zadaᅵ dla symulatora GSSim"}) 96 public class ResourceChart { 97 98 /** 99 * The location of database source 100 */ 101 private String dbAddress = "localhost:3306/gssim_results"; 102 /** 103 * Username to access database 104 */ 105 private String dbUser = "gssim"; 106 /** 107 * Password to database [is it safe?] 108 */ 109 private String dbPassword = "gssimstudiodb"; 96 public class ResourceChart extends DatabaseHelper { 110 97 111 98 private Boolean developement = true;
Note: See TracChangeset
for help on using the changeset viewer.