Activity log for bug #1197436

Date Who What changed Old value New value Message
2013-07-03 15:05:10 Steve Magoun bug added bug
2013-07-03 15:15:43 Nekhelesh Ramananthan ubuntu-clock-app: status New Triaged
2013-07-03 15:15:49 Nekhelesh Ramananthan ubuntu-clock-app: importance Undecided Medium
2013-07-03 15:15:51 Nekhelesh Ramananthan ubuntu-clock-app: milestone coreapps-13.10-month-3
2013-07-03 15:15:53 Nekhelesh Ramananthan ubuntu-clock-app: assignee Nekhelesh Ramananthan (nik90)
2013-07-04 18:19:19 Nekhelesh Ramananthan ubuntu-clock-app: status Triaged In Progress
2013-07-11 19:41:40 Nekhelesh Ramananthan tags hackday
2013-07-11 19:41:48 Nekhelesh Ramananthan ubuntu-clock-app: assignee Nekhelesh Ramananthan (nik90)
2013-07-11 19:41:50 Nekhelesh Ramananthan ubuntu-clock-app: status In Progress Triaged
2013-07-11 19:48:13 Nekhelesh Ramananthan description The "add city" feature in the clock does not differentiate between cities in different states. It is common for a US state to have city/town that shares the name of a city/town in another state. For example, there are at least a dozen states that have a city/town called 'Springfield'. In this situation the list of cities shows multiple identical entries; the user has to guess which one is appropriate To reproduce: 1) Launch clock app 2) Swipe up from bottom to reveal to "Add City" button 3) Tap "Add City" 4) In the search box, search for "Springfield" Expected results: Search results differentiate between different towns with the same name, e.g. "Springfield, Massachusetts, USA" and "Springfield, Missouri, USA" Actual results: Search results contain multiple "Springfield, USA" entries. I'm using the saucy-31 build on a Nexus 7 The "add city" feature in the clock does not differentiate between cities in different states. It is common for a US state to have city/town that shares the name of a city/town in another state. For example, there are at least a dozen states that have a city/town called 'Springfield'. In this situation the list of cities shows multiple identical entries; the user has to guess which one is appropriate To reproduce: 1) Launch clock app 2) Swipe up from bottom to reveal to "Add City" button 3) Tap "Add City" 4) In the search box, search for "Springfield" Expected results: Search results differentiate between different towns with the same name, e.g. "Springfield, Massachusetts, USA" and "Springfield, Missouri, USA" Actual results: Search results contain multiple "Springfield, USA" entries. I'm using the saucy-31 build on a Nexus 7 -----------------------------------------------------------------------------------------Solution to fix bug (HACKATHON) This bug is quite trivial to fix. The online API from which the data is gathered does actually provide the state info if the "style=full" parameter is added to the url. 1. In the WorldClock.qml, append "style=full" in the searchCityUrl() function. 2. Append the searchCityModel XmlListModel to get the info from the adminName1 xml element in the online API. 3. In the ListView which shows the results, add the state from the XmlListModel. The final search URL will be something like http://api.geonames.org/search?q=Springfield&style=full&maxRows=5&username=krnekhelesh Test your fix and propose merge!
2013-07-11 19:48:26 Nekhelesh Ramananthan description The "add city" feature in the clock does not differentiate between cities in different states. It is common for a US state to have city/town that shares the name of a city/town in another state. For example, there are at least a dozen states that have a city/town called 'Springfield'. In this situation the list of cities shows multiple identical entries; the user has to guess which one is appropriate To reproduce: 1) Launch clock app 2) Swipe up from bottom to reveal to "Add City" button 3) Tap "Add City" 4) In the search box, search for "Springfield" Expected results: Search results differentiate between different towns with the same name, e.g. "Springfield, Massachusetts, USA" and "Springfield, Missouri, USA" Actual results: Search results contain multiple "Springfield, USA" entries. I'm using the saucy-31 build on a Nexus 7 -----------------------------------------------------------------------------------------Solution to fix bug (HACKATHON) This bug is quite trivial to fix. The online API from which the data is gathered does actually provide the state info if the "style=full" parameter is added to the url. 1. In the WorldClock.qml, append "style=full" in the searchCityUrl() function. 2. Append the searchCityModel XmlListModel to get the info from the adminName1 xml element in the online API. 3. In the ListView which shows the results, add the state from the XmlListModel. The final search URL will be something like http://api.geonames.org/search?q=Springfield&style=full&maxRows=5&username=krnekhelesh Test your fix and propose merge! The "add city" feature in the clock does not differentiate between cities in different states. It is common for a US state to have city/town that shares the name of a city/town in another state. For example, there are at least a dozen states that have a city/town called 'Springfield'. In this situation the list of cities shows multiple identical entries; the user has to guess which one is appropriate To reproduce: 1) Launch clock app 2) Swipe up from bottom to reveal to "Add City" button 3) Tap "Add City" 4) In the search box, search for "Springfield" Expected results: Search results differentiate between different towns with the same name, e.g. "Springfield, Massachusetts, USA" and "Springfield, Missouri, USA" Actual results: Search results contain multiple "Springfield, USA" entries. I'm using the saucy-31 build on a Nexus 7 ------------------------------------------------------------------------------ Solution to fix bug (HACKATHON) This bug is quite trivial to fix. The online API from which the data is gathered does actually provide the state info if the "style=full" parameter is added to the url. 1. In the WorldClock.qml, append "style=full" in the searchCityUrl() function. 2. Append the searchCityModel XmlListModel to get the info from the adminName1 xml element in the online API. 3. In the ListView which shows the results, add the state from the XmlListModel. The final search URL will be something like http://api.geonames.org/search?q=Springfield&style=full&maxRows=5&username=krnekhelesh Test your fix and propose merge!
2013-07-11 19:48:41 Nekhelesh Ramananthan description The "add city" feature in the clock does not differentiate between cities in different states. It is common for a US state to have city/town that shares the name of a city/town in another state. For example, there are at least a dozen states that have a city/town called 'Springfield'. In this situation the list of cities shows multiple identical entries; the user has to guess which one is appropriate To reproduce: 1) Launch clock app 2) Swipe up from bottom to reveal to "Add City" button 3) Tap "Add City" 4) In the search box, search for "Springfield" Expected results: Search results differentiate between different towns with the same name, e.g. "Springfield, Massachusetts, USA" and "Springfield, Missouri, USA" Actual results: Search results contain multiple "Springfield, USA" entries. I'm using the saucy-31 build on a Nexus 7 ------------------------------------------------------------------------------ Solution to fix bug (HACKATHON) This bug is quite trivial to fix. The online API from which the data is gathered does actually provide the state info if the "style=full" parameter is added to the url. 1. In the WorldClock.qml, append "style=full" in the searchCityUrl() function. 2. Append the searchCityModel XmlListModel to get the info from the adminName1 xml element in the online API. 3. In the ListView which shows the results, add the state from the XmlListModel. The final search URL will be something like http://api.geonames.org/search?q=Springfield&style=full&maxRows=5&username=krnekhelesh Test your fix and propose merge! The "add city" feature in the clock does not differentiate between cities in different states. It is common for a US state to have city/town that shares the name of a city/town in another state. For example, there are at least a dozen states that have a city/town called 'Springfield'. In this situation the list of cities shows multiple identical entries; the user has to guess which one is appropriate To reproduce: 1) Launch clock app 2) Swipe up from bottom to reveal to "Add City" button 3) Tap "Add City" 4) In the search box, search for "Springfield" Expected results: Search results differentiate between different towns with the same name, e.g. "Springfield, Massachusetts, USA" and "Springfield, Missouri, USA" Actual results: Search results contain multiple "Springfield, USA" entries. I'm using the saucy-31 build on a Nexus 7 ----------------------------------------------------------------------------------- Solution to fix bug (HACKATHON) This bug is quite trivial to fix. The online API from which the data is gathered does actually provide the state info if the "style=full" parameter is added to the url. 1. In the WorldClock.qml, append "style=full" in the searchCityUrl() function. 2. Append the searchCityModel XmlListModel to get the info from the adminName1 xml element in the online API. 3. In the ListView which shows the results, add the state from the XmlListModel. The final search URL will be something like http://api.geonames.org/search?q=Springfield&style=full&maxRows=5&username=krnekhelesh Test your fix and propose merge!
2013-07-11 22:10:38 Nekhelesh Ramananthan description The "add city" feature in the clock does not differentiate between cities in different states. It is common for a US state to have city/town that shares the name of a city/town in another state. For example, there are at least a dozen states that have a city/town called 'Springfield'. In this situation the list of cities shows multiple identical entries; the user has to guess which one is appropriate To reproduce: 1) Launch clock app 2) Swipe up from bottom to reveal to "Add City" button 3) Tap "Add City" 4) In the search box, search for "Springfield" Expected results: Search results differentiate between different towns with the same name, e.g. "Springfield, Massachusetts, USA" and "Springfield, Missouri, USA" Actual results: Search results contain multiple "Springfield, USA" entries. I'm using the saucy-31 build on a Nexus 7 ----------------------------------------------------------------------------------- Solution to fix bug (HACKATHON) This bug is quite trivial to fix. The online API from which the data is gathered does actually provide the state info if the "style=full" parameter is added to the url. 1. In the WorldClock.qml, append "style=full" in the searchCityUrl() function. 2. Append the searchCityModel XmlListModel to get the info from the adminName1 xml element in the online API. 3. In the ListView which shows the results, add the state from the XmlListModel. The final search URL will be something like http://api.geonames.org/search?q=Springfield&style=full&maxRows=5&username=krnekhelesh Test your fix and propose merge! The "add city" feature in the clock does not differentiate between cities in different states. It is common for a US state to have city/town that shares the name of a city/town in another state. For example, there are at least a dozen states that have a city/town called 'Springfield'. In this situation the list of cities shows multiple identical entries; the user has to guess which one is appropriate To reproduce: 1) Launch clock app 2) Swipe up from bottom to reveal to "Add City" button 3) Tap "Add City" 4) In the search box, search for "Springfield" Expected results: Search results differentiate between different towns with the same name, e.g. "Springfield, Massachusetts, USA" and "Springfield, Missouri, USA" Actual results: Search results contain multiple "Springfield, USA" entries. I'm using the saucy-31 build on a Nexus 7 ----------------------------------------------------------------------------------- Solution to fix bug (HACKATHON) This bug is quite trivial to fix. The online API from which the data is gathered does actually provide the state info if the "style=full" parameter is added to the url. 1. In the WorldClock.qml, append "style=full" in the searchCityUrl() function. 2. Append the searchCityModel XmlListModel to get the info from the adminName1 xml element in the online API. 3. In the ListView which shows the results, add the state from the XmlListModel. The final search URL will be something like http://api.geonames.org/search?q=Springfield&style=full&maxRows=5&username=krnekhelesh Dificulty: Easy Test your fix and propose merge!
2013-07-12 10:56:37 Riccardo Padovani ubuntu-clock-app: assignee Riccardo Padovani (rpadovani)
2013-07-12 11:03:28 Riccardo Padovani ubuntu-clock-app: status Triaged In Progress
2013-07-12 11:03:52 Riccardo Padovani branch linked lp:~rpadovani/ubuntu-clock-app/1197436
2013-07-12 16:35:01 Ubuntu Phone Apps Jenkins Bot ubuntu-clock-app: status In Progress Fix Committed
2013-07-16 18:49:31 Nekhelesh Ramananthan ubuntu-clock-app: status Fix Committed Fix Released