blob: e5b09ad7c65ba754add90d37cbd23df61ea325d8 [file] [log] [blame]
<?xml version='1.0'?>
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<module><inherits name="com.google.gwt.user.User" />
<!-- This file is embedded into a gwt_module.
To use it, add a "deps" on
//third_party/java_src/wave/java/org/waveprotocol/wave/client/common/util:useragents
Note that we don't like opera, ie6 and ff2, but we don't restrict the user
agent here, this will have to be done in the actually application. Compilation
will likely fail altogether if one fail to do that (or setup a specific code path
for those unsupported UAs that does not use our code) because of missing deferred
binding rules.
Notes about GWT's user.agent values:
- ie6 is "ie6 or ie7" (or any upper IE version when running in compat' mode)
- gecko1_8 is "gecko 1.8+", which includes all firefox versions starting with 1.5
- safari is any webkit-based browser (including chrome and android)
-->
<!-- Copied from
http://code.google.com/p/google-web-toolkit/wiki/ConditionalProperties
-->
<define-property name="mobile.user.agent" values="android, iphone, not_mobile" />
<property-provider name="mobile.user.agent"><![CDATA[
{
var ua = window.navigator.userAgent.toLowerCase();
if (ua.indexOf('android') != -1) { return 'android'; }
if (ua.indexOf('iphone') != -1 || ua.indexOf('ipod') != -1) { return 'iphone'; }
return 'not_mobile';
}
]]></property-provider>
<!-- Constrain the value for non-webkit browsers -->
<set-property name="mobile.user.agent" value="not_mobile" >
<none> <!-- Actually means NOR, in this case "not safari" -->
<when-property-is name="user.agent" value="safari" />
</none>
</set-property>
</module>