/[projects]/android/TrainInfo/src/dk/thoerup/traininfo/StationList.java
ViewVC logotype

Diff of /android/TrainInfo/src/dk/thoerup/traininfo/StationList.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

android/TrainInfo/src/dk/thoerup/traininfo/TrainInfoList.java revision 243 by torben, Sun Aug 9 12:12:33 2009 UTC android/TrainInfo/src/dk/thoerup/traininfo/StationList.java revision 546 by torben, Fri Jan 22 11:28:56 2010 UTC
# Line 1  Line 1 
1  package dk.thoerup.traininfo;  package dk.thoerup.traininfo;
2    
3    import java.util.ArrayList;
4    import java.util.List;
5    
6    
7  import android.app.AlertDialog;  import android.app.AlertDialog;
8  import android.app.Dialog;  import android.app.Dialog;
9  import android.app.ListActivity;  import android.app.ListActivity;
10  import android.app.ProgressDialog;  import android.app.ProgressDialog;
11  import android.content.DialogInterface;  import android.content.DialogInterface;
12  import android.content.Intent;  import android.content.Intent;
13    import android.content.SharedPreferences;
14    import android.content.SharedPreferences.Editor;
15    import android.location.Location;
16  import android.os.AsyncTask;  import android.os.AsyncTask;
17  import android.os.Bundle;  import android.os.Bundle;
18  import android.os.Handler;  import android.os.Handler;
19  import android.os.Message;  import android.os.Message;
20    
21    import android.view.ContextMenu;
22    import android.view.LayoutInflater;
23    import android.view.Menu;
24    import android.view.MenuItem;
25  import android.view.View;  import android.view.View;
26    import android.view.ContextMenu.ContextMenuInfo;
27    import android.view.View.OnCreateContextMenuListener;
28    import android.widget.AdapterView;
29    import android.widget.EditText;
30  import android.widget.ListView;  import android.widget.ListView;
31    import android.widget.Toast;
32    import dk.thoerup.traininfo.provider.ProviderFactory;
33    import dk.thoerup.traininfo.provider.StationProvider;
34    import dk.thoerup.traininfo.stationmap.GeoPair;
35    import dk.thoerup.traininfo.stationmap.StationMapView;
36    import dk.thoerup.traininfo.util.IntSet;
37    import dk.thoerup.traininfo.util.MessageBox;
38    
39    public class StationList extends ListActivity  {
40            public static final int GOTLOCATION = 1001;
41            public static final int GOTSTATIONLIST = 1002;
42            public static final int NOPROVIDER = 1003;
43            public static final int LOCATIONFIXTIMEOUT = 1004;
44            
45            public static final int OPTIONS_MAP = 2003;
46            public static final int OPTIONS_GPSINFO = 2004;
47    
 public class TrainInfoList extends ListActivity  {  
         public static final int GOTLOCATION = 1;  
         public static final int GOTSTATIONLIST = 2;  
         public static final int NOPROVIDER = 3;  
         public static final int FIXTIMEOUT = 4;  
         public static final int LOOKUPSTATIONFAILED = 5;  
48                    
49          public static final int DLG_PROGRESS = 1;  
50            
51            public static final int DLG_PROGRESS = 3001;
52            public static final int DLG_STATIONNAME = 3002;
53            
54            static enum LookupMethod {
55                    ByLocation,
56                    ByName,
57                    ByList,
58                    MethodNone
59            }
60            
61                    
62          /** Called when the activity is first created. */          String dialogMessage = "";
63          ProgressDialog dialog;          ProgressDialog dialog;
64          StationLocator locator = null;          LocationLookup locationLookup = null;
65          LocatorTask locatorTask = new LocatorTask();          FindStationsTask findStationsTask;
66            StationsFetchedHandler stationsFetched = new StationsFetchedHandler();
67                    
68          boolean isRunning;          GeoPair location = new GeoPair();
69            
70            boolean isRunning = false;
71            List<StationBean> stations = new ArrayList<StationBean>();
72            
73            StationProvider stationProvider = ProviderFactory.getStationProvider();
74                    
75          StationListAdapter adapter = null;          StationListAdapter adapter = null;
76            
77            FavoritesMenu contextMenu = new FavoritesMenu();
78            IntSet favorites = new IntSet();
79    
80            WelcomeScreen.ListType listType;
81            SharedPreferences prefs;
82            
83            ///////////////////////////////////////////////////////////////////////////////////////////
84            //Activity call backs
85            
86            @SuppressWarnings("unchecked")
87          @Override          @Override
88          public void onCreate(Bundle savedInstanceState) {          public void onCreate(Bundle savedInstanceState) {
89                  super.onCreate(savedInstanceState);                  super.onCreate(savedInstanceState);
90                  setContentView(R.layout.main);                  setContentView(R.layout.stationlist);
91                                    
                 //StationLocator.injectMockLocation(this);  
92                                    
93                  adapter = new StationListAdapter(this);                  adapter = new StationListAdapter(this);
94                  setListAdapter(adapter);                  setListAdapter(adapter);
95                                    
96                  locator = new StationLocator(this, stationsFetched);                  ListView lv = getListView();
97                    lv.setOnCreateContextMenuListener(contextMenu);
98                                    
99                  startLookup();                  locationLookup = new LocationLookup(this, stationsFetched);
100                    
101    
102                    prefs = getSharedPreferences("TrainStation", 0);
103                    String favoriteString = prefs.getString("favorites", "");
104                    if (! favoriteString.equals("") ) {
105                            favorites.fromString(favoriteString);
106                    }
107                    
108                    listType = (WelcomeScreen.ListType) getIntent().getSerializableExtra("type");
109                    setTitle();
110                    
111                    if (savedInstanceState == null) {
112    
113                            
114                            switch (listType) {
115                            case ListNearest:
116                                    startLookup();
117                                    break;
118                            case ListSearch:
119                                    this.showDialog(DLG_STATIONNAME);
120                                    break;
121                            case ListFavorites:
122                                    startFavoriteLookup();
123                                    break;
124                            default:
125                                    // Not possible !?!
126                            }
127                            
128                    } else {
129                            stations = (ArrayList<StationBean>) savedInstanceState.getSerializable("stations");
130                            adapter.setStations(stations);
131                            location = (GeoPair) savedInstanceState.getSerializable("location");
132                    }
133                    
134            }
135            protected void setTitle() {
136                    String dialogTitle = getResources().getString(R.string.app_name);
137                    switch (listType) {
138                    case ListNearest:
139                            dialogTitle += " - Nearby stations";
140                            break;
141                    case ListSearch:
142                            dialogTitle += " - Search";
143                            break;
144                    case ListFavorites:
145                            dialogTitle += " - Favorites";
146                            break;
147                    default:
148                            dialogTitle = "";//not possible                                
149                    }
150            
151                    setTitle(dialogTitle);
152          }          }
153                    
154            
155    
156    
157      @Override      @Override
158      public void onSaveInstanceState(Bundle outState)      public void onSaveInstanceState(Bundle outState)
159      {      {
160          if (dialog.isShowing())          if (dialog != null && dialog.isShowing())
161                  dialog.dismiss();                  dialog.dismiss();
162            outState.putSerializable("stations", (ArrayList<StationBean>) stations);
163            outState.putSerializable("location", location);
164            
165      }      }
166                    
167                    
168    
169          @Override          @Override
170            public boolean onCreateOptionsMenu(Menu menu) {
171                    MenuItem item;
172                                    
173                    item = menu.add(0, OPTIONS_MAP, 0, "Station map");
174                    item.setIcon(android.R.drawable.ic_menu_mapmode);
175                    
176                    item = menu.add(0, OPTIONS_GPSINFO, 0, "GPS Info");
177                    item.setIcon(android.R.drawable.ic_menu_mapmode);              
178                    
179                    return true;
180            }
181    
182            @Override
183            public boolean onOptionsItemSelected(MenuItem item) {
184                    boolean retval = true;
185    
186                    //TODO: Cleanup
187                    switch (item.getItemId()) {
188                    case OPTIONS_MAP:
189                            
190                            Intent intent = new Intent(this,StationMapView.class);
191                            
192                            ArrayList<GeoPair> stationPoints = new ArrayList<GeoPair>();
193                            for (StationBean st : stations ) {
194                                    stationPoints.add( new GeoPair(st.getLatitude(), st.getLongitude(), st.getName()) );
195                            }
196                            
197                            intent.putExtra("stations", stationPoints);
198                            
199                            startActivity(intent);
200                            break;
201                    case OPTIONS_GPSINFO:
202                            Location loc = locationLookup.getLocation();
203                            StringBuffer message = new StringBuffer();
204                            message.append("Location info:\n");
205                            message.append("-Obtained by: ").append(loc != null ? loc.getProvider() : "-").append("\n");
206                            message.append("-Accuracy: ").append(loc != null ? (int)loc.getAccuracy() : "-").append("m\n");
207                            message.append("-Latitude: ").append(loc != null ? loc.getLatitude() : "-").append("\n");
208                            message.append("-Longitude: ").append(loc != null ? loc.getLongitude() : "-").append("\n");
209                            MessageBox.showMessage(this, message.toString());
210                            break;
211                    default:
212                            retval = super.onOptionsItemSelected(item);
213                    }
214                    
215                    return retval;
216            }
217            
218            
219    
220            @Override
221            public boolean onContextItemSelected(MenuItem item) {
222                    contextMenu.onContextItemSelected(item);
223                    return true;
224    
225    
226            }
227    
228    
229    
230    
231            @Override
232          protected Dialog onCreateDialog(int id) {          protected Dialog onCreateDialog(int id) {
233                  switch (id) {                  switch (id) {
234                  case DLG_PROGRESS:                  case DLG_PROGRESS:
235                          ProgressDialog dlg = new ProgressDialog(this);                          ProgressDialog dlg = new ProgressDialog(this);
236                          dlg.setMessage("Wait for location fix");                          dlg.setMessage("Wait for location fix");
237                          dlg.setCancelable(false);                          dlg.setCancelable(false);
238                          return dlg;                          return dlg;                    
239                    case DLG_STATIONNAME:
240                            LayoutInflater factory = LayoutInflater.from(this);
241                            final View rootView = factory.inflate(R.layout.textinput, null);
242                            
243                            
244                            AlertDialog.Builder builder = new AlertDialog.Builder(this);
245                            
246                            builder.setTitle("Station search");
247                            builder.setView(rootView);
248                            builder.setCancelable(true);
249                            builder.setPositiveButton("Search", new DialogInterface.OnClickListener() {
250                                    public void onClick(DialogInterface dialog, int which) {
251                                            EditText et = (EditText) rootView.findViewById(R.id.EditText);
252                                            dialog.dismiss();
253                                            if (et.getText().toString().length() >= 2) {
254                                                    startNameSearch(et.getText().toString());
255                                            } else {
256                                                    MessageBox.showMessage(StationList.this, "Two characters minimum" );
257                                            }
258                                    }
259                            });
260                            builder.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
261                                    public void onClick(DialogInterface dialog, int which) {
262                                            dialog.dismiss();
263                                    }
264                            });                    
265                            return builder.create();
266                            
267                  default:                  default:
268                          return super.onCreateDialog(id);                                          return super.onCreateDialog(id);                
269                  }                  }
# Line 69  public class TrainInfoList extends ListA Line 271  public class TrainInfoList extends ListA
271          }          }
272                    
273                    
   
