SlideShare a Scribd company logo
1 of 25
ENHANCING SHAREPOINT 2010
      FOR THE IPAD




        January 7, 2012
AGENDA

           •   Device Orientation Detection
                • CSS Approach
                • Scripted Approach
           •   Branding for Device Orientation Demo
           •   Cross-Platform Video
                • HTML5 Video
                • Security Considerations




1/7/2012                 Enhancing SharePoint 2010 for the iPad   3
Core Concepts

           DEVICE ORIENTATION DETECTION


1/7/2012               Enhancing SharePoint 2010 for the iPad   4
SHAREPOINT 2010 COMPATIBILITY

           •   SharePoint 2010 is cross browser compatible out of the box
           •   Fully Supported:                               IE7 (32bit), IE8 (32bit), IE9 (32bit)
           •   Supported w/ Limitations:                      IE7 (64bit), IE8 (64bit), IE9 (64bit),
                                                              Firefox 3.6 (Win & Non-Win),
                                             Safari 4.04 (non-Win)
           •              Safari iPad         !=
               Is your custom markup cross browser compatible? iPod
                                         Safari iPhone      Safari      !=




1/7/2012                 Enhancing SharePoint 2010 for the iPad               5
DEVICE ORIENTATION DETECTION

           •   Consumer adoption leading to growth in the business sector
           •   New ability to touch and interact with business data
           •   Increased user experience
           •   Efficiently manage limited screen real estate




1/7/2012                 Enhancing SharePoint 2010 for the iPad   6
Device Orientation Detection

           CSS APPROACH


1/7/2012                 Enhancing SharePoint 2010 for the iPad   7
CSS APPROACH

           •   Utilizes orientation aware Cascading Style Sheets (CSS)
           •   Little overhead, no code or script required
           •   Detects Portrait vs. Landscape
                • Browser determines ratio of browser width vs. height
           •   Use to display, hide, or change size of elements for specific
               orientations
           •   Ideal for integrating orientation detection with site-wide branding




1/7/2012                  Enhancing SharePoint 2010 for the iPad   8
SUPPORTED ORIENTATIONS


                          Portrait                       Landscape




1/7/2012        Enhancing SharePoint 2010 for the iPad     9
ATTACHING STYLE SHEETS

           •    Standard “link” tag with media attribute
           <link rel=“stylesheet” media=“all and (orientation:portrait)” href=“portrait.css” />
           <link rel=“stylesheet” media=“all and (orientation:landscape)” href=“landscape.css” />



           •    Cross-Browser Support
           <!--[if !IE]><! --> All style sheets should be attached after Core.css
                                          and custom CSS registrations.
              <link rel=“stylesheet” media=“all and (orientation:portrait)” href=“portrait.css” />
               <link rel=“stylesheet” media=“all and (orientation:landscape)” href=“landscape.css” />
           <!--<![endif]-->
           <!—[if IE]>
               <link rel=“stylesheet” media=“all and (orientation:landscape)” href=“landscape.css” />
           <![endif]-->




1/7/2012                      Enhancing SharePoint 2010 for the iPad          10
EXAMPLES

           •   Hide Quick Launch when                                  •   Hide any content with the
               device is in Portrait orientation                           “notPortrait” class; similar to
                                                                           ues of “s4-notdlg”.


           Portrait.css                                                Portrait.css
           #s4-leftpanel {                                             .notPortrait {
             display: none;                                              display: none;
           }                                                           }

           .s4-ca {
              margin-left: 0px;
           }




1/7/2012                      Enhancing SharePoint 2010 for the iPad                  11
Device Orientation Detection

           SCRIPTED APPROACH


1/7/2012                 Enhancing SharePoint 2010 for the iPad   12
SCRIPTED APPROACH

           •   Utilizes client-side script (Javascript/jQuery)
           •   Scripted specifically for iPad
           •   Identifies numerical orientation value
                • Orientation value returned by device hardware/accelerometer
           •   Uses:
                • Bind functions to orientation changes
                • Animate element changes
                • Make changes to the Document Object Model (DOM)




1/7/2012                  Enhancing SharePoint 2010 for the iPad   13
SUPPORTED ORIENTATIONS


            -90°                        0°                  90°   180°




