Nuxeo World Session: Mobile ECM Apps with Nuxeo EP

Nuxeo
NuxeoInbound Marketing Specialist at Nuxeo
Nov. 18 2010 - S. Fermigier & B. Jalon, Nuxeo




                            Mobile ECM Apps
                             with Nuxeo EP
                                   An experience report




Monday, November 22, 2010
Outline

                   • Why?
                   • How?
                   • Experience reports
                   • Future work

Monday, November 22, 2010
1. Towards content-enabled
                   enterprise mobile apps



Monday, November 22, 2010
Gartner: mobile apps and
                       tablets are HOT




         Source: http://blogs.techrepublic.com.com/10things/?p=1871
Monday, November 22, 2010
Gartner again
                                      (but emphasis is mine)

                   •        Enterprise apps will need to be designed for the
                            tablet;

                   •        Delivering these apps gets complicated due to the
                            selection of platforms;

                   •        Marketing will drive a lot of projects to utilize tablets,
                            but these devices can be used for inspections,
                            surveys, image capture, documentation
                            and training.

                   •        The PC era is over.Think of mobile design points.


Monday, November 22, 2010
Technical limitations
                   • Limited screen size
                   • No keyboard, touch interface not a mouse either
                   • Limited computing power
                   • Limited network availability and bandwidth
                   • Limited content types
                   • Platforms proliferation!
                   • Etc.
Monday, November 22, 2010
New opportunities

                   • Just use your finger! (ex: Zosh)
                   • Geolocation
                   • Camera
                    • Ex: Barcode scanning
                   • Other sensors?

Monday, November 22, 2010
Embrace the constraints!
                   • Well defined (but per-platform) UI
                            guidelines
                   • New standard to the rescue: HTML5
                    • Mobile-specific enhancements to CSS
                    • Local storage (file and DB)
                    • Offline mode
Monday, November 22, 2010
2. Technological landscape
                            Mobile apps or mobile web?




Monday, November 22, 2010
Web Apps
                   • Multi-platform
                     • Depending on HTML5 support by your
                            platform vendor
                   • Easy deployment
                   • But: UI won’t look and feel “native”
                     • Users will know they are in a browser
                   • Limited access to device APIs
Monday, November 22, 2010
vs. Native Apps
                   • Optimized for a single platform capabilities
                        •     Optimal user experience

                        •     Access to sensors and specific API

                   • You can try to make money on the App
                            Store (not applicable here)
                   • But: Need platform-specific training, longer
                            development time

Monday, November 22, 2010
A wide range of options
                     Web Apps        Native Apps
           • Pure HTML (with ad-   • Cross-platforms, “web
                  hoc CSS)           oriented”, frameworks
           • HTML enhanced with • Cross-platforms,
                  jQuery             “native oriented”,
                                     frameworks
           • One Page or SOFEA
                  web apps         • Native apps
Monday, November 22, 2010
Pure HTML

                   • Classical web application made of pages,
                            with a bit of CSS to make them more
                            readable on a tiny screen
                   • Good enough for mobile web sites
                   • For any kind of web applications, we can do
                            better for a very tiny price



Monday, November 22, 2010
Example: mobile
                               Wikipedia




Monday, November 22, 2010
“Enhanced” HTML
                   •        HTML content delivered with AJAX requests
                            using “link hijacking” techniques (using usually a
                            bit of jQuery love)

                   •        Various CSS and JS tricks to emulate native UI

                   •        Libraries: iUI, jQTouch, jQuery Mobile

                        •     iUI: already mature, full-featured

                        •     jQuery Mobile: recent project, focus on
                              portability


Monday, November 22, 2010
One page Web apps
                   • Applications built using the SOFEA paradigm
                            (Service-Oriented Front-End Architecture)
                   • Web assets are loaded only once, then all
                            interaction with server takes place as web
                            services (usually JSON RPC)
                   • (Too?) Many frameworks, still immature:
                            GWT, Sencha Touch, SproutCore Mobile,
                            Dojo, etc.


Monday, November 22, 2010
Example:
                            mobile gmail




Monday, November 22, 2010
• Embeds your web app into a custom-built
                            web browser
                        • Removes URL and bottom tab bars
                        • Extends JS API with platform-specific API
                   • Easiest transition from web app to native
                     • But you still get a web-like UI
                   • Open source community project
Monday, November 22, 2010
• Initially similar to PhoneGap
                   • Then refocussed on providing a JS-based
                            API to native UI and platform APIs
                   • 2 supported platforms: iOS and Android,
                            BlackBerry coming up someday
                   • Open source startup, raised 9 M$ of VC
                            money last week


Monday, November 22, 2010
Native Apps
                   •        Develop native APIs using vendor
                        •     iOS: Objective-C / Cocoa Touch

                        •     Android: “Java”

                        •     BlackBerry: another Java (without “”)

                        •     Symbian: C++

                        •     Etc.

                   •        Main problem: to many platforms, too little time :(


Monday, November 22, 2010
3. 1st experience report



Monday, November 22, 2010
Exercise: write a content-
                     browsing app for DM
                  • Target platform = iPhone
                  • Browse content on a DM server
                  • Show content and metadata
                  • Full text search
                  • Recently updated documents (“timeline”)
                  • Store contextual data on the iPhone
Monday, November 22, 2010
Initial design




Monday, November 22, 2010
3 technologies

                   • Native iPhone app (Objective-C, Cocoa
                            Touch)
                   • Web app using jQuery-Mobile
                   • Portable app using Appcelerator Titanium
                            Mobile



Monday, November 22, 2010
Objective-C: the results

                   • Took 2 days to learn the basics of Objective-
                            C, Cocoa Touch, XCode
                   • Took about 3 days for a very basic prototype
                   • Additional complexity of supporting CMIS
                   • Unstable, now abandoned
                   • Code still there: hg.nuxeo.org/mobile/iphone

Monday, November 22, 2010
DEMO



Monday, November 22, 2010
Objective-C: the Good

                   • Learning a new language is intellectually
                            stimulating :)
                   • This is good old UNIX, you can use open
                            source libraries in C if you need
                   • Small ecosystem of open source libraries
                            around iOS



Monday, November 22, 2010
Objective-C: the Bad

                   • Learning a new language takes time, learning
                            a new IDE even more, and you don’t want to
                            switch from two IDEs too often
                   • Objective-C feels like I’m back in 1990
                            (explicit pointer and memory management)
                   • Only for iOS, as you would guess

Monday, November 22, 2010
jQuery Mobile: the results

                   • Took 1/2 a day to get a basic demo
                            (browsing, search) running
                   • Didn’t implement everything that I expected
                            (see Benjamin’s upcoming demo for a similar
                            approach, using iUI)




Monday, November 22, 2010
DEMO