274          @Override          @Override
275          protected void onPrepareDialog(int id, Dialog dialog) {          protected void onPrepareDialog(int id, Dialog dialog) {
276                  super.onPrepareDialog(id, dialog);                  super.onPrepareDialog(id, dialog);
277                  switch (id) {                  switch (id) {
278                  case DLG_PROGRESS:                  case DLG_PROGRESS:
279                          this.dialog = (ProgressDialog) dialog;                          this.dialog = (ProgressDialog) dialog;
280                            if (!dialogMessage.equals("")) {
281                                    this.dialog.setMessage(dialogMessage);
282                                    dialogMessage = "";
283                            }
284                          break;                          break;
285                  }                  }
286          }          }
287            
288            @Override
289            protected void onListItemClick(ListView l, View v, int position, long id) {
290                    super.onListItemClick(l, v, position, id);
291                                    
292                    StationBean station = stations.get(position);
293    
294                    double latitude = station.getLatitude();
295                    double longitude = station.getLongitude();
296    
297    
298                    
299                    Intent intent = new Intent(this, DepartureList.class);
300                    intent.putExtra("name", station.getName());
301                    intent.putExtra("distance", station.getDistance());
302                    intent.putExtra("latitude", latitude);
303                    intent.putExtra("longitude", longitude);
304                    intent.putExtra("stationid", station.getId());
305                    intent.putExtra("address", station.getAddress());
306                    startActivity(intent);
307            }
308    
309            /////////////////////////////////////////////////////////////
310            //
311    
312          public void startLookup() {          public void startLookup() {
313                  isRunning = true;                  isRunning = true;
314                    dialogMessage = "Wait for location fix";
315                    showDialog(DLG_PROGRESS);
316                    
317                    locationLookup.locateStations();
318                    stationsFetched.sendEmptyMessageDelayed(LOCATIONFIXTIMEOUT, 20000);
319            }
320            
321            void startNameSearch(String name) {
322                    dialogMessage = "Finding stations by name";
323                  showDialog(DLG_PROGRESS);                  showDialog(DLG_PROGRESS);
324    
325                    findStationsTask = new FindStationsTask();
326                    findStationsTask.searchByName(name, locationLookup.getLocation());
327                    findStationsTask.execute();
328                    
329            }
330            
331            public void startFavoriteLookup() {
332                                    
333                  locator.locateStations();                  if (favorites.size() > 0) {
334                  stationsFetched.sendEmptyMessageDelayed(FIXTIMEOUT, 20000);                                      dialogMessage = "Loading favorites";
335                            showDialog(DLG_PROGRESS);
336    
337                            findStationsTask = new FindStationsTask();
338                            findStationsTask.searchByIds(favorites.toString(), locationLookup.getLocation());
339                            findStationsTask.execute();
340                    } else {
341                            MessageBox.showMessage(this, "Favorite list is empty");
342                    }
343          }          }
344    
345    
346          Handler stationsFetched = new Handler() {          
347            void startLocatorTask()
348            {
349                    dialogMessage = "Finding nearby stations";
350                    showDialog(DLG_PROGRESS);
351                    
352                    findStationsTask = new FindStationsTask();
353                    findStationsTask.searchByLocation( locationLookup.getLocation() );
354                    findStationsTask.execute();    
355            }
356            
357    
358            /* TODO: Remove this no longer needed function
359            String lookupAddress(double latitude, double longitude) {
360                    
361                    Geocoder coder = new Geocoder(this, new Locale("da"));
362                    StringBuilder sb = new StringBuilder();
363                    Log.i("lookupaddr", "" + latitude + "/" + longitude);
364                    try {
365                            List<Address> addressList = coder.getFromLocation(latitude, longitude, 1);
366                            Address addr = addressList.get(0);
367                            
368                            
369                            int max = addr.getMaxAddressLineIndex();
370                            for (int i=0; i<max; i++) {
371                                    if (i>0)
372                                            sb.append(", ");
373                                    
374                                    sb.append(addr.getAddressLine(i));
375                            }
376                            
377                            
378                    } catch (Exception e) {
379                            Log.e("DepartureList", "geocoder failed", e);
380                    }
381                    
382                    return sb.toString();
383            }*/
384            
385            
386            ////////////////////////////////////////////////////////////////////////////
387            // Inner classes
388    
389            class StationsFetchedHandler extends Handler {
390                  @Override                  @Override
391                  public void handleMessage(Message msg) {                  public void handleMessage(Message msg) {
392                            
393                          switch (msg.what) {                          switch (msg.what) {
394                          case GOTLOCATION:                          case GOTLOCATION:
395                                  dialog.setMessage("Finding nearby stations");                                  dismissDialog(DLG_PROGRESS);
396                                  locatorTask.execute();                                  
397                                  break;                                  startLocatorTask();
398                          case GOTSTATIONLIST:                                  location = GeoPair.fromLocation( locationLookup.getLocation() );
399                                  dialog.dismiss();                                  
                                 adapter.setStations( locator.getStations() );  
400                                  break;                                  break;
401    
402                          case NOPROVIDER:                          case NOPROVIDER:
403                                  dialog.dismiss();                                  dismissDialog(DLG_PROGRESS);
404                                  showMessageBox("No location provider enabled. Plase enable gps.");                                  MessageBox.showMessage(StationList.this,"No location provider enabled. Plase enable gps.");
405                                  break;                                  break;
406                          case FIXTIMEOUT:                          case LOCATIONFIXTIMEOUT:                                
                                 dialog.dismiss();  
407                                  if (isRunning) {                                  if (isRunning) {
408                                          locator.abortLocationListener();                                          locationLookup.stopSearch();
409                                          showMessageBox("GPS fix timed out");                                          if (locationLookup.hasLocation()) {
410                                                    stationsFetched.sendEmptyMessage( GOTLOCATION );
411                                            } else {                                                
412                                                    dismissDialog(DLG_PROGRESS);
413                                                    
414                                                    AlertDialog.Builder builder = new AlertDialog.Builder(StationList.this);                                                
415                                                    builder.setMessage("Location fix timed out");
416                                                    builder.setCancelable(true);
417                                                    builder.setPositiveButton("Retry", new DialogInterface.OnClickListener() {
418                                                            public void onClick(DialogInterface dialog, int id) {
419                                                                    dialog.dismiss();
420                                                                    startLookup();
421                                                                    
422                                                            }
423                                                    });
424                                                    builder.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
425                                                            public void onClick(DialogInterface dialog, int id) {
426                                                                    dialog.dismiss();
427                                                            }                                                      
428                                                    });                                                                                            
429                                                    builder.show();
430    
431                                            }
432                                  }                                  }
433                                  break;                                  break;
                         case LOOKUPSTATIONFAILED:  
                                 dialog.dismiss();  
                                 showMessageBox("Error on finding nearby stations");  
                                 break;  
434                          }                          }
                           
435                          isRunning = false;                          isRunning = false;
436                  }                  }
437          };          };
438    
439                    
440                    class FindStationsTask extends AsyncTask<Void,Void,Void> {
           
         @Override  
         protected void onListItemClick(ListView l, View v, int position, long id) {  
                 super.onListItemClick(l, v, position, id);  
441                                    
442                  StationBean station = adapter.getStation(position);                  LookupMethod method = LookupMethod.MethodNone;
443                    boolean success;
444                    String name;
445                    Location loc;
446                    String ids;
447                                    
448                    public void searchByName(String n, Location l) {
449                            
450                            method = LookupMethod.ByName;
451                            loc = l;
452                            name = n;
453                    }
454                    
455                    public void searchByLocation(Location l) {
456                            method = LookupMethod.ByLocation;
457                            loc = l;
458                    }
459                    
460                    public void searchByIds(String id, Location l) {
461                            
462                            method = LookupMethod.ByList;
463                            loc = l;
464                            ids = id;
465                    }
466                                    
                 Intent intent = new Intent(this, DepartureList.class);  
                 intent.putExtra("name", station.getName());  
                 intent.putExtra("address", station.getAddress());  
                 intent.putExtra("distance", station.getDistance());  
                 intent.putExtra("latitude", station.getLatitude());  
                 intent.putExtra("longitude", station.getLongitude());  
                 startActivity(intent);  
         }  
   
         public void showMessageBox(String message) {  
                 AlertDialog.Builder builder = new AlertDialog.Builder(this);  
                 builder.setMessage(message)  
                 .setCancelable(false)  
                 .setPositiveButton("OK", new DialogInterface.OnClickListener() {  
                         public void onClick(DialogInterface dialog, int id) {  
                                 dialog.dismiss();  
                         }  
                 })  
                 .show();  
   
         }  
           
         class LocatorTask extends AsyncTask<Void,Void,Void> {  
467                  @Override                  @Override
468                  protected void onPreExecute() {                  protected void onPreExecute() {
469    
470                            if (method.equals(LookupMethod.MethodNone))
471                                    throw new RuntimeException("Method not set");
472                          super.onPreExecute();                          super.onPreExecute();
473                  }                  }
474                                    
475                  @Override                  @Override
476                  protected Void doInBackground(Void... params) {                  protected Void doInBackground(Void... params) {
477                          locator.findNearestStations();  
478                            switch (method) {
479                            case ByLocation:
480                                    success = stationProvider.lookupStations(loc);
481                                    break;
482                            case ByName:
483                                    success = stationProvider.lookupStationsByName(name);
484                                    break;
485                            case ByList:
486                                    success = stationProvider.lookupStationsByIds(ids);
487                                    break;
488                            default:
489                                    success = false; // not possible        
490                            }
491                            
492                            
493                            Location dummy = new Location("gps");
494                            List<StationBean> stations = stationProvider.getStations();
495                            
496                            for (StationBean station : stations) {
497                                                                    
498                                    if (method.equals(LookupMethod.ByName) || method.equals(LookupMethod.ByList)) {
499                                            if (loc != null) { //only do the distance calc if we have a location
500                                                    dummy.setLatitude(station.getLatitude());
501                                                    dummy.setLongitude(station.getLongitude());
502                                                    station.setDistance( (int)loc.distanceTo(dummy) );
503                                            } else {
504                                                    station.setDistance(0);
505                                            }
506                                    }
507    
508                            }                                              
509                            
510                          return null;                          return null;
511                  }                  }
512    
513                  @Override                  @Override
514                  protected void onPostExecute(Void result) {                  protected void onPostExecute(Void result) {
515                          super.onPostExecute(result);                          super.onPostExecute(result);
516                            dialog.dismiss();
517                            
518                            
519                            if (success) {                          
520                                    if (stationProvider.getStations().size() == 0)
521                                            MessageBox.showMessage(StationList.this, "No stations found!"); // this should not be possible !?!
522                                    stations = stationProvider.getStations();
523                                    adapter.setStations( stations );                                
524                                    
525                            } else { //communication or parse errors
526                                    AlertDialog.Builder builder = new AlertDialog.Builder(StationList.this);                                                
527                                    builder.setMessage("Error on finding nearby stations");
528                                    builder.setCancelable(true);
529                                    builder.setPositiveButton("Retry", new DialogInterface.OnClickListener() {
530                                            public void onClick(DialogInterface dialog, int id) {
531                                                    dialog.dismiss();
532                                                    
533                                                    stationsFetched.post( new Runnable() {
534                                                            @Override
535                                                            public void run() {
536                                                                    startLocatorTask();                                                            
537                                                            }
538                                                    });
539                                            }
540                                    });
541                                    builder.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
542                                            public void onClick(DialogInterface dialog, int id) {
543                                                    dialog.dismiss();
544                                            }                                                      
545                                    });                                                                                            
546                                    builder.show();                        
547                            }
548                    }
549            }
550            
551            
552            class FavoritesMenu implements OnCreateContextMenuListener {
553                    private final static int FAVORITES_ADD = 9001;
554                    private final static int FAVORITES_REMOVE = 9002;
555                    
556                    private int selectedPosition;
557                    
558                    
559                    @Override
560                    public void onCreateContextMenu(ContextMenu menu, View v, ContextMenuInfo menuInfo) {
561                                                    
562                            AdapterView.AdapterContextMenuInfo info = (AdapterView.AdapterContextMenuInfo) menuInfo;
563                            selectedPosition = info.position;
564                            int stationID = stations.get(selectedPosition).getId();
565    
566                            if (!favorites.contains(stationID)) {
567                                    menu.add(0, FAVORITES_ADD, 0, "Add to favorites");
568                            } else {
569                                    menu.add(0, FAVORITES_REMOVE, 0, "Remove from favorites");
570                            }
571                            
572                    }
573                    
574                    public void onContextItemSelected(MenuItem item) {
575                            StationBean sb = stations.get(selectedPosition);
576                            
577                            int stationID = sb.getId();
578                            if (item.getItemId() == FAVORITES_ADD) {
579                                    favorites.add(stationID);
580                                    Toast.makeText(StationList.this, "Station added", Toast.LENGTH_SHORT).show();
581                            } else {
582                                    
583                                    favorites.remove(stationID);
584                                    Toast.makeText(StationList.this, "Station removed", Toast.LENGTH_SHORT).show();
585                                    
586                                    
587                                    if (listType.equals( WelcomeScreen.ListType.ListFavorites) ) {
588                                            stations.remove(selectedPosition);
589                                            adapter.notifyDataSetChanged();
590                                    }
591                            }
592                            Editor ed = prefs.edit();
593                            ed.putString("favorites", favorites.toString());
594                            ed.commit();
595                  }                  }
596          }          }
597  }  }

Legend:
Removed from v.243  
changed lines
  Added in v.546

  ViewVC Help
Powered by ViewVC 1.1.20