1/7/2012           Enhancing SharePoint 2010 for the iPad    14
SCRIPTING ORIENTATION DETECTION
           <script type=“text/javascript”>
             function ProcessOrientation(currentOrientation) { // Handle orientation processing
                 if (currentOrientation == 0 || currentOrientation == 180) {
                     // Is Portrait
                 } else if (currentOrientation == 90 || currentOrientation == -90) {
                     // Is Landscape
                 }
             }
             var isiPad = navigator.userAgent.match(/iPad/i) != null;
             if (isiPad) { // Process only if true
                 ProcessOrientation(window.orientation); // Process initial orientation
                 window.onorientationchange = function() { // Process when orientation changes
                     ProcessOrientation(window.orientation);
                 }
             }
           </script>


1/7/2012                          Enhancing SharePoint 2010 for the iPad          15
EXAMPLES

           •   Hide Quick Launch when                                  •   Hide any content with the
               device is in Portrait orientation                           “notPortrait” class; similar to
                                                                           ues of “s4-notdlg”.


           jQuery                                                      jQuery
           if (Portrait) {                                             if (Portrait) {
               $(“#s4-leftpanel”).hide();                                  $(“.notPortrait”).hide();
               $(“.s4-ca”).css(“marginLeft”, 0);                       }
           }                                                           if (Landscape) {
           if (Landscape) {                                                $(“.notPortrait”).show();
               $(“#s4-leftpanel”).show();                              }
               $(“.s4-ca”).css(“marginLeft”, “150px”);
           }




1/7/2012                      Enhancing SharePoint 2010 for the iPad                16
ADVANCED EXAMPLES

           •   Hide Quick Launch with                                   •   Move contents of one
               animation when device is in                                  container to another, and back
               Portrait orientation                                         again
           jQuery                                                       jQuery
           if (Portrait) {                                              if (Portrait) {
               $(“#s4-leftpanel”).animate(                                  $(“#C1”).clone().appendTo(“#C2”);
                  [“left”: “=-150px”], “slow”                               $(“#C1”).html(“”);
               );                                                       }
               $(“.s4-ca”).animate(                                     if (Landscape) {
                  [“marginLeft”: “0px”], “slow”                             $(“#C2”).clone().appendTo(“#C1”);
               );                                                           $(“#C2”).html(“”);
           }                                                            }
           if (Landscape) {
               $(“#s4-leftpanel”).animate(
                  [“left”: “=+150px”], “slow”
               );
               $(“.s4-ca”).animate(
                  [“marginLeft”: “150px”], “slow”
               );
           }

1/7/2012                       Enhancing SharePoint 2010 for the iPad               17
ADVANCED EXAMPLES

           •    Hide Quick Launch with                                   •   Move contents of one
                animationSales
                            when device is in                                container to another, and back
                Portrait orientation                                         again
                                                                              Chart Title             Sales
                                             1st Qtr
           jQuery                            2nd Qtr
                                                                         jQuery
                                                                         jQuery
                                             3rd Qtr
           if (Portrait) {                                               if (Portrait) {
                                                                          if (Portrait) {
               $(“#s4-leftpanel”).animate( Qtr   4th
                                                                             $(“#C1”).clone().appendTo(“#C2”); Qtr
                                                                                                           1st
                                                                             $(“#C1”).clone().appendTo(“#C2”);
                  [“left”: “=-150px”], “slow”                                $(“#C1”).html(“”);
                                                                             $(“#C1”).html(“”);            2nd Qtr

               );                                                        }}                                3rd Qtr
                               Chart Title                                if (Landscape) {
               $(“.s4-ca”).animate(                                      if (Landscape) {                  4th Qtr
                                                                             $(“#C2”).clone().appendTo(“#C1”);
                  [“marginLeft”: “0px”], “slow”                              $(“#C2”).clone().appendTo(“#C1”);
                                                                             $(“#C2”).html(“”);
               );                                                         } $(“#C2”).html(“”);
                                                                          Cat 1 Cat 2 Cat 3 Cat 4

           }                                                             }
           if (Landscape) {
               $(“#s4-leftpanel”).animate(
                      Cat 1  Cat 2   Cat 3 Cat 4

                  [“left”: “=+150px”], “slow”
               );
               $(“.s4-ca”).animate(
                  [“marginLeft”: “150px”], “slow”
               );
           }

1/7/2012                        Enhancing SharePoint 2010 for the iPad                  18
Demonstration

           BRANDING WITH DEVICE
           ORIENTATION

1/7/2012               Enhancing SharePoint 2010 for the iPad   19
Cross-Platform Video

           HTML5


1/7/2012                Enhancing SharePoint 2010 for the iPad   20
HTML5 VIDEO

           •   No third party plugin support on the iPad, only option for embedded
               video is use of HTML5
           •   HTML5 standard dictates support for embedded video with <video>
               tag
           •   HTML5 does NOT standardize video format
                                    IE               Firefox       Safari   Chrom    Opera   iOS
                                                                            e
       Ogg                                           3.5+        ‡        5.0+    10.5+ 
       (Theora/Vorbis)
       H.264/AAC/MP4                                              3.0+    5.0+           3.0+
                                 9.0†                ‡           6.0+  10.6+ 
       WebM will render and video format supported by QuickTime; support for H.264/AACMP4 is
       ‡ Safari
       shipped with QuickTime while other formats require additional client-side plugins.
       † WebM video format available in IE9 with downloaded codec.




1/7/2012                  Enhancing SharePoint 2010 for the iPad             21
HTML5 VIDEO TAG
           <video width=“640” height=“360” controls>
             <!-- MP4 file must be first for iPad compatibility -->
             <source src=“video.mp4” type=“video/mp4” /> <!-- Safari/iOS -->
             <source src=“video.ogv” type=“video/ogg” /> <!-- Firefox/Opera/Chrome10 -->
             <!-- fallback to Flash -->
             <object width=“640” height=“360” type=“application/x-shockwave-flash”
                  data=“flash.swf”>
                <param name=“movie” value=“flash.swf” />
                <param name=“flashvars” value=“controlbar=over&amp;image=poster.jpg
                  &amp;file=video.mp4” />
                <!-- fallback image -->
                <img src=“video.jpg” width=“640” height=“360” alt=“title” title=“Can’t Play Video” />
             </object>
           </video>


1/7/2012                     Enhancing SharePoint 2010 for the iPad        22
SECURITY CONSIDERATIONS

           •   iPad passes embedded video requests to QuickTime for rendering
           •   QuickTime lacks support for any proxy or authentication methods, and
               iPads cannot join a domain
           •   Video files must be anonymously accessible




1/7/2012                 Enhancing SharePoint 2010 for the iPad   23
QUESTIONS?
MICHAEL GREENE


@webdes03   mike-greene.com

More Related Content

Similar to Enhancing SharePoint 2010 for the iPad (SPSVB 2012)

Fake it 'til you make it
Fake it 'til you make itFake it 'til you make it
Fake it 'til you make itJonathan Snook
 
Utilizing jQuery in SharePoint: Get More Done Faster
Utilizing jQuery in SharePoint: Get More Done FasterUtilizing jQuery in SharePoint: Get More Done Faster
Utilizing jQuery in SharePoint: Get More Done FasterMark Rackley
 
SharePoint Development 101
SharePoint Development 101SharePoint Development 101
SharePoint Development 101Greg Hurlman
 
2013 URISA Track, Kickstarter for JavaScript Web and Mobile GIS Development b...
2013 URISA Track, Kickstarter for JavaScript Web and Mobile GIS Development b...2013 URISA Track, Kickstarter for JavaScript Web and Mobile GIS Development b...
2013 URISA Track, Kickstarter for JavaScript Web and Mobile GIS Development b...GIS in the Rockies
 
Cordova training : Day 5 - UI development using Framework7
Cordova training : Day 5 - UI development using Framework7Cordova training : Day 5 - UI development using Framework7
Cordova training : Day 5 - UI development using Framework7Binu Paul
 
Que hay de nuevo en Visual Studio 2013 y ASP.NET 5.1
Que hay de nuevo en Visual Studio 2013 y ASP.NET 5.1Que hay de nuevo en Visual Studio 2013 y ASP.NET 5.1
Que hay de nuevo en Visual Studio 2013 y ASP.NET 5.1Rodolfo Finochietti
 
Html 5 mobile - nitty gritty
Html 5 mobile - nitty grittyHtml 5 mobile - nitty gritty
Html 5 mobile - nitty grittyMario Noble
 
Extending Spring MVC with Spring Mobile and JavaScript
Extending Spring MVC with Spring Mobile and JavaScriptExtending Spring MVC with Spring Mobile and JavaScript
Extending Spring MVC with Spring Mobile and JavaScriptRoy Clarkson
 
iOS 8 and iPhone 6 for web developers and designers
iOS 8 and iPhone 6 for web developers and designersiOS 8 and iPhone 6 for web developers and designers
iOS 8 and iPhone 6 for web developers and designersZhi Zhong
 
C3 웹기술로만드는모바일앱
C3 웹기술로만드는모바일앱C3 웹기술로만드는모바일앱
C3 웹기술로만드는모바일앱NAVER D2
 
phonegap with angular js for freshers
phonegap with angular js for freshers    phonegap with angular js for freshers
phonegap with angular js for freshers dssprakash
 
Dojo mobile web5-2013
Dojo mobile web5-2013Dojo mobile web5-2013
Dojo mobile web5-2013cjolif
 
Offline strategies for HTML5 web applications - pfCongres2012
Offline strategies for HTML5 web applications - pfCongres2012Offline strategies for HTML5 web applications - pfCongres2012
Offline strategies for HTML5 web applications - pfCongres2012Stephan Hochdörfer
 
Design Tips & Development with jQuery Mobile and PhoneGap
Design Tips & Development with jQuery Mobile and PhoneGapDesign Tips & Development with jQuery Mobile and PhoneGap
Design Tips & Development with jQuery Mobile and PhoneGapGO Ohtani
 
SharePoint Fest Seattle - SharePoint Framework, Angular & Azure Functions
SharePoint Fest Seattle - SharePoint Framework, Angular & Azure FunctionsSharePoint Fest Seattle - SharePoint Framework, Angular & Azure Functions
SharePoint Fest Seattle - SharePoint Framework, Angular & Azure FunctionsSébastien Levert
 
Cm i padwebdev_lunch_learn
Cm i padwebdev_lunch_learnCm i padwebdev_lunch_learn
Cm i padwebdev_lunch_learnCritical Mass
 
Offline strategies for HTML5 web applications - IPC12
Offline strategies for HTML5 web applications - IPC12Offline strategies for HTML5 web applications - IPC12
Offline strategies for HTML5 web applications - IPC12Stephan Hochdörfer
 

Similar to Enhancing SharePoint 2010 for the iPad (SPSVB 2012) (20)

Fake it 'til you make it
Fake it 'til you make itFake it 'til you make it
Fake it 'til you make it
 
Web app
Web appWeb app
Web app
 
Utilizing jQuery in SharePoint: Get More Done Faster
Utilizing jQuery in SharePoint: Get More Done FasterUtilizing jQuery in SharePoint: Get More Done Faster
Utilizing jQuery in SharePoint: Get More Done Faster
 
SharePoint Development 101
SharePoint Development 101SharePoint Development 101
SharePoint Development 101
 
2013 URISA Track, Kickstarter for JavaScript Web and Mobile GIS Development b...
2013 URISA Track, Kickstarter for JavaScript Web and Mobile GIS Development b...2013 URISA Track, Kickstarter for JavaScript Web and Mobile GIS Development b...
2013 URISA Track, Kickstarter for JavaScript Web and Mobile GIS Development b...
 
Cordova training : Day 5 - UI development using Framework7
Cordova training : Day 5 - UI development using Framework7Cordova training : Day 5 - UI development using Framework7
Cordova training : Day 5 - UI development using Framework7
 
Que hay de nuevo en Visual Studio 2013 y ASP.NET 5.1
Que hay de nuevo en Visual Studio 2013 y ASP.NET 5.1Que hay de nuevo en Visual Studio 2013 y ASP.NET 5.1
Que hay de nuevo en Visual Studio 2013 y ASP.NET 5.1
 
Html 5 mobile - nitty gritty
Html 5 mobile - nitty grittyHtml 5 mobile - nitty gritty
Html 5 mobile - nitty gritty
 
Extending Spring MVC with Spring Mobile and JavaScript
Extending Spring MVC with Spring Mobile and JavaScriptExtending Spring MVC with Spring Mobile and JavaScript
Extending Spring MVC with Spring Mobile and JavaScript
 
iOS 8 and iPhone 6 for web developers and designers
iOS 8 and iPhone 6 for web developers and designersiOS 8 and iPhone 6 for web developers and designers
iOS 8 and iPhone 6 for web developers and designers
 
C3 웹기술로만드는모바일앱
C3 웹기술로만드는모바일앱C3 웹기술로만드는모바일앱
C3 웹기술로만드는모바일앱
 
phonegap with angular js for freshers
phonegap with angular js for freshers    phonegap with angular js for freshers
phonegap with angular js for freshers
 
Dojo mobile web5-2013
Dojo mobile web5-2013Dojo mobile web5-2013
Dojo mobile web5-2013
 
Offline strategies for HTML5 web applications - pfCongres2012
Offline strategies for HTML5 web applications - pfCongres2012Offline strategies for HTML5 web applications - pfCongres2012
Offline strategies for HTML5 web applications - pfCongres2012
 
Design Tips & Development with jQuery Mobile and PhoneGap
Design Tips & Development with jQuery Mobile and PhoneGapDesign Tips & Development with jQuery Mobile and PhoneGap
Design Tips & Development with jQuery Mobile and PhoneGap
 
SharePoint Fest Seattle - SharePoint Framework, Angular & Azure Functions
SharePoint Fest Seattle - SharePoint Framework, Angular & Azure FunctionsSharePoint Fest Seattle - SharePoint Framework, Angular & Azure Functions
SharePoint Fest Seattle - SharePoint Framework, Angular & Azure Functions
 
Cm i padwebdev_lunch_learn
Cm i padwebdev_lunch_learnCm i padwebdev_lunch_learn
Cm i padwebdev_lunch_learn
 
Responsive SharePoint
Responsive SharePointResponsive SharePoint
Responsive SharePoint
 
Offline strategies for HTML5 web applications - IPC12
Offline strategies for HTML5 web applications - IPC12Offline strategies for HTML5 web applications - IPC12
Offline strategies for HTML5 web applications - IPC12
 
Spsmi13 charts
Spsmi13 chartsSpsmi13 charts
Spsmi13 charts
 

More from Michael Greene

Anatomy of an Intranet (Triangle SharePoint User Group) January 2016
Anatomy of an Intranet (Triangle SharePoint User Group) January 2016Anatomy of an Intranet (Triangle SharePoint User Group) January 2016
Anatomy of an Intranet (Triangle SharePoint User Group) January 2016Michael Greene
 
Anatomy of an Intranet (Triangle SharePoint User Group) October 2016
Anatomy of an Intranet (Triangle SharePoint User Group) October 2016Anatomy of an Intranet (Triangle SharePoint User Group) October 2016
Anatomy of an Intranet (Triangle SharePoint User Group) October 2016Michael Greene
 
PowerShell Introduction to Administering SharePoint On-Premises & O365
PowerShell Introduction to Administering SharePoint On-Premises & O365PowerShell Introduction to Administering SharePoint On-Premises & O365
PowerShell Introduction to Administering SharePoint On-Premises & O365Michael Greene
 
Anatomy of an Intranet (SPSATL 2014)
Anatomy of an Intranet (SPSATL 2014)Anatomy of an Intranet (SPSATL 2014)
Anatomy of an Intranet (SPSATL 2014)Michael Greene
 
ATLSPUG - SharePoint Branding Best Bets
ATLSPUG - SharePoint Branding Best BetsATLSPUG - SharePoint Branding Best Bets
ATLSPUG - SharePoint Branding Best BetsMichael Greene
 
Making Life Easier with PowerShell (SPSATL 2012)
Making Life Easier with PowerShell (SPSATL 2012)Making Life Easier with PowerShell (SPSATL 2012)
Making Life Easier with PowerShell (SPSATL 2012)Michael Greene
 
Making Life Easier with PowerShell (SPSVB 2012)
Making Life Easier with PowerShell (SPSVB 2012)Making Life Easier with PowerShell (SPSVB 2012)
Making Life Easier with PowerShell (SPSVB 2012)Michael Greene
 
Making Life Easier with PowerShell - SPSRIC
Making Life Easier with PowerShell - SPSRICMaking Life Easier with PowerShell - SPSRIC
Making Life Easier with PowerShell - SPSRICMichael Greene
 

More from Michael Greene (8)

Anatomy of an Intranet (Triangle SharePoint User Group) January 2016
Anatomy of an Intranet (Triangle SharePoint User Group) January 2016Anatomy of an Intranet (Triangle SharePoint User Group) January 2016
Anatomy of an Intranet (Triangle SharePoint User Group) January 2016
 
Anatomy of an Intranet (Triangle SharePoint User Group) October 2016
Anatomy of an Intranet (Triangle SharePoint User Group) October 2016Anatomy of an Intranet (Triangle SharePoint User Group) October 2016
Anatomy of an Intranet (Triangle SharePoint User Group) October 2016
 
PowerShell Introduction to Administering SharePoint On-Premises & O365
PowerShell Introduction to Administering SharePoint On-Premises & O365PowerShell Introduction to Administering SharePoint On-Premises & O365
PowerShell Introduction to Administering SharePoint On-Premises & O365
 
Anatomy of an Intranet (SPSATL 2014)
Anatomy of an Intranet (SPSATL 2014)Anatomy of an Intranet (SPSATL 2014)
Anatomy of an Intranet (SPSATL 2014)
 
ATLSPUG - SharePoint Branding Best Bets
ATLSPUG - SharePoint Branding Best BetsATLSPUG - SharePoint Branding Best Bets
ATLSPUG - SharePoint Branding Best Bets
 
Making Life Easier with PowerShell (SPSATL 2012)
Making Life Easier with PowerShell (SPSATL 2012)Making Life Easier with PowerShell (SPSATL 2012)
Making Life Easier with PowerShell (SPSATL 2012)
 
Making Life Easier with PowerShell (SPSVB 2012)
Making Life Easier with PowerShell (SPSVB 2012)Making Life Easier with PowerShell (SPSVB 2012)
Making Life Easier with PowerShell (SPSVB 2012)
 
Making Life Easier with PowerShell - SPSRIC
Making Life Easier with PowerShell - SPSRICMaking Life Easier with PowerShell - SPSRIC
Making Life Easier with PowerShell - SPSRIC
 

Recently uploaded

Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Wonjun Hwang
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024Scott Keck-Warren
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clashcharlottematthew16
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitecturePixlogix Infotech
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebUiPathCommunity
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationSafe Software
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxhariprasad279825
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 3652toLead Limited
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 

Recently uploaded (20)

Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clash
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC Architecture
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio Web
 
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptxE-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptx
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food Manufacturing
 
Hot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort Service
Hot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort ServiceHot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort Service
Hot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort Service
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 

Enhancing SharePoint 2010 for the iPad (SPSVB 2012)

  • 1. ENHANCING SHAREPOINT 2010 FOR THE IPAD January 7, 2012
  • 2.
  • 3. AGENDA • Device Orientation Detection • CSS Approach • Scripted Approach • Branding for Device Orientation Demo • Cross-Platform Video • HTML5 Video • Security Considerations 1/7/2012 Enhancing SharePoint 2010 for the iPad 3
  • 4. Core Concepts DEVICE ORIENTATION DETECTION 1/7/2012 Enhancing SharePoint 2010 for the iPad 4
  • 5. SHAREPOINT 2010 COMPATIBILITY • SharePoint 2010 is cross browser compatible out of the box • Fully Supported: IE7 (32bit), IE8 (32bit), IE9 (32bit) • Supported w/ Limitations: IE7 (64bit), IE8 (64bit), IE9 (64bit), Firefox 3.6 (Win & Non-Win), Safari 4.04 (non-Win) • Safari iPad != Is your custom markup cross browser compatible? iPod Safari iPhone Safari != 1/7/2012 Enhancing SharePoint 2010 for the iPad 5
  • 6. DEVICE ORIENTATION DETECTION • Consumer adoption leading to growth in the business sector • New ability to touch and interact with business data • Increased user experience • Efficiently manage limited screen real estate 1/7/2012 Enhancing SharePoint 2010 for the iPad 6
  • 7. Device Orientation Detection CSS APPROACH 1/7/2012 Enhancing SharePoint 2010 for the iPad 7
  • 8. CSS APPROACH • Utilizes orientation aware Cascading Style Sheets (CSS) • Little overhead, no code or script required • Detects Portrait vs. Landscape • Browser determines ratio of browser width vs. height • Use to display, hide, or change size of elements for specific orientations • Ideal for integrating orientation detection with site-wide branding 1/7/2012 Enhancing SharePoint 2010 for the iPad 8
  • 9. SUPPORTED ORIENTATIONS Portrait Landscape 1/7/2012 Enhancing SharePoint 2010 for the iPad 9
  • 10. ATTACHING STYLE SHEETS • Standard “link” tag with media attribute <link rel=“stylesheet” media=“all and (orientation:portrait)” href=“portrait.css” /> <link rel=“stylesheet” media=“all and (orientation:landscape)” href=“landscape.css” /> • Cross-Browser Support <!--[if !IE]><! --> All style sheets should be attached after Core.css and custom CSS registrations. <link rel=“stylesheet” media=“all and (orientation:portrait)” href=“portrait.css” /> <link rel=“stylesheet” media=“all and (orientation:landscape)” href=“landscape.css” /> <!--<![endif]--> <!—[if IE]> <link rel=“stylesheet” media=“all and (orientation:landscape)” href=“landscape.css” /> <![endif]--> 1/7/2012 Enhancing SharePoint 2010 for the iPad 10
  • 11. EXAMPLES • Hide Quick Launch when • Hide any content with the device is in Portrait orientation “notPortrait” class; similar to ues of “s4-notdlg”. Portrait.css Portrait.css #s4-leftpanel { .notPortrait { display: none; display: none; } } .s4-ca { margin-left: 0px; } 1/7/2012 Enhancing SharePoint 2010 for the iPad 11
  • 12. Device Orientation Detection SCRIPTED APPROACH 1/7/2012 Enhancing SharePoint 2010 for the iPad 12
  • 13. SCRIPTED APPROACH • Utilizes client-side script (Javascript/jQuery) • Scripted specifically for iPad • Identifies numerical orientation value • Orientation value returned by device hardware/accelerometer • Uses: • Bind functions to orientation changes • Animate element changes • Make changes to the Document Object Model (DOM) 1/7/2012 Enhancing SharePoint 2010 for the iPad 13
  • 14. SUPPORTED ORIENTATIONS -90° 0° 90° 180° 1/7/2012 Enhancing SharePoint 2010 for the iPad 14
  • 15. SCRIPTING ORIENTATION DETECTION <script type=“text/javascript”> function ProcessOrientation(currentOrientation) { // Handle orientation processing if (currentOrientation == 0 || currentOrientation == 180) { // Is Portrait } else if (currentOrientation == 90 || currentOrientation == -90) { // Is Landscape } } var isiPad = navigator.userAgent.match(/iPad/i) != null; if (isiPad) { // Process only if true ProcessOrientation(window.orientation); // Process initial orientation window.onorientationchange = function() { // Process when orientation changes ProcessOrientation(window.orientation); } } </script> 1/7/2012 Enhancing SharePoint 2010 for the iPad 15
  • 16. EXAMPLES • Hide Quick Launch when • Hide any content with the device is in Portrait orientation “notPortrait” class; similar to ues of “s4-notdlg”. jQuery jQuery if (Portrait) { if (Portrait) { $(“#s4-leftpanel”).hide(); $(“.notPortrait”).hide(); $(“.s4-ca”).css(“marginLeft”, 0); } } if (Landscape) { if (Landscape) { $(“.notPortrait”).show(); $(“#s4-leftpanel”).show(); } $(“.s4-ca”).css(“marginLeft”, “150px”); } 1/7/2012 Enhancing SharePoint 2010 for the iPad 16
  • 17. ADVANCED EXAMPLES • Hide Quick Launch with • Move contents of one animation when device is in container to another, and back Portrait orientation again jQuery jQuery if (Portrait) { if (Portrait) { $(“#s4-leftpanel”).animate( $(“#C1”).clone().appendTo(“#C2”); [“left”: “=-150px”], “slow” $(“#C1”).html(“”); ); } $(“.s4-ca”).animate( if (Landscape) { [“marginLeft”: “0px”], “slow” $(“#C2”).clone().appendTo(“#C1”); ); $(“#C2”).html(“”); } } if (Landscape) { $(“#s4-leftpanel”).animate( [“left”: “=+150px”], “slow” ); $(“.s4-ca”).animate( [“marginLeft”: “150px”], “slow” ); } 1/7/2012 Enhancing SharePoint 2010 for the iPad 17
  • 18. ADVANCED EXAMPLES • Hide Quick Launch with • Move contents of one animationSales when device is in container to another, and back Portrait orientation again Chart Title Sales 1st Qtr jQuery 2nd Qtr jQuery jQuery 3rd Qtr if (Portrait) { if (Portrait) { if (Portrait) { $(“#s4-leftpanel”).animate( Qtr 4th $(“#C1”).clone().appendTo(“#C2”); Qtr 1st $(“#C1”).clone().appendTo(“#C2”); [“left”: “=-150px”], “slow” $(“#C1”).html(“”); $(“#C1”).html(“”); 2nd Qtr ); }} 3rd Qtr Chart Title if (Landscape) { $(“.s4-ca”).animate( if (Landscape) { 4th Qtr $(“#C2”).clone().appendTo(“#C1”); [“marginLeft”: “0px”], “slow” $(“#C2”).clone().appendTo(“#C1”); $(“#C2”).html(“”); ); } $(“#C2”).html(“”); Cat 1 Cat 2 Cat 3 Cat 4 } } if (Landscape) { $(“#s4-leftpanel”).animate( Cat 1 Cat 2 Cat 3 Cat 4 [“left”: “=+150px”], “slow” ); $(“.s4-ca”).animate( [“marginLeft”: “150px”], “slow” ); } 1/7/2012 Enhancing SharePoint 2010 for the iPad 18
  • 19. Demonstration BRANDING WITH DEVICE ORIENTATION 1/7/2012 Enhancing SharePoint 2010 for the iPad 19
  • 20. Cross-Platform Video HTML5 1/7/2012 Enhancing SharePoint 2010 for the iPad 20
  • 21. HTML5 VIDEO • No third party plugin support on the iPad, only option for embedded video is use of HTML5 • HTML5 standard dictates support for embedded video with <video> tag • HTML5 does NOT standardize video format IE Firefox Safari Chrom Opera iOS e Ogg   3.5+ ‡  5.0+  10.5+  (Theora/Vorbis) H.264/AAC/MP4    3.0+  5.0+   3.0+  9.0†  ‡  6.0+  10.6+  WebM will render and video format supported by QuickTime; support for H.264/AACMP4 is ‡ Safari shipped with QuickTime while other formats require additional client-side plugins. † WebM video format available in IE9 with downloaded codec. 1/7/2012 Enhancing SharePoint 2010 for the iPad 21
  • 22. HTML5 VIDEO TAG <video width=“640” height=“360” controls> <!-- MP4 file must be first for iPad compatibility --> <source src=“video.mp4” type=“video/mp4” /> <!-- Safari/iOS --> <source src=“video.ogv” type=“video/ogg” /> <!-- Firefox/Opera/Chrome10 --> <!-- fallback to Flash --> <object width=“640” height=“360” type=“application/x-shockwave-flash” data=“flash.swf”> <param name=“movie” value=“flash.swf” /> <param name=“flashvars” value=“controlbar=over&amp;image=poster.jpg &amp;file=video.mp4” /> <!-- fallback image --> <img src=“video.jpg” width=“640” height=“360” alt=“title” title=“Can’t Play Video” /> </object> </video> 1/7/2012 Enhancing SharePoint 2010 for the iPad 22
  • 23. SECURITY CONSIDERATIONS • iPad passes embedded video requests to QuickTime for rendering • QuickTime lacks support for any proxy or authentication methods, and iPads cannot join a domain • Video files must be anonymously accessible 1/7/2012 Enhancing SharePoint 2010 for the iPad 23
  • 25. MICHAEL GREENE @webdes03 mike-greene.com

Editor's Notes

  1. Idera, $199 per user
  2. Idera, $199 per user