Monday, November 22, 2010
jQuery Mobile: the Good

                   • Very easy to do on the server
                   • Fast turnaround thanks to WebEngine
                   • Easiest deployment option (you don’t need
                            to deploy)




Monday, November 22, 2010
jQuery Mobile: the Bad
                   •        The forward/back buttons are in the way, but you
                            have to use them after looking at a piece of
                            content

                   •        No easy way to develop a tab bar as I had designed

                   •        Not sure it will scale up to more sophisticated
                            applications

                   •        Might use PhoneGap to address some of these
                            points



Monday, November 22, 2010
Appcelerator: the results
                   • Took about 1 day to learn how to use the
                            platform
                   • Took about 3 days to create a reasonably
                            good looking, alpha-quality app
                   • 90% of the time spent on front-end, 10% on
                            back end (JSON REST API with WebEngine)
                   • Will probably take 2 or 3 more days to
                            make it App Store ready

Monday, November 22, 2010
DEMO



Monday, November 22, 2010
Monday, November 22, 2010
Appcelerator: the Good
                   • JavaScript much easier to learn than
                            Objective-C
                   • Specially when you already know
                            JavaScript ;) (or even Java)
                   • Productivity 2x to 5x higher that with
                            native Cocoa-Touch
                   • Multi-platform promise seems to work
Monday, November 22, 2010
Appcelerator: the bad
                   • “IDE” is quirky and unstable
                   • And not really an IDE actually!
                   • No debugger
                   • Another layer of indirection
                   • Apple doesn’t want you to use it (resolved!)
                   • As with native apps, provisioning is a PITA
Monday, November 22, 2010
Conclusion of the
                              experiment


Monday, November 22, 2010
Native (Obj-C)

                   • Not worth of your time, unless you:
                    • Are (or have) a dedicated iOS developer
                    • Want to compete on design to make $$
                            on the App store
                        • Want to be the first to leverage newly
                            introduced iOS features


Monday, November 22, 2010
Mobile HTML
                        • The fastest way to get a simple application
                            up and running
                        • The most multi-platform approach
                        • Doesn’t provide users with a 100% native
                            look and specially feel
                        • Doesn’t give you access to all the local
                            features of the device
                        • Can be complemented with PhoneGap
Monday, November 22, 2010
Appcelerator
                        • Gives you native look and feel and
                            platform access, with an original but
                            familiar API, at the price of slightly longer
                            development time than HTML
                        • Supports 2 major platforms (iOS and
                            Android), and soon Blackberry
                        • Not 100% bug-free, will always lag behind
                            native platform

Monday, November 22, 2010
4. 2nd experience report
                            Benjamin Jalon




Monday, November 22, 2010
Demonstration



                            43




Monday, November 22, 2010
Game rules
           • 2 weeks available
           • A real job during the day
           • A family life
           • => 1 free hour per day
           • No iUI knowledge
           • JavaScript Newbie
           • Goal: Create a web application for Mobile
                                                         44




Monday, November 22, 2010
The Result


                            45




Monday, November 22, 2010
And on other devices




                              46




Monday, November 22, 2010
iUI
           • iUI
                • JavaScript / CSS framework
                • Extends of HTML standard
                • Override links and forms with AJAX
                • Update the page with smooth transition

           • Don’t need to be a web designer
           • Don’t need to be a JavaScript ninja
                                                           47




Monday, November 22, 2010
In the beginning: HTML
       • CSS and JavaScript references: let’s rock !
       <html>
         <head>
           <title>Nuxeo DM</title>
           <link rel="stylesheet" type="text/css" href="/nuxeo/iui/iui.css"/>
           <link rel="stylesheet" type="text/css" href="/nuxeo/iui/t/default/default-theme.css"/>
           <script src="/nuxeo/iui/iui.js"></script>
         </head>
         <body>
           <div id="toolBar" class="toolbar">
              <h1 id="pageTitle"></h1>
              <a id="backButton" class="button" href="#"></a>               Toolbar definition
              <a id="help" class="button" href="#about">?</a>
           </div>
           <ul id="home" title="Home" selected="true">
              <li><a href="${basePath}/mobile/navigation/root">Navigation</a></li>
                                                                            Content definition
              <li><a href="${basePath}/mobile/search">Saved Search</a></li>
              <li><a href="${basePath}/mobile/workflow">Tasks</a></li>
           </ul>
         </body>

                                                                                                    48




Monday, November 22, 2010
Page definition / simple navigation

       • Create a new item under the body
       • Title argument is used into the toolbar
           <div id="test" title="Test">
              HELLO
           </div>




       • An item with href value is #idPage, where idPage is
         the id of the root of your page
            <div id="main" title="Main Page">
               <a href=”#test”>Navigate to Test Page</a>
            </div>

                                                               49




Monday, November 22, 2010
Having a page as iPhone rendering

       • For a list with links <ul><li><a>
       • For grouped information
           <div id="pageId" title="Details"   class="panel">
              <h1>Sub-Title1</h1>
              <fieldset>
                <div class="row">
                  <label>label1</label>
                  <span>value1</span>
                </div>
                <div class="row">
                  <label>label2</label>
                  <span>value2</span>
                </div>
                etc...
              </fieldset>
              <h1>Sub-Title2</h1>
              <fieldset>
                <div class="row">
                  <label>label2</label>
                 etc...
                                                               50




Monday, November 22, 2010
Other linking
       • linking to resources not in the DOM
                        <a href="nuxeo/mobile/navigation/root">Navigation</a>


       • resource is added at the end of the body, the last
         page declared is displayed
       • linking to the next page
         <li><a href="nuxeo/mobile/navigation/page" target="_replace">Next Documents...</a></li>


       • parent of the item is replaced by the result of the
         request
                                                                                                   51




Monday, November 22, 2010
Conclusion
           •      First connexion needs:
                •       15KB for CSS

                •       7KB for images

                •       50KB for scripts

                •       And document.... 2KB

                •       For others pages between 210Bytes and 5KB

           •      We can do better
                •       Compacting JavaScripts

                •       Refactoring the nx.js script
                                                                    52




Monday, November 22, 2010
Conclusion
           • iUI development is really powerful and easy to
             understand but means many treatments are client
             side
           • With WebEngine, the modification/deployment/test
             cycle is really fast
           • We can create over this web application an hybrid
             Application
                • Using the camera library, manipulate downloaded files,
                  etc...
                                                                          53




Monday, November 22, 2010
Just one more thing...


                                54




Monday, November 22, 2010
WebEngine Mobile project
                            • Automatic redirection to Mobile App
                            • Repository Navigation
                            • Document Modification
                            • File download
                            • Push your geolocation into your docs
                            • Reuse your faceted search
                            • Accept/Deny your tasks
                            • Delete a document
                                                                     55




