{"id":23553090,"url":"https://github.com/rhildred/droidfoot2studentproject","last_synced_at":"2025-05-15T17:30:31.158Z","repository":{"id":146396821,"uuid":"52028459","full_name":"rhildred/Droidfoot2StudentProject","owner":"rhildred","description":"Working prototype","archived":false,"fork":false,"pushed_at":"2016-02-24T17:27:18.000Z","size":6367,"stargazers_count":0,"open_issues_count":0,"forks_count":4,"subscribers_count":3,"default_branch":"gh-pages","last_synced_at":"2024-12-26T11:14:31.197Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"CSS","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rhildred.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-02-18T18:21:48.000Z","updated_at":"2016-02-24T16:37:15.000Z","dependencies_parsed_at":"2023-05-09T10:31:50.716Z","dependency_job_id":null,"html_url":"https://github.com/rhildred/Droidfoot2StudentProject","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rhildred%2FDroidfoot2StudentProject","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rhildred%2FDroidfoot2StudentProject/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rhildred%2FDroidfoot2StudentProject/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rhildred%2FDroidfoot2StudentProject/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rhildred","download_url":"https://codeload.github.com/rhildred/Droidfoot2StudentProject/tar.gz/refs/heads/gh-pages","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239293947,"owners_count":19615041,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-12-26T11:14:00.966Z","updated_at":"2025-02-17T12:42:03.159Z","avatar_url":"https://github.com/rhildred.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# [Droidfoot 2 Student Project](https://github.com/rhildred/Droidfoot2StudentProject)\n\nThis was a Partially Working Prototype from an INFO3130 student project at Conestoga.\tI am using it as an example, because I thought that the students came up with a simple/elegant solution that I preferred to the [nativedroid2 demo on github](http://nd2.godesign.ch/). The Prototype contains list and categories of restaurants with full description of menu, prices, operating times and locations.\n\nThe students that worked on this project were:\n\nAnton Nepsha, Thomas Tran, Ahmad Hussain, and Nick Galatsis.\n\nStarting out with the overall design of the code for the site, the students used typical jQuery mobile `data-role=` type markup.\n\n```\n\n\u003cdiv data-role=\"page\" class=\"nd2-no-menu-swipe\"\u003e\n\n\t\u003cnd2-include data-src=\"examples/fragments/panel.left.html\"\u003e\u003c/nd2-include\u003e\n\n\n\t\u003cdiv data-role=\"header\" data-position=\"fixed\" class=\"wow fadeIn\"\u003e\n\t\t\u003ca href=\"#leftpanel\" class=\"ui-btn ui-btn-left\"\u003e\u003ci class=\"zmdi zmdi-menu\"\u003e\u003c/i\u003e\u003c/a\u003e\n\t\t\u003ch1 class=\"wow fadeIn\" data-wow-delay='0.4s'\u003eRestaurants\u003c/h1\u003e\n\n\t\t\u003cul data-role=\"nd2tabs\" data-swipe=\"true\"\u003e\n\t\t\t\u003cli data-tab=\"work\" data-tab-active=\"true\"\u003eAll Restaurants\u003c/li\u003e\n\t\t\t\u003cli data-tab=\"colors\"\u003eCategories\u003c/li\u003e\n\t\t\t\u003c!--\u003cli data-tab=\"colors\"\u003eDesserts\u003c/li\u003e--\u003e\n\t\t\u003c/ul\u003e\n\n\t\u003c/div\u003e\n\n\t\u003cdiv role=\"main\" class=\"ui-content wow fadeIn\" data-inset=\"false\" data-wow-delay=\"0.2s\"\u003e\n\n\t\t\u003cdiv data-role=\"nd2tab\"\n       data-tab=\"friends\"\u003e\n\n\n\n```\n\nTo make the app have a name and version, the following config.xml is used.\n\n```\n\n\u003c?xml version=\"1.0\" encoding=\"UTF-8\" ?\u003e\n\u003cwidget xmlns=\"http://www.w3.org/ns/widgets\" xmlns:gap=\"http://phonegap.com/ns/1.0\" id=\"io.github.rhildred.studentprototype\" version=\"0.0.1\"\u003e\n\n    \u003cname\u003eStudent Prototype\u003c/name\u003e\n\n    \u003cdescription\u003e\n        Prototyping example from Conestoga College INFO3130 class\n    \u003c/description\u003e\n    \u003ccontent src=\"index.html\" /\u003e\n    \u003cauthor href=\"https://anepsha.github.io\"\u003e\n        Anton Nepsha, Thomas Tran, Ahmad Hussain, and Nick Galatsis\n    \u003c/author\u003e\n    \u003caccess origin=\"*\" /\u003e\n\u003c/widget\u003e\n\n```\n\nTo add an android like toast that shows up when the `deviceready` message comes one could do something like this:\n\n```\n\n\u003cscript src=\"cordova.js\"\u003e\u003c/script\u003e\n\u003cscript\u003e\n\nvar phonegapReady = function(){\n    new jQuery.nd2Toast({\n        message:\"in phonegap\",\n        ttl: 5000\n    });\n}\n\ndocument.addEventListener(\"deviceready\", phonegapReady, false);\n\n\u003c/script\u003e\n\n```\n\nAs I mentioned when I started out, I like this better than the  [nativedroid2 demo on github](http://nd2.godesign.ch/). It seems more in the jQuery mobile SPA style.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frhildred%2Fdroidfoot2studentproject","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frhildred%2Fdroidfoot2studentproject","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frhildred%2Fdroidfoot2studentproject/lists"}