Vitaly Dyachkov
Vitaly Dyachkov
> Please, mention the commit message what this is fixing. I think it's an assert in a particular test, right? Does it happen in any platform? because the change is...
I found out that there is a platform-specific hook for this purpose in AccessibilityObject. Made this PR AT-SPI specific and reused the solution from mac.
In YahooRetriver.java replace ```java String url = "http://weather.yahooapis.com/forecastrss?p=" + zipcode; ``` with ```java String url = "https://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20weather.forecast%20where%20woeid%20in%20(select%20woeid%20from%20geo.places%20where%20placetype%3D%27Zip%27%20AND%20text%3D%27" + zipcode + "%27%20)"; ``` Also in YahooParser in every doc.ValueOf() method replace...
@Trzaska Sorry, I'm to lazy to create pull request :) Here is full text of my ```WeatherRetriever.java```: ```java package com.obyknovenius.mavenbook.weather; import org.apache.log4j.Logger; import java.io.InputStream; import java.net.URL; import java.net.URLConnection; public class...
@Trzaska You can also replace this ugly line ```java String url = "https://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20weather.forecast%20where%20woeid%20in%20(select%20woeid%20from%20geo.places%20where%20placetype%3D%27Zip%27%20AND%20text%3D%27" + zipcode + "%27%20)"; ``` with this ```java String query = "select * from weather.forecast where woeid...