2011-10-04 Miguel de Dios <miguel.dedios@artica.es>
* src/pandroid_event_viewer/pandorafms/Main.java: fixed the status value posprocess. * res/values/arrays.xml, res/values-en/arrays.xml, res/values-es/arrays.xml: added comment with this change. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@5041 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
67b703a844
commit
b6e18e641c
|
@ -1,4 +1,13 @@
|
|||
2011-10-04 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* src/pandroid_event_viewer/pandorafms/Main.java: fixed the status value
|
||||
posprocess.
|
||||
|
||||
* res/values/arrays.xml, res/values-en/arrays.xml, res/values-es/arrays.xml:
|
||||
added comment with this change.
|
||||
|
||||
2011-10-04 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* res/values/arrays.xml, res/values-en/arrays.xml,
|
||||
res/values-es/arrays.xml: disabled the element search "all events" for the
|
||||
actual version Pandora API.
|
||||
|
|
|
@ -52,7 +52,7 @@
|
|||
<!-- You must subtract -1 -->
|
||||
<!--<item>All event</item>//The next version re-add please -->
|
||||
|
||||
<!-- You must subtract -2 -->
|
||||
<!-- You must subtract 0 -->
|
||||
<item>Only new</item>
|
||||
<item>Only validated</item>
|
||||
<item>Only in process</item>
|
||||
|
|
|
@ -52,7 +52,7 @@
|
|||
<!-- You must subtract -1 -->
|
||||
<!--<item>Todo los eventos</item> //The next version re-add please -->
|
||||
|
||||
<!-- You must subtract -2 -->
|
||||
<!-- You must subtract 0 -->
|
||||
<item>Solo los nuevos</item>
|
||||
<item>Solo los validados</item>
|
||||
<item>Solo los en proceso</item>
|
||||
|
|
|
@ -52,7 +52,7 @@
|
|||
<!-- You must subtract -1 -->
|
||||
<!--<item>All event</item>//The next version re-add please -->
|
||||
|
||||
<!-- You must subtract -2 -->
|
||||
<!-- You must subtract 0 -->
|
||||
<item>Only new</item>
|
||||
<item>Only validated</item>
|
||||
<item>Only in process</item>
|
||||
|
|
|
@ -294,12 +294,12 @@ public class Main extends Activity {
|
|||
}
|
||||
|
||||
combo = (Spinner) findViewById(R.id.severity_combo);
|
||||
//this.object.severity = combo.getSelectedItemPosition() - 1;//The next version re-add please
|
||||
this.object.severity = combo.getSelectedItemPosition() - 2;
|
||||
this.object.severity = combo.getSelectedItemPosition() - 1;
|
||||
|
||||
combo = (Spinner)findViewById(R.id.status_combo);
|
||||
Log.e("Main search_form", "status_combo = " + combo.getSelectedItemPosition());
|
||||
this.object.status = combo.getSelectedItemPosition() - 1;
|
||||
//this.object.status = combo.getSelectedItemPosition() - 1;//The next version re-add please
|
||||
this.object.status = combo.getSelectedItemPosition() - 0;
|
||||
|
||||
text = (EditText)findViewById(R.id.event_search_text);
|
||||
this.object.eventSearch = text.getText().toString();
|
||||
|
@ -341,7 +341,7 @@ public class Main extends Activity {
|
|||
|
||||
combo = (Spinner)findViewById(R.id.status_combo);
|
||||
//filterStatus = combo.getSelectedItemPosition() - 1;//The next version re-add please
|
||||
filterStatus = combo.getSelectedItemPosition() - 2;
|
||||
filterStatus = combo.getSelectedItemPosition() - 0;
|
||||
|
||||
combo = (Spinner)findViewById(R.id.max_time_old_event_combo);
|
||||
filterLastTime = combo.getSelectedItemPosition();
|
||||
|
|
|
@ -337,6 +337,10 @@ public class PandroidEventviewerActivity extends TabActivity implements Serializ
|
|||
|
||||
return_api = Core.convertStreamToString(entityResponse.getContent());
|
||||
return_api = return_api.replaceAll("\\<.*?\\>", ""); //Clean html tags.
|
||||
|
||||
//Work around for the crap of \n in this event bad xml
|
||||
return_api = return_api.replaceAll("Unable to process XML data file.*?line 187 thread 5", "Bad XML");
|
||||
|
||||
Log.e("return_api", return_api);
|
||||
|
||||
String[] lines = return_api.split("\n");
|
||||
|
|
Loading…
Reference in New Issue