├── .gitignore ├── AndroidManifest.xml ├── License ├── README ├── ant.properties ├── proguard.cfg ├── project.properties ├── res ├── drawable │ ├── clock.png │ ├── ic_media_next.png │ ├── vert_toggle_off.9.png │ ├── vert_toggle_on.9.png │ └── widget_bg_normal.9.png ├── layout │ ├── app_widget.xml │ ├── entries.xml │ ├── export.xml │ ├── header.xml │ ├── main.xml │ ├── task_edit.xml │ ├── time_entry.xml │ ├── time_entry_edit.xml │ └── week_entry.xml ├── values │ ├── strings.xml │ └── styles.xml └── xml │ ├── preferences.xml │ └── timesheet_widget_info.xml ├── src └── com │ └── tastycactus │ └── timesheet │ ├── ExportActivity.java │ ├── MergeAdapter.java │ ├── TaskEditActivity.java │ ├── TimeEntriesActivity.java │ ├── TimeEntryEditActivity.java │ ├── TimesheetActivity.java │ ├── TimesheetAppWidgetProvider.java │ ├── TimesheetDatabase.java │ └── TimesheetPreferences.java └── tests ├── AndroidManifest.xml ├── build.properties ├── build.xml ├── default.properties ├── local.properties └── src └── com └── aaronbrice └── timesheet └── TimesheetActivityTest.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orbiter/timesheet/HEAD/.gitignore -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orbiter/timesheet/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orbiter/timesheet/HEAD/License -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orbiter/timesheet/HEAD/README -------------------------------------------------------------------------------- /ant.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orbiter/timesheet/HEAD/ant.properties -------------------------------------------------------------------------------- /proguard.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orbiter/timesheet/HEAD/proguard.cfg -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orbiter/timesheet/HEAD/project.properties -------------------------------------------------------------------------------- /res/drawable/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orbiter/timesheet/HEAD/res/drawable/clock.png -------------------------------------------------------------------------------- /res/drawable/ic_media_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orbiter/timesheet/HEAD/res/drawable/ic_media_next.png -------------------------------------------------------------------------------- /res/drawable/vert_toggle_off.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orbiter/timesheet/HEAD/res/drawable/vert_toggle_off.9.png -------------------------------------------------------------------------------- /res/drawable/vert_toggle_on.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orbiter/timesheet/HEAD/res/drawable/vert_toggle_on.9.png -------------------------------------------------------------------------------- /res/drawable/widget_bg_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orbiter/timesheet/HEAD/res/drawable/widget_bg_normal.9.png -------------------------------------------------------------------------------- /res/layout/app_widget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orbiter/timesheet/HEAD/res/layout/app_widget.xml -------------------------------------------------------------------------------- /res/layout/entries.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orbiter/timesheet/HEAD/res/layout/entries.xml -------------------------------------------------------------------------------- /res/layout/export.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orbiter/timesheet/HEAD/res/layout/export.xml -------------------------------------------------------------------------------- /res/layout/header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orbiter/timesheet/HEAD/res/layout/header.xml -------------------------------------------------------------------------------- /res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orbiter/timesheet/HEAD/res/layout/main.xml -------------------------------------------------------------------------------- /res/layout/task_edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orbiter/timesheet/HEAD/res/layout/task_edit.xml -------------------------------------------------------------------------------- /res/layout/time_entry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orbiter/timesheet/HEAD/res/layout/time_entry.xml -------------------------------------------------------------------------------- /res/layout/time_entry_edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orbiter/timesheet/HEAD/res/layout/time_entry_edit.xml -------------------------------------------------------------------------------- /res/layout/week_entry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orbiter/timesheet/HEAD/res/layout/week_entry.xml -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orbiter/timesheet/HEAD/res/values/strings.xml -------------------------------------------------------------------------------- /res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orbiter/timesheet/HEAD/res/values/styles.xml -------------------------------------------------------------------------------- /res/xml/preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orbiter/timesheet/HEAD/res/xml/preferences.xml -------------------------------------------------------------------------------- /res/xml/timesheet_widget_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orbiter/timesheet/HEAD/res/xml/timesheet_widget_info.xml -------------------------------------------------------------------------------- /src/com/tastycactus/timesheet/ExportActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orbiter/timesheet/HEAD/src/com/tastycactus/timesheet/ExportActivity.java -------------------------------------------------------------------------------- /src/com/tastycactus/timesheet/MergeAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orbiter/timesheet/HEAD/src/com/tastycactus/timesheet/MergeAdapter.java -------------------------------------------------------------------------------- /src/com/tastycactus/timesheet/TaskEditActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orbiter/timesheet/HEAD/src/com/tastycactus/timesheet/TaskEditActivity.java -------------------------------------------------------------------------------- /src/com/tastycactus/timesheet/TimeEntriesActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orbiter/timesheet/HEAD/src/com/tastycactus/timesheet/TimeEntriesActivity.java -------------------------------------------------------------------------------- /src/com/tastycactus/timesheet/TimeEntryEditActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orbiter/timesheet/HEAD/src/com/tastycactus/timesheet/TimeEntryEditActivity.java -------------------------------------------------------------------------------- /src/com/tastycactus/timesheet/TimesheetActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orbiter/timesheet/HEAD/src/com/tastycactus/timesheet/TimesheetActivity.java -------------------------------------------------------------------------------- /src/com/tastycactus/timesheet/TimesheetAppWidgetProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orbiter/timesheet/HEAD/src/com/tastycactus/timesheet/TimesheetAppWidgetProvider.java -------------------------------------------------------------------------------- /src/com/tastycactus/timesheet/TimesheetDatabase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orbiter/timesheet/HEAD/src/com/tastycactus/timesheet/TimesheetDatabase.java -------------------------------------------------------------------------------- /src/com/tastycactus/timesheet/TimesheetPreferences.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orbiter/timesheet/HEAD/src/com/tastycactus/timesheet/TimesheetPreferences.java -------------------------------------------------------------------------------- /tests/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orbiter/timesheet/HEAD/tests/AndroidManifest.xml -------------------------------------------------------------------------------- /tests/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orbiter/timesheet/HEAD/tests/build.properties -------------------------------------------------------------------------------- /tests/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orbiter/timesheet/HEAD/tests/build.xml -------------------------------------------------------------------------------- /tests/default.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orbiter/timesheet/HEAD/tests/default.properties -------------------------------------------------------------------------------- /tests/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orbiter/timesheet/HEAD/tests/local.properties -------------------------------------------------------------------------------- /tests/src/com/aaronbrice/timesheet/TimesheetActivityTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orbiter/timesheet/HEAD/tests/src/com/aaronbrice/timesheet/TimesheetActivityTest.java --------------------------------------------------------------------------------