| /trunk/YourTimesheets/Tools/clean.html r2 | /trunk/YourTimesheets/Tools/clean.html r3 | ||
| 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
|---|---|---|---|
| 2 | <html xmlns="http://www.w3.org/1999/xhtml" > | 2 | <html xmlns="http://www.w3.org/1999/xhtml" > |
| 3 | <head> | 3 | <head> |
| 4 | <title>Load This Page to Blow Away Accumulated Gears Data</title> | 4 | <title>Load This Page to Blow Away Accumulated Gears Data</title> |
| 5 | <script type="text/javascript" src="Scripts/gears_init.js"></script> | 5 | <script type="text/javascript" src="../Scripts/gears_init.js"></script> |
| 6 | </head> | 6 | </head> |
| 7 | <body> | 7 | <body> |
| 8 | <script type="text/javascript"> | 8 | <script type="text/javascript"> |
| 9 | var server = google.gears.factory.create('beta.localserver', '1.0'); | 9 | var server = google.gears.factory.create('beta.localserver', '1.0'); |
| 10 | server.removeStore('YourTimesheets'); | 10 | server.removeStore('YourTimesheets'); |
| 11 | var db = google.gears.factory.create('beta.database', '1.0'); | 11 | var db = google.gears.factory.create('beta.database', '1.0'); |
| 12 | db.open('YourTimesheets'); | 12 | db.open('YourTimesheets'); |
| 13 | db.execute('DROP TABLE IF EXISTS Entries'); | 13 | db.execute('DROP TABLE IF EXISTS Entries'); |
| 14 | </script> | 14 | </script> |
| 15 | </body> | 15 | </body> |
| 16 | </html> | 16 | </html> |