Monday, November 22, 2010
WebEngine Mobile project




                                  56




Monday, November 22, 2010
WebEngine Mobile project


                            0$




                                  56




Monday, November 22, 2010
WebEngine Mobile project


                                                        0$
                            Google code: https://code.google.com/p/nuxeo-webengine-mobile/
                               Soon released and delivered through Nuxeo Marketplace




                                                                                             56




Monday, November 22, 2010
5. Future Work



Monday, November 22, 2010
Generic document
                                browsing App
                   •        New web mobile browsing module will be
                            finished in December and put on the Nuxeo
                            Marketplace
                   •        Companion iOS App to be submitted on the
                            App Store simultaneously (same for Android)
                   •        Work on advanced native App will continue
                            to provide better disconnected mode
                            experience


Monday, November 22, 2010
Business-specific apps
                   • We’re ready to work with our customers
                            and partners on business-specific apps
                   • Choice between web app and native app is
                            up to the customer, and will depend on
                            features, devices used, etc.
                   • Will leverage our business API (Content
                            Automation) + develop a specific
                            framework to ease development


Monday, November 22, 2010
More info


                   • Watch http://blogs.nuxeo.com/



Monday, November 22, 2010
1 of 62

Recommended

Nuxeo World Session: Becoming a Contributor: How to Get Started by
Nuxeo World Session: Becoming a Contributor: How to Get StartedNuxeo World Session: Becoming a Contributor: How to Get Started
Nuxeo World Session: Becoming a Contributor: How to Get StartedNuxeo
5.9K views29 slides
Lessons learned Building Nuxeo EP - Component-based, open source ECM platform by
Lessons learned Building Nuxeo EP - Component-based, open source ECM platformLessons learned Building Nuxeo EP - Component-based, open source ECM platform
Lessons learned Building Nuxeo EP - Component-based, open source ECM platformNuxeo
1.6K views73 slides
Mobile ECM with JavaScript - JSE 2011 by
Mobile ECM with JavaScript - JSE 2011Mobile ECM with JavaScript - JSE 2011
Mobile ECM with JavaScript - JSE 2011Nuxeo
865 views56 slides
Build content centric apps with eclipse and nuxeo - ny java-sig november 2011 by
Build content centric apps with eclipse and nuxeo - ny java-sig november 2011Build content centric apps with eclipse and nuxeo - ny java-sig november 2011
Build content centric apps with eclipse and nuxeo - ny java-sig november 2011Nuxeo
616 views30 slides
A Platform Approach to Enterprise Content Management with Eclipse Apricot, CM... by
A Platform Approach to Enterprise Content Management with Eclipse Apricot, CM...A Platform Approach to Enterprise Content Management with Eclipse Apricot, CM...
A Platform Approach to Enterprise Content Management with Eclipse Apricot, CM...Nuxeo
524 views33 slides
[Webinar] Nuxeo platform 5.8 webinar by
[Webinar] Nuxeo platform 5.8 webinar [Webinar] Nuxeo platform 5.8 webinar
[Webinar] Nuxeo platform 5.8 webinar Nuxeo
1.5K views31 slides

More Related Content

What's hot

From XPages Hero to OSGi Guru: Taking the Scary out of Building Extension Lib... by
From XPages Hero to OSGi Guru: Taking the Scary out of Building Extension Lib...From XPages Hero to OSGi Guru: Taking the Scary out of Building Extension Lib...
From XPages Hero to OSGi Guru: Taking the Scary out of Building Extension Lib...Paul Withers
1.6K views50 slides
Cincom Smalltalk: Present, Future & Smalltalk Advocacy by
Cincom Smalltalk: Present, Future & Smalltalk AdvocacyCincom Smalltalk: Present, Future & Smalltalk Advocacy
Cincom Smalltalk: Present, Future & Smalltalk AdvocacyESUG
807 views62 slides
GateIn - Presented at Atlanta JUG on 1/19/2010 by
GateIn - Presented at Atlanta JUG on 1/19/2010GateIn - Presented at Atlanta JUG on 1/19/2010
GateIn - Presented at Atlanta JUG on 1/19/2010Wesley Hales
1.6K views32 slides
Drupal case study: Behind the scenes of website of University of Tartu by
Drupal case study: Behind the scenes of website of University of TartuDrupal case study: Behind the scenes of website of University of Tartu
Drupal case study: Behind the scenes of website of University of TartuRené Lasseron
9.8K views31 slides
Discover eZ Publish: why you have to know this product by
Discover eZ Publish: why you have to know this productDiscover eZ Publish: why you have to know this product
Discover eZ Publish: why you have to know this productBertrand Dunogier
1.3K views27 slides

What's hot(20)

