├── .gitignore ├── AndroidManifest.xml ├── COPYING ├── README.md ├── Rakefile ├── default.properties ├── follow.sh ├── local.properties.example ├── res ├── drawable-hdpi │ └── ic_launcher.jpg ├── drawable-ldpi │ └── ic_launcher.jpg ├── drawable-mdpi │ └── ic_launcher.jpg ├── drawable │ └── notification.png ├── layout │ └── main.xml ├── menu │ └── menu.xml └── values │ └── strings.xml ├── server ├── Rakefile ├── WEB-INF │ ├── app.yaml │ └── web.xml ├── app │ ├── controllers │ │ ├── application_controller.mirah │ │ ├── follow_controller.mirah │ │ └── start_controller.mirah │ └── models │ │ ├── follow.mirah │ │ └── location.mirah ├── bin │ └── simulate-follower ├── config │ ├── application.properties │ ├── asset.properties │ ├── build.properties │ └── routes.properties └── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── i │ ├── adp2.png │ ├── install.png │ ├── nexus1.png │ ├── qrcode.png │ ├── sideways.jpg │ └── title.jpg │ ├── index.html │ ├── robots.txt │ └── style.css ├── src └── griva │ └── della │ └── ferrante │ ├── Follow.mirah │ ├── Locator.mirah │ ├── Navigator.mirah │ └── Start.mirah └── todo.org /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/ferrante/HEAD/.gitignore -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/ferrante/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/ferrante/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/ferrante/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/ferrante/HEAD/Rakefile -------------------------------------------------------------------------------- /default.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/ferrante/HEAD/default.properties -------------------------------------------------------------------------------- /follow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/ferrante/HEAD/follow.sh -------------------------------------------------------------------------------- /local.properties.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/ferrante/HEAD/local.properties.example -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/ferrante/HEAD/res/drawable-hdpi/ic_launcher.jpg -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_launcher.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/ferrante/HEAD/res/drawable-ldpi/ic_launcher.jpg -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/ferrante/HEAD/res/drawable-mdpi/ic_launcher.jpg -------------------------------------------------------------------------------- /res/drawable/notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/ferrante/HEAD/res/drawable/notification.png -------------------------------------------------------------------------------- /res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/ferrante/HEAD/res/layout/main.xml -------------------------------------------------------------------------------- /res/menu/menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/ferrante/HEAD/res/menu/menu.xml -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/ferrante/HEAD/res/values/strings.xml -------------------------------------------------------------------------------- /server/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/ferrante/HEAD/server/Rakefile -------------------------------------------------------------------------------- /server/WEB-INF/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/ferrante/HEAD/server/WEB-INF/app.yaml -------------------------------------------------------------------------------- /server/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/ferrante/HEAD/server/WEB-INF/web.xml -------------------------------------------------------------------------------- /server/app/controllers/application_controller.mirah: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/ferrante/HEAD/server/app/controllers/application_controller.mirah -------------------------------------------------------------------------------- /server/app/controllers/follow_controller.mirah: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/ferrante/HEAD/server/app/controllers/follow_controller.mirah -------------------------------------------------------------------------------- /server/app/controllers/start_controller.mirah: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/ferrante/HEAD/server/app/controllers/start_controller.mirah -------------------------------------------------------------------------------- /server/app/models/follow.mirah: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/ferrante/HEAD/server/app/models/follow.mirah -------------------------------------------------------------------------------- /server/app/models/location.mirah: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/ferrante/HEAD/server/app/models/location.mirah -------------------------------------------------------------------------------- /server/bin/simulate-follower: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/ferrante/HEAD/server/bin/simulate-follower -------------------------------------------------------------------------------- /server/config/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/ferrante/HEAD/server/config/application.properties -------------------------------------------------------------------------------- /server/config/asset.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/config/build.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/config/routes.properties: -------------------------------------------------------------------------------- 1 | # put custom routes here -------------------------------------------------------------------------------- /server/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/ferrante/HEAD/server/public/404.html -------------------------------------------------------------------------------- /server/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/ferrante/HEAD/server/public/422.html -------------------------------------------------------------------------------- /server/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/ferrante/HEAD/server/public/500.html -------------------------------------------------------------------------------- /server/public/i/adp2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/ferrante/HEAD/server/public/i/adp2.png -------------------------------------------------------------------------------- /server/public/i/install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/ferrante/HEAD/server/public/i/install.png -------------------------------------------------------------------------------- /server/public/i/nexus1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/ferrante/HEAD/server/public/i/nexus1.png -------------------------------------------------------------------------------- /server/public/i/qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/ferrante/HEAD/server/public/i/qrcode.png -------------------------------------------------------------------------------- /server/public/i/sideways.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/ferrante/HEAD/server/public/i/sideways.jpg -------------------------------------------------------------------------------- /server/public/i/title.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/ferrante/HEAD/server/public/i/title.jpg -------------------------------------------------------------------------------- /server/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/ferrante/HEAD/server/public/index.html -------------------------------------------------------------------------------- /server/public/robots.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/public/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/ferrante/HEAD/server/public/style.css -------------------------------------------------------------------------------- /src/griva/della/ferrante/Follow.mirah: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/ferrante/HEAD/src/griva/della/ferrante/Follow.mirah -------------------------------------------------------------------------------- /src/griva/della/ferrante/Locator.mirah: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/ferrante/HEAD/src/griva/della/ferrante/Locator.mirah -------------------------------------------------------------------------------- /src/griva/della/ferrante/Navigator.mirah: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/ferrante/HEAD/src/griva/della/ferrante/Navigator.mirah -------------------------------------------------------------------------------- /src/griva/della/ferrante/Start.mirah: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/ferrante/HEAD/src/griva/della/ferrante/Start.mirah -------------------------------------------------------------------------------- /todo.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/ferrante/HEAD/todo.org --------------------------------------------------------------------------------