Release Notice Release Notice

Total Page:16

File Type:pdf, Size:1020Kb

Release Notice Release Notice WOPE 6.0.30 Release Notice Release Notice WOPE 6.0.30 Release Notice Copyright Backelite 2012 1. Introduction 1 2. Delivery description 3 3. New features and improvements 5 4. Upgrading guide from WOPE 5.x 7 5. History 13 iii iv Chapter 1. Introduction We are happy to announce the release of the HTML5-based framework WOPE 6.0.30. Read the release notes below to find out about all enhancements. 1 2 Chapter 2. Delivery description This delivery includes: • This document Release_Notice-6.0.30-en-US.pdf • The complete WOPE Web application wope-6.0.30.war • A Java based sample HTML5 application wope-demo-6.0.30.war • Resources used to customize UI widgets ResourcesClient-6.0.30.zip • Examples of customizable error pages wope-errors-6.0.30.zip • The english version of the Developer Handbook Developer_Handbook-6.0.30-en-US.pdf • The english version of the Operating Handbook Operating_Handbook-6.0.30-en-US.pdf • The Javascript framework class index jsdoc.zip 3 4 Chapter 3. New features and improvements 3.1. All HTML5 markup is now accepted by default WOPE will no longer rewrite some HTML5 tags into HTML4 equivalences. This also means that WOPE can now be installed in front of an already existing web site without markup modifications. Please note that invalid markup (example: unclosed <div> tags) will now be automatically repaired, ex- cept self-closing <script> tags (see Chapter 4, Upgrading guide from WOPE 5.x below for them) 3.2. Integration of a custom responsive grid system from Bootstrap framework WOPE now includes a custom responsive grid from Bootstrap to ease layout building on mobiles, ph- ablets, tablets and desktops. It replaces the previous grid system : please refer to the migration guide Chapter 4, Upgrading guide from WOPE 5.x below for more information. 3.3. AJAX navigation using an animated loader has been disabled on desktop browsers Because desktop browsers have a wider screen than mobile devices, the default animated-loader based AJAX navigation has been disabled on desktop browsers. 3.4. New Google Maps widget A Google Maps widget has been added. It will output either JavaScript based maps on smartphones or static maps on feature phones. 3.5. New scrollable Off-canvas menu widget The new <nav data-bk-role="off-canvas"> element now has independent scroll when using the data-bk-scrollable attribute. 3.6. Huge performance improvements when delivering bk.js and bk.css resources These two WOPE resources are now packaged at build time instead of generated at runtime. This had led to a big performance leap in resource delivery time, improved up to 1000%. 3.7. Improved image resizing mechanisms JPEG and WEBP compression has been improved, leading up to 50% image weight loss on high den- sity screen devices. Images with absolute source URLs can now be resized whenever their URL matches either the ad- dress bar in the browser (this is the default setting) or the address of the target.host INI configuration property. 5 Chapter 3. New features and improvements To resize absolute source URLs based on the address of the target.host INI configuration property, use the following configuration option : target.resizeAbsoluteImgUrlsGiven=targetHost 3.8. Added the ability to disable client-side Framework component The Framework component (UI widgets and animations) can now be disabled. This can be useful when you only want to use WOPE Accelerator features (images resizing, compression and minification of resources and ability to filter HTML5 content per device capabilities). To disable the Framework component, use the following .INI configuration property : target.frameworkEnabled=false 6 Chapter 4. Upgrading guide from WOPE 5.x 4.1. HTML5 changes 4.1.1. The Do-It-Yourself (DIY) mode has been removed Since all HTML5 elements are now allowed, the DIY templates are no longer necessary. If you need to serve a different content given device capabilities, either use extended media queries or device capabilities in HTTP request headers : see "Extended media queries" and "Using device capa- bilities" in the WOPE Developer Handbook. 4.1.2. A self-closing <script/> tag is now invalid, it will break the DOM tree, just like under a standard browser. You MUST properly close your <script> tags using <script></script> 4.1.3. The <aside> UI widget has been renamed to <nav data-bk- role="off-canvas">. Do a search and replace within your code if you were using the previous widget name. For semantic reasons, the aside element is now referred as an off-canvas navigation element. You MUST do a search of all "bk-aside-" occurrences in your CSS/JS files and replace it with "bk-off- canvas-". You MUST do a search of all "asidewrapper" occurrences in your CSS/JS files and replace it with "off- canvas-wrapper". 4.1.4. <section>, <header> and <footer> tags are not rewritten as <div> tags anymore WOPE version 5.x was rewriting header and footer tags as div elements. This is no more needed as the smartphone base has evolved and more browsers are supporting these HTML5 tags. Note that the id attributes haven't been changed, which means you are still able to grab the header with a Bk("#bk- header") CSS selector for example. 4.1.5. <script> elements are not injected into <head> anymore They will now stay where you placed them in the original markup. 4.2. CSS and layout changes 4.2.1. Responsive grid layout system has been upgraded to the Bootstrap 3 grid system Read the full grid system documentation available here1 1 http://getbootstrap.com/css/#grid 7 Chapter 4. Upgrading guide from WOPE 5.x The data-bk-responsive-breakpoint attribute has been removed, because the Bootstrap grid replaces it. If you were using the data-bk-responsive-breakpoint attribute, you must change your markup by using the new Bootstrap responsive classes: col-xs-1 … col-xs-12, col-sm-1 … col- sm-12, col-md-1 … col-md-12, col-lg-1 … col-lg-12 as well as the ".row" and the ".container" classes. 4.2.2. No automatic loading of the wope.css resource The wope.css style sheet has been merged with the default WOPE style sheet (/widgets/bk.css) If you have previously edited the wope.css stylesheet, it will not be automatically loaded anymore. You MUST manually load this resource by adding the reference below in the head of your pages : <link rel="stylesheet" href="/css/wope.css" /> 4.2.3. @bk-media and data-bk-media syntax is now following CSS Media Queries standard syntax You MUST now use the standard CSS syntax for logical ORs, ANDs or negations Example 4.1. This old syntax is no more valid: (mobile_browser: WebKit/iPhone) or (mobile_browser: WebKit/Android) Example 4.2. Instead, it should now be: (mobile_browser: WebKit/iPhone), (mobile_browser: WebKit/Android) Example 4.3. This old syntax is no more valid: (mobile_browser: WebKit/iPhone, WebKit/Android, WebKit/webOS) Example 4.4. Instead, it should now be: (mobile_browser: WebKit/iPhone), (mobile_browser: WebKit/Android), (mobile_browser: We\ bKit/webOS) Example 4.5. For a negation, this old syntax is no more valid: (mobile_browser: not WebKit/iPhone) Example 4.6. Instead, it should now be: not (mobile_browser: WebKit/iPhone) 4.2.4. Two columns layout The Two columns layout styles have been removed from the default WOPE style sheet (/wid- gets/bk.css) 8 Two columns layout When updating from previous WOPE major releases you can use the following markup and css to ren- der a two columns layout: Example 4.7. Two columns layout markup <form action="form.jsp" method="get" class="bk-two-columns"> <div class="bk-fieldset"> <label for="inputo1" class="bk-cell">Text:</label> <span class="bk-cell"> <input id="inputo1" type="text" name="text" class="bk-fill-parent"/> <input type="hidden" name="hidden_field" value="toto"/> </span> </div> <div class="bk-fieldset> <label class="bk-cell">Number:</label> <span class="bk-cell"> <input type="number" name="number" class="bk-fill-parent"/> </span> </div> <div class="bk-fieldset> <label class="bk-cell">Small input</label> <span class="bk-cell"> <input type="number" name="num01" maxlength="2" size="3"/> </span> </div> <div class="bk-fieldset> <label class="bk-cell">Date:</label> <span class="bk-cell"> <input type="date" data-bk-datepicker="date" name="date" class="bk-fill-par\ ent" data-bk-title="Calendrier"/> </span> </div> <div class="bk-fieldset> <label class="bk-cell">Checkbox:</label> <span class="bk-cell"> <input type="checkbox" id="checkbox3" name="checkbox1" value="value1" /> <label for="checkbox3">Checkbox 1</label> <br/> <input type="checkbox" id="checkbox4" name="checkbox2" value="value2" checked="checked"/> <label for="checkbox4">Checkbox 2</label> </span> </div> <div class="bk-fieldset> <label class="bk-cell">Radio:</label> <span class="bk-cell"> <input type="radio" id="radio3" name="choice" value="value1" /> <label for="radio3">Radio 1</label> <br/> <input type="radio" id="radio4" name="choice" value="value2" checked="checked"/> <label for="radio4"><span>Radio 2</span></label> </span> </div> <div class="bk-fieldset> <label class="bk-cell">Select:</label> <span class="bk-cell"> <select name="select" class="bk-fill-parent"> <option value="option1">Option 1</option> <option value="option1">Option 2</option> </select> </span> </div> <div class="bk-fieldset> <label class="bk-cell" for="placeholder" data-bk-role="placeholder">I am a forced placeholder<br/></label> 9 Chapter 4. Upgrading guide from WOPE 5.x <span class="bk-cell"> <input id="placeholder" type="text" name="text" class="bk-fill-parent"/> </span> </div> <div class="bk-fieldset> <label class="bk-cell">Textarea:</label> <span class="bk-cell"> <textarea name="textarea" class="bk-fill-parent" disabled="disabled">A textarea</textarea> </span> </div> <div class="bk-fieldset style="text-align: right;"> <label class="bk-cell"> Submit: </label> <span class="bk-cell"> <input type="submit" name="Valider" value="valider"/> </span> </div> </form> Example 4.8.
Recommended publications
  • How to Transfer Itunes Media Files to Nokia Lumia 730/735/830
    How to Transfer iTunes Media Files to Nokia Lumia 730/735/830 Nokia Flagship Lumia 830, Dual-SIM Lumia 730, and 4G Lumia 735 At IFA 2014, Nokia has unveiled the new Windows Phone 8.1 models including Lumia 830, Lumia 730 and Lumia 735 to the world. Featured with a 10- megapixel PureView camera and 8.5mm thickness, Nokia Lumia 830 is announced as an "affordable flagship" as well as the thinnest and lightest Lumia phone yet. And for Lumia 730 series of phones, the magnanimous focus is the ubiquitous "selfies" with a 5MP wide-angle front camera and a 6.7MP rear camera along with the unique Selfie app pre-installed on the devices. The difference between Nokia Lumia 730 and Lumia 735 is that the former is a dual- SIM variant and supports 3G, while the latter comes with 4G LTE support. For people who like to take selfies, the Lumia 730 and 735 would be nice choices. According to the official announcement, all these three new Lumia models will be on sale in September 2014. View Model Comparison of Nokia Lumia 730, Lumia 735, and Lumia 830 Transfer Media Files from iTunes to Nokia Lumia 730/735/830 So you must be too eager to wait for those camera phones, right? But if you are a movie lover who has tons of movies, TV shows and other media files purchased from iTunes and would like to watch those iTunes movies on Nokia Lumia 730, Lumia 735 or Lumia 830, you'd better take a look at the following story before rush to buy the phone.
    [Show full text]
  • Nokia Lumia 930 RM-1045 Send Feedback
    Service Manual for L1 and L2 Nokia Lumia 930 RM-1045 Send feedback Recommend Change in Key features KICS Rate this page in KICS 2.2 GHz Quad core processor E-mail 5" Full-HD OLED Display [email protected] 32 GB Internal memory 20 MP Nokia PureView camera Integrated wireless charging Version 1.0 Exploded view Disassembly steps CHECK THE REPAIR POLICY BEFORE PERFORMING ANY MECHANICAL REPAIR ON SERVICE LEVEL 1&2! More More Assembly hints Solder components Service devices More More More Product controls and interfaces Service concept Phone reset More More More ©2014 Microsoft | Microsoft Internal Use only | All Rights Reserved. Service Manual Level 1 and 2 Nokia Lumia 930 Version history RM-1045 Version 1.0 Version Date Description 1.0 29.05.2014 First published version ©2014 Microsoft | Microsoft Internal Use only | All Rights Reserved. Service Manual Level 1 and 2 Nokia Lumia 930 Exploded view RM-1045 Version 1.0 CAMERA KEY CARE UI ASSEMBLY I0007 (I0002 - I0016) MAIN ANTENNA LTE 1 COAX FLEX I0005 DISPLAY WINDOW LOCK KEY I0002 I0008 DISPLAY VOLUME KEY I0003 I0009 MAIN ANTENNA VOICE COAX FLEX I0006 CHASSIS I0004 BATTERY ADHESIVE I0010 SMALL BATTERY ADHESIVE I0011 PRIMARY MIC FLEX DAUGHTER PWB GASKET ADHESIVE I0016 I0014 PRIMARY MIC GASKET EARPIECE GASKET I0013 I0015 PRIMARY MIC FLEX I0012 HSJ ASSEMBLY I0036 HSJ GASKET I0037 VIBRA ASSEMBLY VIBRA FLEX ADHESIVE I0019 I0020 VIBRA BOOT I0021 SIM TRAY I0001 SKYPE CAMERA WINDOW GASKET I0018 CAMERA SKYPE CAMERA ASSEMBLY I0023 I0017 EARPIECE MIMO COAX FLEX I0022 I0028 JUMPER FLEX ADHESIVE I0027 MIMO COAX FLEX ADHESIVE I0029 JUMPER FLEX I0026 TYPE LABEL I0040 LABEL TRAY I0024 BATTERY WATER INGRESS LABEL I0032 I0025 DAUGHTER PWB I0035 LIGHT SWAP PACKAGE 2 (I0038 - I0040) LIGHT SWAP PWB I0038 HEAT SPREADER I0039 LTE ADHESIVE I0031 LTE RF COAX CABLE I0030 BATTERY CONNECTOR STRAP I0033 1/2 Only available Not reuseable Repair/swap as assembly after removal only in level 3 ©2014 Microsoft | Microsoft Internal Use only | All Rights Reserved.
    [Show full text]
  • Nokia Lumia 830 User Guide
    User Guide Nokia Lumia 830 Issue 1.0 EN-US User Guide Nokia Lumia 830 Contents For your safety 4 Store 53 Get started 5 People & messaging 56 Keys and parts 5 Calls 56 Insert the SIM and memory card 5 Contacts 61 Remove the SIM and memory card 8 Social networks 65 Switch the phone on 10 Messages 66 Lock the keys and screen 11 Mail 70 Charge your phone 13 Camera 75 Connect the headset 14 Get to know Lumia Camera 75 Antenna locations 15 Change the default camera 75 Your first Lumia? 16 Camera basics 75 Set up your phone 16 Advanced photography 77 Explore your tiles, apps, and settings 17 Photos and videos 80 Navigate inside an app 18 Maps & navigation 84 Use the touch screen 19 Switch location services on 84 Transfer content to your Lumia phone 22 Find a location 84 Basics 26 Get directions to a place 84 What’s new in this release? 26 Download maps to your phone 85 Get to know your phone 26 Positioning methods 85 Accounts 32 Internet 86 Personalize your phone 35 Define internet connections 86 Cortana 40 Connect your computer to the web 86 Accessibility 41 Use your data plan efficiently 87 Take a screenshot 42 Web browser 87 Extend battery life 42 Search the web 90 Save on data roaming costs 44 Close internet connections 90 Write text 45 Entertainment 91 Scan codes or text 49 Watch and listen 91 Clock and calendar 50 FM radio 93 Browse your SIM apps 52 MixRadio 94 © 2015 Microsoft Mobile.
    [Show full text]
  • Sony Xperia Z Ultra C6833 Black (Unlocked Quadband) LTE Android Phone
    KEY FEATURES • 8 MP, 3264 x 2448 pixels, autofocus, • Android OS, v4.2 (Jelly Bean) • Wi-Fi 802.11 a/b/g/n/ac, dual-band, Wi-Fi Direct, DLNA, Wi-Fi hotspot • 16 GB, 2 GB RAM • SMS (threaded view), MMS, Email, IM, Push Email Sony Xperia Z Ultra C6833 Black (Unlocked Quadband) LTE Android Phone FEATURES GENERAL 2G Network GSM 1900/1800/900/850 FEATURES OS Android OS, v4.2 (Jelly Bean) 3G Network HSDPA Chipset Qualcomm MSM8274 or 2100/1900/1700/900/850 MSM8974 Snapdragon 800 4G Network LTE CPU Quad-core 2.2 GHz Krait 400 2600/1900/1800/1700/900/800 GPU Adreno 330 LTE 800 / 850 / 900 / 1700 / 1800 / 1900 / 2100 / 2600 - Sensors Accelerometer, gyro, proximity, C6833 compass Announced 2013, June Messaging SMS (threaded view), MMS, Email, IM, Push Email Status Available. Released 2013, Browser HTML5 July SIM Micro-SIM Radio Stereo FM radio with RDS GPS Yes, with A-GPS support and BODY Weight GLONASS Java Yes, via Java MIDP emulator - IP58 certified - dust and water proof Colors Black, White, Purple - Water resistant over 1 meter - DivX/Xvid/MP4/H.263/H.264/WMV player DISPLAY Type Capacitive touchscreen, 16M colors - MP3/eAAC+/WMA/WAV/Flac player Multitouch Yes, up to 10 fingers - Document viewer Protection Shatter proof and scratch-resistant glass - Photo viewer/editor - Triluminos display - Voice memo/dial - X-Reality Engine - Predictive text input - ANT+ support Alert types Vibration; MP3 ringtones SOUND - SNS integration Loudspeaker Yes - TV-out (via MHL A/V link) 3.5mm jack Yes - Active noise cancellation with dedicated mic MEMORY Card slot
    [Show full text]
  • Select Smartphones and Tablets with Qualcomm® Quick Charge™ 2.0 Technology
    Select smartphones and tablets with Qualcomm® Quick Charge™ 2.0 technology + Asus Transformer T100 + Samsung Galaxy S6 + Asus Zenfone 2 + Samsung Galaxy S6 Edge + Droid Turbo by Motorola + Samsung Note 4 + Fujitsu Arrows NX + Samsung Note Edge + Fujitsu F-02G + Sharp Aquos Pad + Fujitsu F-03G + Sharp Aquos Zeta + Fujitsu F-05F + Sharp SH01G/02G + Google Nexus 6 + Sony Xperia Z2 (Japan) + HTC Butterfly 2 + Sony Xperia Z2 Tablet (Japan) + HTC One (M8) + Sony Xperia Z3 + HTC One (M9) + Sony Xperia Z3 Tablet + Kyocera Urbano L03 + Sony Xperia Z4 + LeTV One Max + Sony Xperia Z4 Tablet + LeTV One Pro + Xiaomi Mi 3 + LG G Flex 2 + Xiaomi Mi 4 + LG G4 + Xiaomi Mi Note + New Moto X by Motorola + Xiaomi Mi Note Pro + Panasonic CM-1 + Yota Phone 2 + Samsung Galaxy S5 (Japan) These devices contain the hardware necessary to achieve Quick Charge 2.0. It is at the device manufacturer’s discretion to fully enable this feature. A Quick Charge 2.0 certified power adapter is required. Different Quick Charge 2.0 implementations may result in different charging times. www.qualcomm.com/quickcharge Qualcomm Quick Charge is a product of Qualcom Technologies, Inc. Updated 6/2015 Certified Accessories + Air-J Multi Voltage AC Charger + Motorola TurboPower 15 Wall Charger + APE Technology AC/DC Adapter + Naztech N210 Travel Charger + APE Technology Car Charger + Naztech Phantom Vehicle Charger + APE Technology Power Bank + NTT DOCOMO AC Adapter + Aukey PA-U28 Turbo USB Universal Wall Charger + Power Partners AC Adapter + CellTrend Car Charger + Powermod Car Charger
    [Show full text]
  • Android Devices
    Mobile Devices Compatible With A10050QC iOS Devices Lightning Connector iPhone 5 iPod Touch (6th generation) iPhone 5C iPad 4 iPhone 5S iPad Air iPhone 6 iPad Air 2 iPhone 6 Plus iPad mini iPhone 6S iPad mini 2 iPhone 6S Plus iPad mini 3 iPhone SE iPad mini 4 iPhone 7 iPad Pro (9.7 inch) iPhone 7 Plus iPad Pro (12.9 inch) iPod Touch (5th generation) Android Devices Micro USB Connector All Android phone support Smartphone With Quick Charge 3.0 Technology Type-C Connector Asus ZenFone 3 LG V20 TCL Idol 4S Asus ZenFone 3 Deluxe NuAns NEO VIVO Xplay6 Asus ZenFone 3 Ultra Nubia Z11 Max Wiley Fox Swift 2 Alcatel Idol 4 Nubia Z11miniS Xiaomi Mi 5 Alcatel Idol 4S Nubia Z11 Xiaomi Mi 5s General Mobile GM5+ Qiku Q5 Xiaomi Mi 5s Plus HP Elite x3 Qiku Q5 Plus Xiaomi Mi Note 2 LeEco Le MAX 2 Smartisan M1 Xiaomi MIX LeEco (LeTV) Le MAX Pro Smartisan M1L ZTE Axon 7 Max LeEco Le Pro 3 Sony Xperia XZ ZTE Axon 7 Lenovo ZUK Z2 Pro TCL Idol 4-Pro Smartphone With Quick Charge 3.0 Technology Micro USB Connector HTC One A9 Vodafone Smart platinum 7 Qiku N45 Wiley Fox Swift Sugar F7 Xiaomi Mi Max Compatible With Quick Charge 3.0 Technology Micro USB Connector Asus Zenfone 2 New Moto X by Motorola Sony Xperia Z4 BlackBerry Priv Nextbit Robin Sony Xperia Z4 Tablet Disney Mobile on docomo Panasonic CM-1 Sony Xperia Z5 Droid Turbo by Motorola Ramos Mos1 Sony Xperia Z5 Compact Eben 8848 Samsung Galaxy A8 Sony Xperia Z5 Premium (KDDI Japan) EE 4GEE WiFi (MiFi) Samsung Galaxy Note 4 Vertu Signature Touch Fujitsu Arrows Samsung Galaxy Note 5 Vestel Venus V3 5070 Fujitsu
    [Show full text]
  • Nokia Lumia 830 User Guide
    User Guide Nokia Lumia 830 Issue 1 EN Psst... This guide isn't all there is... There's a user guide in your phone – it's always with you, available when needed. Check out videos, find answers to your questions, and get helpful tips. Tap Lumia Help+Tips. If you’re new to Windows Phone, check out the section for new Windows Phone users. Check out the support videos at www.youtube.com/NokiaSupportVideos. For info on Microsoft Mobile Service terms and Privacy policy, go to www.nokia.com/privacy. First start-up Your new phone comes with great features that are installed when you start your phone for the first time. Allow some minutes while your phone sets up. © 2014 Microsoft Mobile. All rights reserved. 2 User Guide Nokia Lumia 830 Contents For your safety 5 Mail 63 Get started 6 Camera 69 Keys and parts 6 Get to know Nokia Camera 69 Insert the SIM and memory card 6 Change the default camera 69 Remove the SIM and memory card 9 Camera basics 69 Switch the phone on 11 Advanced photography 72 Charge your phone 12 Photos and videos 76 Transfer content to your Lumia phone 13 Maps & navigation 80 Lock the keys and screen 16 Switch location services on 80 Connect the headset 17 Find a location 80 Antenna locations 18 Get directions to a place 80 Basics 19 Download maps to your phone 81 Get to know your phone 19 Positioning methods 81 Accounts 26 Internet 82 Personalize your phone 30 Define internet connections 82 Cortana 34 Connect your computer to the web 82 Accessibility 35 Use your data plan efficiently 83 Take a screenshot 36 Web browser 83 Extend battery life 37 Search the web 85 Save on data roaming costs 39 Close internet connections 86 Write text 39 Entertainment 87 Scan codes or text 43 Watch and listen 87 Clock and calendar 43 FM radio 89 Browse your SIM apps 46 MixRadio 90 Store 46 Sync music and videos between your phone and computer 90 People & messaging 50 Games 91 Calls 50 Office 93 Contacts 54 Microsoft Office Mobile 93 Social networks 59 Write a note 95 Messages 60 © 2014 Microsoft Mobile.
    [Show full text]
  • Gadgetshieldz
    GadgetShieldz https://www.indiamart.com/gadgetshieldz/ GadgetShieldz is an ultra-clear and ultra-tough scratch protection film that applies directly on your electronic devices providing total- body scratch protection without altering their original sleek look. Simply put, if a screen protector is to ... About Us GadgetShieldz is an ultra-clear and ultra-tough scratch protection film that applies directly on your electronic devices providing total-body scratch protection without altering their original sleek look. Simply put, if a screen protector is to protect the screen then GadgetShieldz is to protect the entire device including the screen. GadgetShieldz is the ultimate solution providing an almost invisible 360 degree protective cover for your expensive gadgets. - See more at: http://www.gadgetshieldz.in/#sthash.MJ9efHbQ.dpuf For more information, please visit https://www.indiamart.com/gadgetshieldz/aboutus.html CELL PHONES / SMART PHONES P r o d u c t s & S e r v i c e s LG L90 Dual Screen Protector HTC Desire 816 Screen Protector LG L70 Screen Protector Samsung Gear Fit Screen Protector SCREEN GUARD P r o d u c t s & S e r v i c e s BlackBerry Curve 9380 Samsung Wave Y S5380 Screen Protector Screen Protector Samsung Galaxy Ace Plus HTC Amaze Screen Protector S7500 Screen SCREEN PROTECTOR P r o d u c t s & S e r v i c e s BlackBerry Q10 Screen Asus Google Nexus 7 (2013) Protector Screen Protector Sony Xperia Z Ultra Screen Sony Xperia Tablet Z Screen Protector Protector NEXUS SCREEN PROTECTOR P r o d u c t s & S e r v i c e s LG L90
    [Show full text]
  • Release Notice
    WOPE 5.2.22 Release Notice Copyright Backelite 2012 1. Introduction We are happy to announce the release of the HTML5-based framework WOPE 5.2. Note that this release is fully compatible with the old BKML syntax making the migration to this new version effortless. Read the release notes below to find out about all enhancements. 2. Delivery description This delivery includes: • This document Release_Notice-5.2.22-en-US.pdf • The complete WOPE Web application wope-5.2.22.war • Resources used to customize UI widgets ResourcesClient-5.2.22.zip • Examples of customizable error pages wope-errors-5.2.22.zip • The english version of the Developer Handbook Developer_Handbook-5.2.22-en-US.pdf • The english version of the Operating Handbook Operating_Handbook-5.2.22-en-US.pdf 3. New features 3.1. New UI components • Introduced responsive menu for best user experience on tablets. Non tablets devices will get a but- ton based sliding menu. • Introduced fixed header and footer elements to provide a more native look and feel. 1 Release Notice • Introduced table sort feature for numbers, strings and currencies. • Improved default CSS layout for easy UI customization. 3.2. Advanced CSS3 features • Enhanced media queries for CSS properties filtering inside the CSS file, based on browser type and version, OS type and version, screen width, etc... • Write prefix-free CSS3 style sheet, WOPE will automatically add vendor prefixes. 3.3. WOPE Box evolution • iPad is now supported in the iOS WOPE Box. 3.4. Performance improvements • Improved compatibility with content delivery networks (CDN).
    [Show full text]
  • Nokia Lumia 1520 -Käyttöohje
    Käyttöohje Nokia Lumia 1520 3.0. painos FI Psst... Tämän oppaan lisäksi on vielä muutakin... Puhelimessa on käyttöohje, joka on aina mukanasi ja käytettävissä, kun sitä tarvitset. Pyyhkäise aloitusnäytössä vasemmalle ja napauta kohtaa Lumia Ohje + vinkit. Tämän käyttöoppaan ohjeet perustuvat uusimpaan saatavilla olevaan ohjelmistoversioon. Jos laitetta ei ole päivitetty uusimpaan saatavilla olevaan ohjelmistoversioon, joidenkin toimintojen saatavuus ja ominaisuudet eivät ehkä vastaa kuvausta. Katso videoita osoitteessa www.youtube.com/NokiaSupportVideos. Lisätietoja Microsoft Mobilen palveluehdoista ja henkilötietojen suojaperiaatteista on osoitteessa www.microsoft.com/mobile/privacypolicy. © 2014 Microsoft Mobile. Kaikki oikeudet pidätetään. 2 Käyttöohje Nokia Lumia 1520 Sisältö Turvallisuutesi vuoksi 5 Kello ja kalenteri 48 Käytön aloitus 6 Selaa SIM-sovelluksia 51 Näppäimet ja osat 6 Kauppa 51 Aseta SIM-kortti paikalleen 6 Ihmiset ja viestit 55 Poista SIM-kortti 8 Puhelut 55 Aseta muistikortti paikalleen 8 Yhteyshenkilöt 59 Kytke puhelimeen virta 9 Yhteisöt 64 Lukitse näppäimet ja näyttö 10 Viestit 66 Lataa puhelin 12 Sähköposti 70 Liitä kuulokkeet 13 Kamera 76 Antennien paikat 13 Tutustu Lumia Camera -sovellukseen 76 Onko tämä ensimmäinen Lumia- Vaihda oletuskameraa 76 puhelimesi? 15 Kameran perustoiminnot 77 Puhelimen käyttöönotto 15 Valokuvauksen lisäasetukset 78 Tutustu puhelimen ruutuihin, Valokuvat ja videot 81 sovelluksiin ja asetuksiin 15 Kartat ja navigointi 86 Siirtyminen sovelluksen sisällä 17 Ota paikannuspalvelut käyttöön
    [Show full text]
  • Battery Life Test Results HUAWEI TOSHIBA INTEX PLUM
    2/12/2015 Battery life tests ­ GSMArena.com Starborn SAMSUNG GALAXY S6 EDGE+ REVIEW PHONE FINDER SAMSUNG LENOVO VODAFONE VERYKOOL APPLE XIAOMI GIGABYTE MAXWEST MICROSOFT ACER PANTECH CELKON NOKIA ASUS XOLO GIONEE SONY OPPO LAVA VIVO LG BLACKBERRY MICROMAX NIU HTC ALCATEL BLU YEZZ MOTOROLA ZTE SPICE PARLA Battery life test results HUAWEI TOSHIBA INTEX PLUM ALL BRANDS RUMOR MILL Welcome to the GSMArena battery life tool. This page puts together the stats for all battery life tests we've done, conveniently listed for a quick and easy comparison between models. You can sort the table by either overall rating or by any of the individual test components that's most important to you ­ call time, video playback or web browsing.TIP US 828K 100K You can find all about our84K 137K RSS LOG IN SIGN UP testing procedures here. SearchOur overall rating gives you an idea of how much battery backup you can get on a single charge. An overall rating of 40h means that you'll need to fully charge the device in question once every 40 hours if you do one hour of 3G calls, one hour of video playback and one hour of web browsing daily. The score factors in the power consumption in these three disciplines along with the real­life standby power consumption, which we also measure separately. Best of all, if the way we compute our overall rating does not correspond to your usage pattern, you are free to adjust the different usage components to get a closer match. Use the sliders below to adjust the approximate usage time for each of the three battery draining components.
    [Show full text]
  • Manual Do Usuário Nokia Lumia 1320
    Manual do Usuário Nokia Lumia 1320 Edição 1.1 PT-BR Psiu... Este manual não é tudo... Há um Manual do Usuário em seu telefone que está sempre com você, disponível quando for necessário. Na tela inicial, deslize para a esquerda e toque em Nokia Care. As instruções contidas neste Manual do Usuário baseiam-se na versão mais recente disponível do software. Se o seu aparelho não tiver sido atualizado com o software mais recente disponível, poderá haver diferenças na disponibilidade e funcionalidade de alguns recursos. Para obter informações sobre os Termos de Serviço e a Política de Privacidade da Nokia, vá para www.nokia.com/privacy (em inglês). © 2014 Nokia. Todos os direitos reservados. 2 Manual do Usuário Nokia Lumia 1320 Conteúdo Segurança 5 Contatos 54 Introdução 6 Redes sociais 57 Teclas e componentes 6 Mensagens 59 Tecla de pesquisa, Voltar e Iniciar 6 E-mail 62 Localizações da antena 7 Câmera 69 Inserir o cartão SIM 7 Recursos básicos da câmera 69 Inserir o cartão de memória 9 Nokia Camera 73 Remover o cartão de memória 10 Fotografia avançada 79 Carregar o telefone 10 Fotos e vídeos 79 Primeira inicialização 12 Mapas e navegação 84 Transferir conteúdo para Nokia Lumia 15 Ativar os serviços de localização 84 Bloquear as teclas e a tela 21 HERE Maps 84 Conectar-se ao fone de ouvido 22 HERE Drive 91 Alterar o volume 22 Métodos de posicionamento 97 Ícones mostrados no telefone 23 Internet 98 Recursos básicos 25 Definir conexões de internet 98 Conhecer seu telefone 25 Conectar seu computador com a web 98 Personalizar o telefone 30 Navegador
    [Show full text]