From XPages Hero to OSGi Guru: Taking the Scary out of Building Extension Lib... by Paul Withers
From XPages Hero to OSGi Guru: Taking the Scary out of Building Extension Lib...From XPages Hero to OSGi Guru: Taking the Scary out of Building Extension Lib...
From XPages Hero to OSGi Guru: Taking the Scary out of Building Extension Lib...
Paul Withers1.6K views
Cincom Smalltalk: Present, Future & Smalltalk Advocacy by ESUG
Cincom Smalltalk: Present, Future & Smalltalk AdvocacyCincom Smalltalk: Present, Future & Smalltalk Advocacy
Cincom Smalltalk: Present, Future & Smalltalk Advocacy
ESUG807 views
GateIn - Presented at Atlanta JUG on 1/19/2010 by Wesley Hales
GateIn - Presented at Atlanta JUG on 1/19/2010GateIn - Presented at Atlanta JUG on 1/19/2010
GateIn - Presented at Atlanta JUG on 1/19/2010
Wesley Hales1.6K views
Drupal case study: Behind the scenes of website of University of Tartu by René Lasseron
Drupal case study: Behind the scenes of website of University of TartuDrupal case study: Behind the scenes of website of University of Tartu
Drupal case study: Behind the scenes of website of University of Tartu
René Lasseron9.8K views
Discover eZ Publish: why you have to know this product by Bertrand Dunogier
Discover eZ Publish: why you have to know this productDiscover eZ Publish: why you have to know this product
Discover eZ Publish: why you have to know this product
Bertrand Dunogier1.3K views
Javantura 2014 - Java 8 JavaScript Nashorn by Miroslav Resetar
Javantura 2014 - Java 8 JavaScript NashornJavantura 2014 - Java 8 JavaScript Nashorn
Javantura 2014 - Java 8 JavaScript Nashorn
Miroslav Resetar2K views
Basics About Git & GitHub by Raiful Hasan
Basics About Git & GitHubBasics About Git & GitHub
Basics About Git & GitHub
Raiful Hasan1.6K views
Chocolatey - Software Automation for Windows (and sneak peak of Central Mana... by Rob Reynolds
 Chocolatey - Software Automation for Windows (and sneak peak of Central Mana... Chocolatey - Software Automation for Windows (and sneak peak of Central Mana...
Chocolatey - Software Automation for Windows (and sneak peak of Central Mana...
Rob Reynolds678 views
W3C HTML5 KIG-The complete guide to building html5 games by Changhwan Yi
W3C HTML5 KIG-The complete guide to building html5 gamesW3C HTML5 KIG-The complete guide to building html5 games
W3C HTML5 KIG-The complete guide to building html5 games
Changhwan Yi1.3K views
Kitware: Qt and Scientific Computing by account inactive
Kitware: Qt and Scientific ComputingKitware: Qt and Scientific Computing
Kitware: Qt and Scientific Computing
account inactive2.5K views
Lib X Bailey Back Access2008 by guestd9aa5
Lib X Bailey Back Access2008Lib X Bailey Back Access2008
Lib X Bailey Back Access2008
guestd9aa5512 views
Discover Nuxeo Studio by Nuxeo
Discover Nuxeo StudioDiscover Nuxeo Studio
Discover Nuxeo Studio
Nuxeo1.3K views
Donating a mature project to Eclipse by glynnormington
Donating a mature project to EclipseDonating a mature project to Eclipse
Donating a mature project to Eclipse
glynnormington675 views

Viewers also liked

FrOSCamp Zurich: Content Management Standards by
FrOSCamp Zurich: Content Management StandardsFrOSCamp Zurich: Content Management Standards
FrOSCamp Zurich: Content Management StandardsDavid Nuescheler
1.3K views43 slides
Challenges du recrutement pour un editeur de logiciel libre by
Challenges du recrutement pour un editeur de logiciel libreChallenges du recrutement pour un editeur de logiciel libre
Challenges du recrutement pour un editeur de logiciel libreStefane Fermigier
1.1K views18 slides
Open Cloud Computing @ GTLL by
Open Cloud Computing @ GTLLOpen Cloud Computing @ GTLL
Open Cloud Computing @ GTLLStefane Fermigier
1.1K views30 slides
Nuxeo World Session: Semantic Technologies - Update on Recent Research by
Nuxeo World Session: Semantic Technologies - Update on Recent ResearchNuxeo World Session: Semantic Technologies - Update on Recent Research
Nuxeo World Session: Semantic Technologies - Update on Recent ResearchNuxeo
1.2K views50 slides
ECM Meets the Semantic Web - Nuxeo World 2011 by
ECM Meets the Semantic Web - Nuxeo World 2011ECM Meets the Semantic Web - Nuxeo World 2011
ECM Meets the Semantic Web - Nuxeo World 2011Stefane Fermigier
1.6K views48 slides
The Nuxeo Way: leveraging open source to build a world-class ECM platform by
The Nuxeo Way: leveraging open source to build a world-class ECM platformThe Nuxeo Way: leveraging open source to build a world-class ECM platform
The Nuxeo Way: leveraging open source to build a world-class ECM platformNuxeo
1.2K views28 slides

Viewers also liked(14)

FrOSCamp Zurich: Content Management Standards by David Nuescheler
FrOSCamp Zurich: Content Management StandardsFrOSCamp Zurich: Content Management Standards
FrOSCamp Zurich: Content Management Standards
David Nuescheler1.3K views
Challenges du recrutement pour un editeur de logiciel libre by Stefane Fermigier
Challenges du recrutement pour un editeur de logiciel libreChallenges du recrutement pour un editeur de logiciel libre
Challenges du recrutement pour un editeur de logiciel libre
Stefane Fermigier1.1K views
Nuxeo World Session: Semantic Technologies - Update on Recent Research by Nuxeo
Nuxeo World Session: Semantic Technologies - Update on Recent ResearchNuxeo World Session: Semantic Technologies - Update on Recent Research
Nuxeo World Session: Semantic Technologies - Update on Recent Research
Nuxeo1.2K views
ECM Meets the Semantic Web - Nuxeo World 2011 by Stefane Fermigier
ECM Meets the Semantic Web - Nuxeo World 2011ECM Meets the Semantic Web - Nuxeo World 2011
ECM Meets the Semantic Web - Nuxeo World 2011
Stefane Fermigier1.6K views
The Nuxeo Way: leveraging open source to build a world-class ECM platform by Nuxeo
The Nuxeo Way: leveraging open source to build a world-class ECM platformThe Nuxeo Way: leveraging open source to build a world-class ECM platform
The Nuxeo Way: leveraging open source to build a world-class ECM platform
Nuxeo1.2K views
Le Marché du Logiciel Libre en France en 2010 by Stefane Fermigier
Le Marché du Logiciel Libre en France en 2010Le Marché du Logiciel Libre en France en 2010
Le Marché du Logiciel Libre en France en 2010
Stefane Fermigier1.8K views
GT Logiciel Libre - Convention Systematic 2011 by Stefane Fermigier
GT Logiciel Libre - Convention Systematic 2011GT Logiciel Libre - Convention Systematic 2011
GT Logiciel Libre - Convention Systematic 2011
Stefane Fermigier834 views
What's new in Nuxeo 5.2? - Solutions Linux 2009 by Stefane Fermigier
What's new in Nuxeo 5.2? - Solutions Linux 2009What's new in Nuxeo 5.2? - Solutions Linux 2009
What's new in Nuxeo 5.2? - Solutions Linux 2009
Stefane Fermigier827 views
Nuxeo on the Cloud - Nuxeo World 2011 by Stefane Fermigier
Nuxeo on the Cloud - Nuxeo World 2011Nuxeo on the Cloud - Nuxeo World 2011
Nuxeo on the Cloud - Nuxeo World 2011
Stefane Fermigier1.2K views

Similar to Nuxeo World Session: Mobile ECM Apps with Nuxeo EP

Building Apps with PhoneGap by
Building Apps with PhoneGap Building Apps with PhoneGap
Building Apps with PhoneGap alunny
578 views30 slides
Webinar Mobile ECM Apps with Nuxeo EP by
Webinar Mobile ECM Apps with Nuxeo EPWebinar Mobile ECM Apps with Nuxeo EP
Webinar Mobile ECM Apps with Nuxeo EPNuxeo
606 views62 slides
Multi Handset Development - ETE 2010 by
Multi Handset Development - ETE 2010Multi Handset Development - ETE 2010
Multi Handset Development - ETE 2010Kevin Griffin
610 views39 slides
Synapse india reviews on mobile application development by
Synapse india reviews on mobile application developmentSynapse india reviews on mobile application development
Synapse india reviews on mobile application developmentsaritasingh19866
298 views22 slides
Multiplatform by
MultiplatformMultiplatform
MultiplatformPrabhat gangwar
390 views21 slides
Synapse india reviews on cross plateform mobile apps development by
Synapse india reviews on cross plateform mobile apps developmentSynapse india reviews on cross plateform mobile apps development
Synapse india reviews on cross plateform mobile apps developmentsaritasingh19866
246 views13 slides

Similar to Nuxeo World Session: Mobile ECM Apps with Nuxeo EP(20)

Building Apps with PhoneGap by alunny
Building Apps with PhoneGap Building Apps with PhoneGap
Building Apps with PhoneGap
alunny578 views
Webinar Mobile ECM Apps with Nuxeo EP by Nuxeo
Webinar Mobile ECM Apps with Nuxeo EPWebinar Mobile ECM Apps with Nuxeo EP
Webinar Mobile ECM Apps with Nuxeo EP
Nuxeo606 views
Multi Handset Development - ETE 2010 by Kevin Griffin
Multi Handset Development - ETE 2010Multi Handset Development - ETE 2010
Multi Handset Development - ETE 2010
Kevin Griffin610 views
Synapse india reviews on mobile application development by saritasingh19866
Synapse india reviews on mobile application developmentSynapse india reviews on mobile application development
Synapse india reviews on mobile application development
saritasingh19866298 views
Synapse india reviews on cross plateform mobile apps development by saritasingh19866
Synapse india reviews on cross plateform mobile apps developmentSynapse india reviews on cross plateform mobile apps development
Synapse india reviews on cross plateform mobile apps development
saritasingh19866246 views
Mobile Development Architecture Ppt with Slides, Book Notes on using Web Silv... by Bala Subra
Mobile Development Architecture Ppt with Slides, Book Notes on using Web Silv...Mobile Development Architecture Ppt with Slides, Book Notes on using Web Silv...
Mobile Development Architecture Ppt with Slides, Book Notes on using Web Silv...
Bala Subra7K views
Hybrid mobile application with Ionic by Maulik Bamania
Hybrid mobile application with IonicHybrid mobile application with Ionic
Hybrid mobile application with Ionic
Maulik Bamania229 views
Titanium appcelerator kickstart by Alessio Ricco
Titanium appcelerator kickstartTitanium appcelerator kickstart
Titanium appcelerator kickstart
Alessio Ricco2.2K views
Cross Platform Mobile Development by Manesh Lad
Cross Platform Mobile DevelopmentCross Platform Mobile Development
Cross Platform Mobile Development
Manesh Lad513 views
Open web platform talk by daniel hladky at rif 2012 (19 april 2012 moscow) by AI4BD GmbH
Open web platform talk by daniel hladky at rif 2012 (19 april 2012   moscow)Open web platform talk by daniel hladky at rif 2012 (19 april 2012   moscow)
Open web platform talk by daniel hladky at rif 2012 (19 april 2012 moscow)
AI4BD GmbH1.1K views
Web Apps vs. Native Apps: The Low Down by Apppli
Web Apps vs. Native Apps: The Low DownWeb Apps vs. Native Apps: The Low Down
Web Apps vs. Native Apps: The Low Down
Apppli403 views
Why Do Mobile Projects Fail? by Indiginox
Why Do Mobile Projects Fail?Why Do Mobile Projects Fail?
Why Do Mobile Projects Fail?
Indiginox1.4K views

More from Nuxeo

Own the Digital Shelf Strategies Food and Beverage Companies by
Own the Digital Shelf Strategies Food and Beverage CompaniesOwn the Digital Shelf Strategies Food and Beverage Companies
Own the Digital Shelf Strategies Food and Beverage CompaniesNuxeo
652 views17 slides
How DAM Librarians Can Get Ready for the Uncertain Future by
How DAM Librarians Can Get Ready for the Uncertain FutureHow DAM Librarians Can Get Ready for the Uncertain Future
How DAM Librarians Can Get Ready for the Uncertain FutureNuxeo
685 views17 slides
How Insurers Fueled Transformation During a Pandemic by
How Insurers Fueled Transformation During a PandemicHow Insurers Fueled Transformation During a Pandemic
How Insurers Fueled Transformation During a PandemicNuxeo
476 views37 slides
Manage your Content at Scale with MongoDB and Nuxeo by
Manage your Content at Scale with MongoDB and NuxeoManage your Content at Scale with MongoDB and Nuxeo
Manage your Content at Scale with MongoDB and NuxeoNuxeo
618 views28 slides
Accelerate the Digital Supply Chain From Idea to Support by
Accelerate the Digital Supply Chain From Idea to SupportAccelerate the Digital Supply Chain From Idea to Support
Accelerate the Digital Supply Chain From Idea to SupportNuxeo
463 views12 slides
Where are you in the DAM Continuum by
Where are you in the DAM ContinuumWhere are you in the DAM Continuum
Where are you in the DAM ContinuumNuxeo
1K views16 slides

More from Nuxeo(20)

Own the Digital Shelf Strategies Food and Beverage Companies by Nuxeo
Own the Digital Shelf Strategies Food and Beverage CompaniesOwn the Digital Shelf Strategies Food and Beverage Companies
Own the Digital Shelf Strategies Food and Beverage Companies
Nuxeo652 views
How DAM Librarians Can Get Ready for the Uncertain Future by Nuxeo
How DAM Librarians Can Get Ready for the Uncertain FutureHow DAM Librarians Can Get Ready for the Uncertain Future
How DAM Librarians Can Get Ready for the Uncertain Future
Nuxeo685 views
How Insurers Fueled Transformation During a Pandemic by Nuxeo
How Insurers Fueled Transformation During a PandemicHow Insurers Fueled Transformation During a Pandemic
How Insurers Fueled Transformation During a Pandemic
Nuxeo476 views
Manage your Content at Scale with MongoDB and Nuxeo by Nuxeo
Manage your Content at Scale with MongoDB and NuxeoManage your Content at Scale with MongoDB and Nuxeo
Manage your Content at Scale with MongoDB and Nuxeo
Nuxeo618 views
Accelerate the Digital Supply Chain From Idea to Support by Nuxeo
Accelerate the Digital Supply Chain From Idea to SupportAccelerate the Digital Supply Chain From Idea to Support
Accelerate the Digital Supply Chain From Idea to Support
Nuxeo463 views
Where are you in the DAM Continuum by Nuxeo
Where are you in the DAM ContinuumWhere are you in the DAM Continuum
Where are you in the DAM Continuum
Nuxeo1K views
Customer Experience in 2021 by Nuxeo
Customer Experience in 2021Customer Experience in 2021
Customer Experience in 2021
Nuxeo756 views
L’IA personnalisée, clé d’une gestion de l’information innovante by Nuxeo
L’IA personnalisée, clé d’une gestion de l’information innovanteL’IA personnalisée, clé d’une gestion de l’information innovante
L’IA personnalisée, clé d’une gestion de l’information innovante
Nuxeo456 views
Gérer ses contenus avec MongoDB et Nuxeo by Nuxeo
Gérer ses contenus avec MongoDB et NuxeoGérer ses contenus avec MongoDB et Nuxeo
Gérer ses contenus avec MongoDB et Nuxeo
Nuxeo154 views
Le DAM en 2021 : Tendances, points clés et critères d'évaluation by Nuxeo
Le DAM en 2021 : Tendances, points clés et critères d'évaluationLe DAM en 2021 : Tendances, points clés et critères d'évaluation
Le DAM en 2021 : Tendances, points clés et critères d'évaluation
Nuxeo571 views
Enabling Digital Transformation Amidst a Global Pandemic | Low-Code, Cloud, A... by Nuxeo
Enabling Digital Transformation Amidst a Global Pandemic | Low-Code, Cloud, A...Enabling Digital Transformation Amidst a Global Pandemic | Low-Code, Cloud, A...
Enabling Digital Transformation Amidst a Global Pandemic | Low-Code, Cloud, A...
Nuxeo1.7K views
Elevate your Customer's Experience and Stay Ahead of the Competition by Nuxeo
Elevate your Customer's Experience and Stay Ahead of the CompetitionElevate your Customer's Experience and Stay Ahead of the Competition
Elevate your Customer's Experience and Stay Ahead of the Competition
Nuxeo259 views
Driving Brand Loyalty Through Superior Customer Experience by Nuxeo
Driving Brand Loyalty Through Superior Customer Experience Driving Brand Loyalty Through Superior Customer Experience
Driving Brand Loyalty Through Superior Customer Experience
Nuxeo760 views
Drive Enterprise Speed and Scale with A Cloud-Native DAM by Nuxeo
Drive Enterprise Speed and Scale with A Cloud-Native DAMDrive Enterprise Speed and Scale with A Cloud-Native DAM
Drive Enterprise Speed and Scale with A Cloud-Native DAM
Nuxeo322 views
The Big Picture: the Role of Video, Photography, and Content in Enhancing the... by Nuxeo
The Big Picture: the Role of Video, Photography, and Content in Enhancing the...The Big Picture: the Role of Video, Photography, and Content in Enhancing the...
The Big Picture: the Role of Video, Photography, and Content in Enhancing the...
Nuxeo767 views
How Creatives Are Getting Creative in 2020 and Beyond by Nuxeo
How Creatives Are Getting Creative in 2020 and BeyondHow Creatives Are Getting Creative in 2020 and Beyond
How Creatives Are Getting Creative in 2020 and Beyond
Nuxeo427 views
Digitalisation : Améliorez la collaboration et l’expérience client grâce au DAM by Nuxeo
Digitalisation : Améliorez la collaboration et l’expérience client grâce au DAMDigitalisation : Améliorez la collaboration et l’expérience client grâce au DAM
Digitalisation : Améliorez la collaboration et l’expérience client grâce au DAM
Nuxeo313 views
Reimagine Your Claims Process with Future-Proof Technologies by Nuxeo
Reimagine Your Claims Process with Future-Proof TechnologiesReimagine Your Claims Process with Future-Proof Technologies
Reimagine Your Claims Process with Future-Proof Technologies
Nuxeo610 views
Comment le Centre Hospitalier Laborit dématérialise ses processus administratifs by Nuxeo
Comment le Centre Hospitalier Laborit dématérialise ses processus administratifsComment le Centre Hospitalier Laborit dématérialise ses processus administratifs
Comment le Centre Hospitalier Laborit dématérialise ses processus administratifs
Nuxeo203 views
Accelerating the Packaging Design Process with Artificial Intelligence by Nuxeo
Accelerating the Packaging Design Process with Artificial IntelligenceAccelerating the Packaging Design Process with Artificial Intelligence
Accelerating the Packaging Design Process with Artificial Intelligence
Nuxeo550 views

Recently uploaded

Voice Logger - Telephony Integration Solution at Aegis by
Voice Logger - Telephony Integration Solution at AegisVoice Logger - Telephony Integration Solution at Aegis
Voice Logger - Telephony Integration Solution at AegisNirmal Sharma
39 views1 slide
NET Conf 2023 Recap by
NET Conf 2023 RecapNET Conf 2023 Recap
NET Conf 2023 RecapLee Richardson
10 views71 slides
Kyo - Functional Scala 2023.pdf by
Kyo - Functional Scala 2023.pdfKyo - Functional Scala 2023.pdf
Kyo - Functional Scala 2023.pdfFlavio W. Brasil
400 views92 slides
Scaling Knowledge Graph Architectures with AI by
Scaling Knowledge Graph Architectures with AIScaling Knowledge Graph Architectures with AI
Scaling Knowledge Graph Architectures with AIEnterprise Knowledge
38 views15 slides
Automating a World-Class Technology Conference; Behind the Scenes of CiscoLive by
Automating a World-Class Technology Conference; Behind the Scenes of CiscoLiveAutomating a World-Class Technology Conference; Behind the Scenes of CiscoLive
Automating a World-Class Technology Conference; Behind the Scenes of CiscoLiveNetwork Automation Forum
34 views35 slides
SAP Automation Using Bar Code and FIORI.pdf by
SAP Automation Using Bar Code and FIORI.pdfSAP Automation Using Bar Code and FIORI.pdf
SAP Automation Using Bar Code and FIORI.pdfVirendra Rai, PMP
23 views38 slides

Recently uploaded(20)

Voice Logger - Telephony Integration Solution at Aegis by Nirmal Sharma
Voice Logger - Telephony Integration Solution at AegisVoice Logger - Telephony Integration Solution at Aegis
Voice Logger - Telephony Integration Solution at Aegis
Nirmal Sharma39 views
Automating a World-Class Technology Conference; Behind the Scenes of CiscoLive by Network Automation Forum
Automating a World-Class Technology Conference; Behind the Scenes of CiscoLiveAutomating a World-Class Technology Conference; Behind the Scenes of CiscoLive
Automating a World-Class Technology Conference; Behind the Scenes of CiscoLive
SAP Automation Using Bar Code and FIORI.pdf by Virendra Rai, PMP
SAP Automation Using Bar Code and FIORI.pdfSAP Automation Using Bar Code and FIORI.pdf
SAP Automation Using Bar Code and FIORI.pdf
PharoJS - Zürich Smalltalk Group Meetup November 2023 by Noury Bouraqadi
PharoJS - Zürich Smalltalk Group Meetup November 2023PharoJS - Zürich Smalltalk Group Meetup November 2023
PharoJS - Zürich Smalltalk Group Meetup November 2023
Noury Bouraqadi132 views
Serverless computing with Google Cloud (2023-24) by wesley chun
Serverless computing with Google Cloud (2023-24)Serverless computing with Google Cloud (2023-24)
Serverless computing with Google Cloud (2023-24)
wesley chun11 views
Data Integrity for Banking and Financial Services by Precisely
Data Integrity for Banking and Financial ServicesData Integrity for Banking and Financial Services
Data Integrity for Banking and Financial Services
Precisely25 views
6g - REPORT.pdf by Liveplex
6g - REPORT.pdf6g - REPORT.pdf
6g - REPORT.pdf
Liveplex10 views
Unit 1_Lecture 2_Physical Design of IoT.pdf by StephenTec
Unit 1_Lecture 2_Physical Design of IoT.pdfUnit 1_Lecture 2_Physical Design of IoT.pdf
Unit 1_Lecture 2_Physical Design of IoT.pdf
StephenTec12 views

Nuxeo World Session: Mobile ECM Apps with Nuxeo EP

  • 1. Nov. 18 2010 - S. Fermigier & B. Jalon, Nuxeo Mobile ECM Apps with Nuxeo EP An experience report Monday, November 22, 2010
  • 2. Outline • Why? • How? • Experience reports • Future work Monday, November 22, 2010
  • 3. 1. Towards content-enabled enterprise mobile apps Monday, November 22, 2010
  • 4. Gartner: mobile apps and tablets are HOT Source: http://blogs.techrepublic.com.com/10things/?p=1871 Monday, November 22, 2010
  • 5. Gartner again (but emphasis is mine) • Enterprise apps will need to be designed for the tablet; • Delivering these apps gets complicated due to the selection of platforms; • Marketing will drive a lot of projects to utilize tablets, but these devices can be used for inspections, surveys, image capture, documentation and training. • The PC era is over.Think of mobile design points. Monday, November 22, 2010
  • 6. Technical limitations • Limited screen size • No keyboard, touch interface not a mouse either • Limited computing power • Limited network availability and bandwidth • Limited content types • Platforms proliferation! • Etc. Monday, November 22, 2010
  • 7. New opportunities • Just use your finger! (ex: Zosh) • Geolocation • Camera • Ex: Barcode scanning • Other sensors? Monday, November 22, 2010
  • 8. Embrace the constraints! • Well defined (but per-platform) UI guidelines • New standard to the rescue: HTML5 • Mobile-specific enhancements to CSS • Local storage (file and DB) • Offline mode Monday, November 22, 2010
  • 9. 2. Technological landscape Mobile apps or mobile web? Monday, November 22, 2010
  • 10. Web Apps • Multi-platform • Depending on HTML5 support by your platform vendor • Easy deployment • But: UI won’t look and feel “native” • Users will know they are in a browser • Limited access to device APIs Monday, November 22, 2010
  • 11. vs. Native Apps • Optimized for a single platform capabilities • Optimal user experience • Access to sensors and specific API • You can try to make money on the App Store (not applicable here) • But: Need platform-specific training, longer development time Monday, November 22, 2010
  • 12. A wide range of options Web Apps Native Apps • Pure HTML (with ad- • Cross-platforms, “web hoc CSS) oriented”, frameworks • HTML enhanced with • Cross-platforms, jQuery “native oriented”, frameworks • One Page or SOFEA web apps • Native apps Monday, November 22, 2010
  • 13. Pure HTML • Classical web application made of pages, with a bit of CSS to make them more readable on a tiny screen • Good enough for mobile web sites • For any kind of web applications, we can do better for a very tiny price Monday, November 22, 2010
  • 14. Example: mobile Wikipedia Monday, November 22, 2010
  • 15. “Enhanced” HTML • HTML content delivered with AJAX requests using “link hijacking” techniques (using usually a bit of jQuery love) • Various CSS and JS tricks to emulate native UI • Libraries: iUI, jQTouch, jQuery Mobile • iUI: already mature, full-featured • jQuery Mobile: recent project, focus on portability Monday, November 22, 2010
  • 16. One page Web apps • Applications built using the SOFEA paradigm (Service-Oriented Front-End Architecture) • Web assets are loaded only once, then all interaction with server takes place as web services (usually JSON RPC) • (Too?) Many frameworks, still immature: GWT, Sencha Touch, SproutCore Mobile, Dojo, etc. Monday, November 22, 2010
  • 17. Example: mobile gmail Monday, November 22, 2010
  • 18. • Embeds your web app into a custom-built web browser • Removes URL and bottom tab bars • Extends JS API with platform-specific API • Easiest transition from web app to native • But you still get a web-like UI • Open source community project Monday, November 22, 2010
  • 19. • Initially similar to PhoneGap • Then refocussed on providing a JS-based API to native UI and platform APIs • 2 supported platforms: iOS and Android, BlackBerry coming up someday • Open source startup, raised 9 M$ of VC money last week Monday, November 22, 2010
  • 20. Native Apps • Develop native APIs using vendor • iOS: Objective-C / Cocoa Touch • Android: “Java” • BlackBerry: another Java (without “”) • Symbian: C++ • Etc. • Main problem: to many platforms, too little time :( Monday, November 22, 2010
  • 21. 3. 1st experience report Monday, November 22, 2010
  • 22. Exercise: write a content- browsing app for DM • Target platform = iPhone • Browse content on a DM server • Show content and metadata • Full text search • Recently updated documents (“timeline”) • Store contextual data on the iPhone Monday, November 22, 2010
  • 24. 3 technologies • Native iPhone app (Objective-C, Cocoa Touch) • Web app using jQuery-Mobile • Portable app using Appcelerator Titanium Mobile Monday, November 22, 2010
  • 25. Objective-C: the results • Took 2 days to learn the basics of Objective- C, Cocoa Touch, XCode • Took about 3 days for a very basic prototype • Additional complexity of supporting CMIS • Unstable, now abandoned • Code still there: hg.nuxeo.org/mobile/iphone Monday, November 22, 2010
  • 27. Objective-C: the Good • Learning a new language is intellectually stimulating :) • This is good old UNIX, you can use open source libraries in C if you need • Small ecosystem of open source libraries around iOS Monday, November 22, 2010
  • 28. Objective-C: the Bad • Learning a new language takes time, learning a new IDE even more, and you don’t want to switch from two IDEs too often • Objective-C feels like I’m back in 1990 (explicit pointer and memory management) • Only for iOS, as you would guess Monday, November 22, 2010
  • 29. jQuery Mobile: the results • Took 1/2 a day to get a basic demo (browsing, search) running • Didn’t implement everything that I expected (see Benjamin’s upcoming demo for a similar approach, using iUI) Monday, November 22, 2010
  • 31. jQuery Mobile: the Good • Very easy to do on the server • Fast turnaround thanks to WebEngine • Easiest deployment option (you don’t need to deploy) Monday, November 22, 2010
  • 32. jQuery Mobile: the Bad • The forward/back buttons are in the way, but you have to use them after looking at a piece of content • No easy way to develop a tab bar as I had designed • Not sure it will scale up to more sophisticated applications • Might use PhoneGap to address some of these points Monday, November 22, 2010
  • 33. Appcelerator: the results • Took about 1 day to learn how to use the platform • Took about 3 days to create a reasonably good looking, alpha-quality app • 90% of the time spent on front-end, 10% on back end (JSON REST API with WebEngine) • Will probably take 2 or 3 more days to make it App Store ready Monday, November 22, 2010
  • 36. Appcelerator: the Good • JavaScript much easier to learn than Objective-C • Specially when you already know JavaScript ;) (or even Java) • Productivity 2x to 5x higher that with native Cocoa-Touch • Multi-platform promise seems to work Monday, November 22, 2010
  • 37. Appcelerator: the bad • “IDE” is quirky and unstable • And not really an IDE actually! • No debugger • Another layer of indirection • Apple doesn’t want you to use it (resolved!) • As with native apps, provisioning is a PITA Monday, November 22, 2010
  • 38. Conclusion of the experiment Monday, November 22, 2010
  • 39. Native (Obj-C) • Not worth of your time, unless you: • Are (or have) a dedicated iOS developer • Want to compete on design to make $$ on the App store • Want to be the first to leverage newly introduced iOS features Monday, November 22, 2010
  • 40. Mobile HTML • The fastest way to get a simple application up and running • The most multi-platform approach • Doesn’t provide users with a 100% native look and specially feel • Doesn’t give you access to all the local features of the device • Can be complemented with PhoneGap Monday, November 22, 2010
  • 41. Appcelerator • Gives you native look and feel and platform access, with an original but familiar API, at the price of slightly longer development time than HTML • Supports 2 major platforms (iOS and Android), and soon Blackberry • Not 100% bug-free, will always lag behind native platform Monday, November 22, 2010
  • 42. 4. 2nd experience report Benjamin Jalon Monday, November 22, 2010
  • 43. Demonstration 43 Monday, November 22, 2010
  • 44. Game rules • 2 weeks available • A real job during the day • A family life • => 1 free hour per day • No iUI knowledge • JavaScript Newbie • Goal: Create a web application for Mobile 44 Monday, November 22, 2010
  • 45. The Result 45 Monday, November 22, 2010
  • 46. And on other devices 46 Monday, November 22, 2010
  • 47. iUI • iUI • JavaScript / CSS framework • Extends of HTML standard • Override links and forms with AJAX • Update the page with smooth transition • Don’t need to be a web designer • Don’t need to be a JavaScript ninja 47 Monday, November 22, 2010
  • 48. In the beginning: HTML • CSS and JavaScript references: let’s rock ! <html> <head> <title>Nuxeo DM</title> <link rel="stylesheet" type="text/css" href="/nuxeo/iui/iui.css"/> <link rel="stylesheet" type="text/css" href="/nuxeo/iui/t/default/default-theme.css"/> <script src="/nuxeo/iui/iui.js"></script> </head> <body> <div id="toolBar" class="toolbar"> <h1 id="pageTitle"></h1> <a id="backButton" class="button" href="#"></a> Toolbar definition <a id="help" class="button" href="#about">?</a> </div> <ul id="home" title="Home" selected="true"> <li><a href="${basePath}/mobile/navigation/root">Navigation</a></li> Content definition <li><a href="${basePath}/mobile/search">Saved Search</a></li> <li><a href="${basePath}/mobile/workflow">Tasks</a></li> </ul> </body> 48 Monday, November 22, 2010
  • 49. Page definition / simple navigation • Create a new item under the body • Title argument is used into the toolbar <div id="test" title="Test"> HELLO </div> • An item with href value is #idPage, where idPage is the id of the root of your page <div id="main" title="Main Page"> <a href=”#test”>Navigate to Test Page</a> </div> 49 Monday, November 22, 2010
  • 50. Having a page as iPhone rendering • For a list with links <ul><li><a> • For grouped information <div id="pageId" title="Details" class="panel"> <h1>Sub-Title1</h1> <fieldset> <div class="row"> <label>label1</label> <span>value1</span> </div> <div class="row"> <label>label2</label> <span>value2</span> </div> etc... </fieldset> <h1>Sub-Title2</h1> <fieldset> <div class="row"> <label>label2</label> etc... 50 Monday, November 22, 2010
  • 51. Other linking • linking to resources not in the DOM <a href="nuxeo/mobile/navigation/root">Navigation</a> • resource is added at the end of the body, the last page declared is displayed • linking to the next page <li><a href="nuxeo/mobile/navigation/page" target="_replace">Next Documents...</a></li> • parent of the item is replaced by the result of the request 51 Monday, November 22, 2010
  • 52. Conclusion • First connexion needs: • 15KB for CSS • 7KB for images • 50KB for scripts • And document.... 2KB • For others pages between 210Bytes and 5KB • We can do better • Compacting JavaScripts • Refactoring the nx.js script 52 Monday, November 22, 2010
  • 53. Conclusion • iUI development is really powerful and easy to understand but means many treatments are client side • With WebEngine, the modification/deployment/test cycle is really fast • We can create over this web application an hybrid Application • Using the camera library, manipulate downloaded files, etc... 53 Monday, November 22, 2010
  • 54. Just one more thing... 54 Monday, November 22, 2010
  • 55. WebEngine Mobile project • Automatic redirection to Mobile App • Repository Navigation • Document Modification • File download • Push your geolocation into your docs • Reuse your faceted search • Accept/Deny your tasks • Delete a document 55 Monday, November 22, 2010
  • 56. WebEngine Mobile project 56 Monday, November 22, 2010
  • 57. WebEngine Mobile project 0$ 56 Monday, November 22, 2010
  • 58. WebEngine Mobile project 0$ Google code: https://code.google.com/p/nuxeo-webengine-mobile/ Soon released and delivered through Nuxeo Marketplace 56 Monday, November 22, 2010
  • 59. 5. Future Work Monday, November 22, 2010
  • 60. Generic document browsing App • New web mobile browsing module will be finished in December and put on the Nuxeo Marketplace • Companion iOS App to be submitted on the App Store simultaneously (same for Android) • Work on advanced native App will continue to provide better disconnected mode experience Monday, November 22, 2010
  • 61. Business-specific apps • We’re ready to work with our customers and partners on business-specific apps • Choice between web app and native app is up to the customer, and will depend on features, devices used, etc. • Will leverage our business API (Content Automation) + develop a specific framework to ease development Monday, November 22, 2010
  • 62. More info • Watch http://blogs.nuxeo.com/ Monday, November 22, 2010