From 3f28bab60e4c1abd91438d3a6e259446e8a67aea Mon Sep 17 00:00:00 2001 From: kenstir Date: Sat, 21 Nov 2015 18:49:55 -0500 Subject: [PATCH] Adding Hemlock app. --- Open-ILS/src/Android/eg_app/res/values/ou.xml | 2 +- Open-ILS/src/Android/hemlock_app/.idea/.name | 1 + .../src/Android/hemlock_app/.idea/compiler.xml | 36 ++++++ .../.idea/copyright/profiles_settings.xml | 3 + .../src/Android/hemlock_app/.idea/encodings.xml | 6 + .../Android/hemlock_app/.idea/libraries/libs.xml | 11 ++ Open-ILS/src/Android/hemlock_app/.idea/misc.xml | 33 +++++ Open-ILS/src/Android/hemlock_app/.idea/modules.xml | 10 ++ .../hemlock_app/.idea/scopes/scope_settings.xml | 5 + Open-ILS/src/Android/hemlock_app/.idea/vcs.xml | 6 + .../src/Android/hemlock_app/AndroidManifest.xml | 137 +++++++++++++++++++++ Open-ILS/src/Android/hemlock_app/hemlock_app.iml | 20 +++ Open-ILS/src/Android/hemlock_app/res/values/ou.xml | 13 ++ 13 files changed, 282 insertions(+), 1 deletion(-) create mode 100644 Open-ILS/src/Android/hemlock_app/.idea/.name create mode 100644 Open-ILS/src/Android/hemlock_app/.idea/compiler.xml create mode 100644 Open-ILS/src/Android/hemlock_app/.idea/copyright/profiles_settings.xml create mode 100644 Open-ILS/src/Android/hemlock_app/.idea/encodings.xml create mode 100644 Open-ILS/src/Android/hemlock_app/.idea/libraries/libs.xml create mode 100644 Open-ILS/src/Android/hemlock_app/.idea/misc.xml create mode 100644 Open-ILS/src/Android/hemlock_app/.idea/modules.xml create mode 100644 Open-ILS/src/Android/hemlock_app/.idea/scopes/scope_settings.xml create mode 100644 Open-ILS/src/Android/hemlock_app/.idea/vcs.xml create mode 100644 Open-ILS/src/Android/hemlock_app/AndroidManifest.xml create mode 100644 Open-ILS/src/Android/hemlock_app/hemlock_app.iml create mode 100644 Open-ILS/src/Android/hemlock_app/res/values/ou.xml diff --git a/Open-ILS/src/Android/eg_app/res/values/ou.xml b/Open-ILS/src/Android/eg_app/res/values/ou.xml index 6ee097d8cf..7547640ce3 100644 --- a/Open-ILS/src/Android/eg_app/res/values/ou.xml +++ b/Open-ILS/src/Android/eg_app/res/values/ou.xml @@ -3,7 +3,7 @@ Evergreen - Sign in to your library account + Sign in to your\nEvergreen library account Location: Login: org.evergreen-ils.eg_app diff --git a/Open-ILS/src/Android/hemlock_app/.idea/.name b/Open-ILS/src/Android/hemlock_app/.idea/.name new file mode 100644 index 0000000000..d855b84a72 --- /dev/null +++ b/Open-ILS/src/Android/hemlock_app/.idea/.name @@ -0,0 +1 @@ +hemlock_app \ No newline at end of file diff --git a/Open-ILS/src/Android/hemlock_app/.idea/compiler.xml b/Open-ILS/src/Android/hemlock_app/.idea/compiler.xml new file mode 100644 index 0000000000..357fde0a32 --- /dev/null +++ b/Open-ILS/src/Android/hemlock_app/.idea/compiler.xml @@ -0,0 +1,36 @@ + + + + + \ No newline at end of file diff --git a/Open-ILS/src/Android/hemlock_app/.idea/copyright/profiles_settings.xml b/Open-ILS/src/Android/hemlock_app/.idea/copyright/profiles_settings.xml new file mode 100644 index 0000000000..e7bedf3377 --- /dev/null +++ b/Open-ILS/src/Android/hemlock_app/.idea/copyright/profiles_settings.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/Open-ILS/src/Android/hemlock_app/.idea/encodings.xml b/Open-ILS/src/Android/hemlock_app/.idea/encodings.xml new file mode 100644 index 0000000000..f758959656 --- /dev/null +++ b/Open-ILS/src/Android/hemlock_app/.idea/encodings.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Open-ILS/src/Android/hemlock_app/.idea/libraries/libs.xml b/Open-ILS/src/Android/hemlock_app/.idea/libraries/libs.xml new file mode 100644 index 0000000000..2c6670d38c --- /dev/null +++ b/Open-ILS/src/Android/hemlock_app/.idea/libraries/libs.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/Open-ILS/src/Android/hemlock_app/.idea/misc.xml b/Open-ILS/src/Android/hemlock_app/.idea/misc.xml new file mode 100644 index 0000000000..4fa8d4563b --- /dev/null +++ b/Open-ILS/src/Android/hemlock_app/.idea/misc.xml @@ -0,0 +1,33 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/Open-ILS/src/Android/hemlock_app/.idea/modules.xml b/Open-ILS/src/Android/hemlock_app/.idea/modules.xml new file mode 100644 index 0000000000..b57c72c9e4 --- /dev/null +++ b/Open-ILS/src/Android/hemlock_app/.idea/modules.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/Open-ILS/src/Android/hemlock_app/.idea/scopes/scope_settings.xml b/Open-ILS/src/Android/hemlock_app/.idea/scopes/scope_settings.xml new file mode 100644 index 0000000000..922003b843 --- /dev/null +++ b/Open-ILS/src/Android/hemlock_app/.idea/scopes/scope_settings.xml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/Open-ILS/src/Android/hemlock_app/.idea/vcs.xml b/Open-ILS/src/Android/hemlock_app/.idea/vcs.xml new file mode 100644 index 0000000000..4fce1d86b4 --- /dev/null +++ b/Open-ILS/src/Android/hemlock_app/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Open-ILS/src/Android/hemlock_app/AndroidManifest.xml b/Open-ILS/src/Android/hemlock_app/AndroidManifest.xml new file mode 100644 index 0000000000..348b1120ca --- /dev/null +++ b/Open-ILS/src/Android/hemlock_app/AndroidManifest.xml @@ -0,0 +1,137 @@ + + + + + + + + + + + + " + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Open-ILS/src/Android/hemlock_app/hemlock_app.iml b/Open-ILS/src/Android/hemlock_app/hemlock_app.iml new file mode 100644 index 0000000000..baccb65b0a --- /dev/null +++ b/Open-ILS/src/Android/hemlock_app/hemlock_app.iml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Open-ILS/src/Android/hemlock_app/res/values/ou.xml b/Open-ILS/src/Android/hemlock_app/res/values/ou.xml new file mode 100644 index 0000000000..8d2a650725 --- /dev/null +++ b/Open-ILS/src/Android/hemlock_app/res/values/ou.xml @@ -0,0 +1,13 @@ + + + + + Hemlock + Sign in to your\nEvergreen library account + Location: + Login: + net.kenstir.apps.hemlock + Hemlock + + + -- 2.11.0