ICEmobile
  1. ICEmobile
  2. MOBI-276

ICEmobile Spring Showcase cleanup

    Details

    • Type: Bug Bug
    • Status: Closed
    • Priority: Major Major
    • Resolution: Fixed
    • Affects Version/s: 1.0 Beta
    • Fix Version/s: 1.1 Beta
    • Component/s: Spring
    • Labels:
      None
    • Environment:
      n/a

      Description

      The ICEmobile Spring Showcase has some references to non-existant CSS resources, which it's inherited from the stock MVC Showcase, which has the same issue. We should look at all the external resource references and see which ones we need.



      Failed to load resource: the server responded with a status of 404 (Not Found) http://localhost:8080/spring-mvc-showcase-1.0.0-BUILD-SNAPSHOT/resources/jqueryui/1.8/themes/base/jquery.ui.accordion.css
      Failed to load resource: the server responded with a status of 404 (Not Found) http://localhost:8080/spring-mvc-showcase-1.0.0-BUILD-SNAPSHOT/resources/jqueryui/1.8/themes/base/jquery.ui.resizable.css
      Failed to load resource: the server responded with a status of 404 (Not Found) http://localhost:8080/spring-mvc-showcase-1.0.0-BUILD-SNAPSHOT/resources/jqueryui/1.8/themes/base/jquery.ui.dialog.css
      Failed to load resource: the server responded with a status of 404 (Not Found) http://localhost:8080/spring-mvc-showcase-1.0.0-BUILD-SNAPSHOT/resources/jqueryui/1.8/themes/base/jquery.ui.button.css
      Failed to load resource: the server responded with a status of 404 (Not Found) http://localhost:8080/spring-mvc-showcase-1.0.0-BUILD-SNAPSHOT/resources/jqueryui/1.8/themes/base/jquery.ui.selectable.css
      Failed to load resource: the server responded with a status of 404 (Not Found) http://localhost:8080/spring-mvc-showcase-1.0.0-BUILD-SNAPSHOT/resources/jqueryui/1.8/themes/base/jquery.ui.autocomplete.css
      Failed to load resource: the server responded with a status of 404 (Not Found) http://localhost:8080/spring-mvc-showcase-1.0.0-BUILD-SNAPSHOT/resources/jqueryui/1.8/themes/base/jquery.ui.datepicker.css
      Failed to load resource: the server responded with a status of 404 (Not Found) http://localhost:8080/spring-mvc-showcase-1.0.0-BUILD-SNAPSHOT/resources/jqueryui/1.8/themes/base/jquery.ui.progressbar.css
      Failed to load resource: the server responded with a status of 404 (Not Found) http://localhost:8080/spring-mvc-showcase-1.0.0-BUILD-SNAPSHOT/resources/jqueryui/1.8/themes/base/jquery.ui.slider.css

        Activity

        Repository Revision Date User Message
        ICEsoft Public SVN Repository #30182 Mon Jul 23 19:13:45 MDT 2012 philip.breau MOBI-276 - remove unused jquery ui css references causing 404's
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/resources/jqueryui/1.8/themes/base/jquery.ui.base.css
        Philip Breau created issue -
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #30183 Mon Jul 23 19:53:01 MDT 2012 philip.breau MOBI-276 - fix js null references for animating the message element
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/jqmmic.jsp
        Commit graph MODIFY /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/buttons.jsp
        Commit graph MODIFY /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/home.jsp
        Commit graph MODIFY /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/panelPopup.jsp
        Philip Breau made changes -
        Field Original Value New Value
        Assignee Steve Maryka [ steve.maryka ] Philip.breau [ philip.breau ]
        Philip Breau made changes -
        Summary ICEmobile Spring Showcase external dependency issues ICEmobile Spring Showcase cleanup
        Hide
        Philip Breau added a comment -

        Revision: 30182
        Author: philip.breau
        Date: July-23-12 10:13:45 PM
        Message:
        MOBI-276 - remove unused jquery ui css references causing 404's


        Modified : /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/resources/jqueryui/1.8/themes/base/jquery.ui.base.css

        Show
        Philip Breau added a comment - Revision: 30182 Author: philip.breau Date: July-23-12 10:13:45 PM Message: MOBI-276 - remove unused jquery ui css references causing 404's Modified : /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/resources/jqueryui/1.8/themes/base/jquery.ui.base.css
        Hide
        Philip Breau added a comment -

        JS from original MVC:

        $('html, body').animate(

        { scrollTop:$("#message").offset().top }

        , 500);

        • if the element with id 'message' wasn't on the page, then a null reference would occur

        refactored:

        var msgElem = $("#message");
        if( msgElem.length > 0 ){
        $('html, body').animate(

        { scrollTop:msgElem.offset().top }

        , 500);
        }

        Revision: 30183
        Author: philip.breau
        Date: July-23-12 10:53:01 PM
        Message:
        MOBI-276 - fix js null references for animating the message element


        Modified : /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/buttons.jsp
        Modified : /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/home.jsp
        Modified : /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/jqmmic.jsp
        Modified : /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/panelPopup.jsp

        Show
        Philip Breau added a comment - JS from original MVC: $('html, body').animate( { scrollTop:$("#message").offset().top } , 500); if the element with id 'message' wasn't on the page, then a null reference would occur refactored: var msgElem = $("#message"); if( msgElem.length > 0 ){ $('html, body').animate( { scrollTop:msgElem.offset().top } , 500); } Revision: 30183 Author: philip.breau Date: July-23-12 10:53:01 PM Message: MOBI-276 - fix js null references for animating the message element Modified : /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/buttons.jsp Modified : /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/home.jsp Modified : /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/jqmmic.jsp Modified : /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/panelPopup.jsp
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #30185 Tue Jul 24 06:34:07 MDT 2012 philip.breau MOBI-276 - fix delayed tab rendering
        - amalgamate multiple external and inline block css
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/home.jsp
        Commit graph ADD /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/resources/style.css
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #30186 Tue Jul 24 06:38:52 MDT 2012 philip.breau MOBI-276 - remove old css
        Files Changed
        Commit graph DEL /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/resources/form.css
        Hide
        Philip Breau added a comment -

        Revision: 30185
        Author: philip.breau
        Date: July-24-12 9:34:07 AM
        Message:
        MOBI-276 - fix delayed tab rendering

        • amalgamate multiple external and inline block css

          Modified : /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/home.jsp
          Added : /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/resources/style.css

        Show
        Philip Breau added a comment - Revision: 30185 Author: philip.breau Date: July-24-12 9:34:07 AM Message: MOBI-276 - fix delayed tab rendering amalgamate multiple external and inline block css Modified : /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/home.jsp Added : /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/resources/style.css
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #30187 Tue Jul 24 07:58:29 MDT 2012 philip.breau MOBI-276 - update the stylesheet references on all pages
        - fix and make the page titles consistent
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/list.jsp
        Commit graph MODIFY /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/microphone.jsp
        Commit graph MODIFY /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/buttons.jsp
        Commit graph MODIFY /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/inputtext.jsp
        Commit graph MODIFY /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/datetime.jsp
        Commit graph MODIFY /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/qrscan.jsp
        Commit graph MODIFY /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/panelPopup.jsp
        Commit graph MODIFY /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/accordion.jsp
        Commit graph MODIFY /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/camcorder.jsp
        Commit graph MODIFY /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/jqmmic.jsp
        Commit graph MODIFY /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/geolocation.jsp
        Commit graph MODIFY /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/carousel.jsp
        Commit graph MODIFY /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/mediaspot.jsp
        Commit graph MODIFY /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/flipswitch.jsp
        Commit graph MODIFY /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/campushr.jsp
        Commit graph MODIFY /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/tabset.jsp
        Commit graph MODIFY /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/camera.jsp
        Commit graph MODIFY /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/campush.jsp
        Hide
        Philip Breau added a comment -

        Revision: 30187
        Author: philip.breau
        Date: July-24-12 10:58:29 AM
        Message:
        MOBI-276 - update the stylesheet references on all pages

        • fix and make the page titles consistent

          Modified : /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/accordion.jsp
          Modified : /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/buttons.jsp
          Modified : /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/camcorder.jsp
          Modified : /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/camera.jsp
          Modified : /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/campush.jsp
          Modified : /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/campushr.jsp
          Modified : /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/carousel.jsp
          Modified : /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/datetime.jsp
          Modified : /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/flipswitch.jsp
          Modified : /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/geolocation.jsp
          Modified : /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/inputtext.jsp
          Modified : /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/jqmmic.jsp
          Modified : /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/list.jsp
          Modified : /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/mediaspot.jsp
          Modified : /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/microphone.jsp
          Modified : /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/panelPopup.jsp
          Modified : /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/qrscan.jsp
          Modified : /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/tabset.jsp

        Show
        Philip Breau added a comment - Revision: 30187 Author: philip.breau Date: July-24-12 10:58:29 AM Message: MOBI-276 - update the stylesheet references on all pages fix and make the page titles consistent Modified : /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/accordion.jsp Modified : /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/buttons.jsp Modified : /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/camcorder.jsp Modified : /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/camera.jsp Modified : /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/campush.jsp Modified : /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/campushr.jsp Modified : /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/carousel.jsp Modified : /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/datetime.jsp Modified : /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/flipswitch.jsp Modified : /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/geolocation.jsp Modified : /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/inputtext.jsp Modified : /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/jqmmic.jsp Modified : /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/list.jsp Modified : /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/mediaspot.jsp Modified : /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/microphone.jsp Modified : /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/panelPopup.jsp Modified : /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/qrscan.jsp Modified : /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/tabset.jsp
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #30209 Tue Jul 24 11:38:06 MDT 2012 philip.breau MOBI-276 - revert the fix for the iOS showing flat list for a second
        this breaks the progressive enhancement feature
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/home.jsp
        Hide
        Philip Breau added a comment -

        Revision: 30209
        Author: philip.breau
        Date: July-24-12 2:38:06 PM
        Message:
        MOBI-276 - revert the fix for the iOS showing flat list for a second
        this breaks the progressive enhancement feature


        Modified : /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/home.jsp

        Show
        Philip Breau added a comment - Revision: 30209 Author: philip.breau Date: July-24-12 2:38:06 PM Message: MOBI-276 - revert the fix for the iOS showing flat list for a second this breaks the progressive enhancement feature Modified : /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/home.jsp
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #30245 Wed Jul 25 15:24:32 MDT 2012 philip.breau MOBI-276 - add a 'js' marker to the html element then use a css rule based on that to hide the flat list until they turn into tabs
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/home.jsp
        Commit graph MODIFY /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/resources/style.css
        Hide
        Philip Breau added a comment -

        Revision: 30245
        Author: philip.breau
        Date: July-25-12 6:24:32 PM
        Message:
        MOBI-276 - add a 'js' marker to the html element then use a css rule based on that to hide the flat list until they turn into tabs


        Modified : /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/home.jsp
        Modified : /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/resources/style.css

        Show
        Philip Breau added a comment - Revision: 30245 Author: philip.breau Date: July-25-12 6:24:32 PM Message: MOBI-276 - add a 'js' marker to the html element then use a css rule based on that to hide the flat list until they turn into tabs Modified : /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/WEB-INF/views/home.jsp Modified : /icemobile/trunk/icemobile/samples/icemobilespring/src/main/webapp/resources/style.css
        Hide
        Ted Goddard added a comment -

        Any additional cleanup can take place under a new JIRA.

        Show
        Ted Goddard added a comment - Any additional cleanup can take place under a new JIRA.
        Ted Goddard made changes -
        Status Open [ 1 ] Resolved [ 5 ]
        Fix Version/s 1.1 Beta [ 10320 ]
        Resolution Fixed [ 1 ]
        Migration made changes -
        Status Resolved [ 5 ] Closed [ 6 ]

          People

          • Assignee:
            Philip Breau
            Reporter:
            Philip Breau
          • Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

            • Created:
              Updated:
              Resolved: