GWT 和 PS3 浏览器 (Netfront)
有人在 PlayStation 3 (Netfront) 浏览器中加载 GWT 编译的应用程序吗?我曾尝试仅编译IE6排列,但PS3没有接受它。我认为本质上问题是如何将新的 user.agent 添加到 GWT 并将其映射到现有的 IE 配置。
Is anyone achieved loading GWT compiled app in PlayStation 3 (Netfront) browser? I have tried to compile IE6 only permutation, but PS3 did not pick it up. I think essentially the question is how to add new user.agent to GWT and map it to the existing IE configuration.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以修改 UserAgent.gwt.xml ( http://code.google.com/p/google-web-toolkit/source/browse/trunk/user/src/com/google/gwt/user/UserAgent。 gwt.xml )并使用条件属性 (http:// code.google.com/p/google-web-toolkit/wiki/ConditionalProperties )
com.google.gwt.user.rebind.UserAgentPropertyGenerator 中的相关代码
(
http://code.google.com/p/google-web-toolkit/source/browse/trunk/user/src/com/google/gwt/user/rebind/UserAgentPropertyGenerator.java)< br>
您可以编辑此内容以使 PS3 用户代理返回“ie6”,但我不建议这样做。
You can modify UserAgent.gwt.xml ( http://code.google.com/p/google-web-toolkit/source/browse/trunk/user/src/com/google/gwt/user/UserAgent.gwt.xml ) and use Conditional Properties ( http://code.google.com/p/google-web-toolkit/wiki/ConditionalProperties )
Relevant code in com.google.gwt.user.rebind.UserAgentPropertyGenerator
(
http://code.google.com/p/google-web-toolkit/source/browse/trunk/user/src/com/google/gwt/user/rebind/UserAgentPropertyGenerator.java )
You can edit this to have PS3 user agent return 'ie6', but I don't recommend this.