diff --git a/.idea/frameworkRootSettings.xml b/.idea/frameworkRootSettings.xml index ee72f22..6d1b4b7 100644 --- a/.idea/frameworkRootSettings.xml +++ b/.idea/frameworkRootSettings.xml @@ -4,7 +4,6 @@ diff --git a/.idea/sustain.iml b/.idea/sustain.iml index 814e3fb..f06288b 100644 --- a/.idea/sustain.iml +++ b/.idea/sustain.iml @@ -7,10 +7,10 @@ - + - + diff --git a/app/AppKernel.php b/app/AppKernel.php index 2764829..517e36b 100644 --- a/app/AppKernel.php +++ b/app/AppKernel.php @@ -25,9 +25,8 @@ public function registerBundles() new FR3D\LdapBundle\FR3DLdapBundle(), new Ivory\CKEditorBundle\IvoryCKEditorBundle(), new Sustain\UserBundle\SustainUserBundle(), - new Sustain\CourseBundle\SustainCourseBundle(), new Sustain\AuthenticateBundle\SustainAuthenticateBundle(), - new Sustain\HomeBundle\SustainHomeBundle(), + new Sustain\AppBundle\AppBundle(), ); if (in_array($this->getEnvironment(), array('dev', 'test'))) { diff --git a/app/Resources/views/base.html.twig b/app/Resources/views/base.html.twig index 87d06ce..8755833 100644 --- a/app/Resources/views/base.html.twig +++ b/app/Resources/views/base.html.twig @@ -4,12 +4,12 @@ - {% block title %}Sustainability Certficate{% endblock %} + {% block title %}Sustainability UGA{% endblock %} {% block stylesheets %} {% stylesheets '@bootstrap_less' combine=true output='css/compiled/main.css' %} {% endstylesheets %} - + {% endblock %} {% block javascripts %} @@ -67,7 +67,7 @@
{% block logo %}
- Responsive Sustainability Logo + Responsive Sustainability Logo
{% endblock %} diff --git a/app/config/routing.yml b/app/config/routing.yml index bff4546..90a050c 100644 --- a/app/config/routing.yml +++ b/app/config/routing.yml @@ -1,5 +1,5 @@ -sustain_home: - resource: "@SustainHomeBundle/Controller/" +app: + resource: "@AppBundle/Controller/" type: annotation prefix: / @@ -27,11 +27,6 @@ sustain_authenticate: type: annotation prefix: / -sustain_course: - resource: "@SustainCourseBundle/Controller/" - type: annotation - prefix: / - sustain_user: resource: "@SustainUserBundle/Controller/" type: annotation diff --git a/components/jquery-ui/jquery-ui-built.js b/components/jquery-ui/jquery-ui-built.js index c7552b7..ce8731b 100644 --- a/components/jquery-ui/jquery-ui-built.js +++ b/components/jquery-ui/jquery-ui-built.js @@ -1,4 +1,4 @@ -/*! jQuery UI - v1.11.1 - 2014-08-13 +/*! jQuery UI - v1.11.2 - 2014-10-16 * http://jqueryui.com * Includes: core.js, widget.js, mouse.js, position.js, accordion.js, autocomplete.js, button.js, datepicker.js, dialog.js, draggable.js, droppable.js, effect.js, effect-blind.js, effect-bounce.js, effect-clip.js, effect-drop.js, effect-explode.js, effect-fade.js, effect-fold.js, effect-highlight.js, effect-puff.js, effect-pulsate.js, effect-scale.js, effect-shake.js, effect-size.js, effect-slide.js, effect-transfer.js, menu.js, progressbar.js, resizable.js, selectable.js, selectmenu.js, slider.js, sortable.js, spinner.js, tabs.js, tooltip.js * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */ @@ -15,7 +15,7 @@ } }(function( $ ) { /*! - * jQuery UI Core 1.11.1 + * jQuery UI Core 1.11.2 * http://jqueryui.com * * Copyright 2014 jQuery Foundation and other contributors @@ -30,7 +30,7 @@ $.ui = $.ui || {}; $.extend( $.ui, { - version: "1.11.1", + version: "1.11.2", keyCode: { BACKSPACE: 8, @@ -309,7 +309,7 @@ $.ui.plugin = { /*! - * jQuery UI Widget 1.11.1 + * jQuery UI Widget 1.11.2 * http://jqueryui.com * * Copyright 2014 jQuery Foundation and other contributors @@ -336,7 +336,7 @@ $.cleanData = (function( orig ) { } // http://bugs.jquery.com/ticket/8235 - } catch( e ) {} + } catch ( e ) {} } orig( elems ); }; @@ -554,10 +554,6 @@ $.Widget.prototype = { this.element = $( element ); this.uuid = widget_uuid++; this.eventNamespace = "." + this.widgetName + this.uuid; - this.options = $.widget.extend( {}, - this.options, - this._getCreateOptions(), - options ); this.bindings = $(); this.hoverable = $(); @@ -580,6 +576,11 @@ $.Widget.prototype = { this.window = $( this.document[0].defaultView || this.document[0].parentWindow ); } + this.options = $.widget.extend( {}, + this.options, + this._getCreateOptions(), + options ); + this._create(); this._trigger( "create", null, this._getCreateEventData() ); this._init(); @@ -742,8 +743,14 @@ $.Widget.prototype = { }, _off: function( element, eventName ) { - eventName = (eventName || "").split( " " ).join( this.eventNamespace + " " ) + this.eventNamespace; + eventName = (eventName || "").split( " " ).join( this.eventNamespace + " " ) + + this.eventNamespace; element.unbind( eventName ).undelegate( eventName ); + + // Clear the stack to avoid memory leaks (#10056) + this.bindings = $( this.bindings.not( element ).get() ); + this.focusable = $( this.focusable.not( element ).get() ); + this.hoverable = $( this.hoverable.not( element ).get() ); }, _delay: function( handler, delay ) { @@ -849,7 +856,7 @@ var widget = $.widget; /*! - * jQuery UI Mouse 1.11.1 + * jQuery UI Mouse 1.11.2 * http://jqueryui.com * * Copyright 2014 jQuery Foundation and other contributors @@ -866,7 +873,7 @@ $( document ).mouseup( function() { }); var mouse = $.widget("ui.mouse", { - version: "1.11.1", + version: "1.11.2", options: { cancel: "input,textarea,button,select,option", distance: 1, @@ -907,6 +914,8 @@ var mouse = $.widget("ui.mouse", { return; } + this._mouseMoved = false; + // we may have missed mouseup (out of window) (this._mouseStarted && this._mouseUp(event)); @@ -960,13 +969,23 @@ var mouse = $.widget("ui.mouse", { }, _mouseMove: function(event) { - // IE mouseup check - mouseup happened when mouse was out of window - if ($.ui.ie && ( !document.documentMode || document.documentMode < 9 ) && !event.button) { - return this._mouseUp(event); + // Only check for mouseups outside the document if you've moved inside the document + // at least once. This prevents the firing of mouseup in the case of IE<9, which will + // fire a mousemove event if content is placed under the cursor. See #7778 + // Support: IE <9 + if ( this._mouseMoved ) { + // IE mouseup check - mouseup happened when mouse was out of window + if ($.ui.ie && ( !document.documentMode || document.documentMode < 9 ) && !event.button) { + return this._mouseUp(event); - // Iframe mouseup check - mouseup occurred in another document - } else if ( !event.which ) { - return this._mouseUp( event ); + // Iframe mouseup check - mouseup occurred in another document + } else if ( !event.which ) { + return this._mouseUp( event ); + } + } + + if ( event.which || event.button ) { + this._mouseMoved = true; } if (this._mouseStarted) { @@ -1023,7 +1042,7 @@ var mouse = $.widget("ui.mouse", { /*! - * jQuery UI Position 1.11.1 + * jQuery UI Position 1.11.2 * http://jqueryui.com * * Copyright 2014 jQuery Foundation and other contributors @@ -1530,7 +1549,7 @@ var position = $.ui.position; /*! - * jQuery UI Accordion 1.11.1 + * jQuery UI Accordion 1.11.2 * http://jqueryui.com * * Copyright 2014 jQuery Foundation and other contributors @@ -1542,7 +1561,7 @@ var position = $.ui.position; var accordion = $.widget( "ui.accordion", { - version: "1.11.1", + version: "1.11.2", options: { active: 0, animate: {}, @@ -1776,13 +1795,22 @@ var accordion = $.widget( "ui.accordion", { }, _processPanels: function() { + var prevHeaders = this.headers, + prevPanels = this.panels; + this.headers = this.element.find( this.options.header ) .addClass( "ui-accordion-header ui-state-default ui-corner-all" ); - this.headers.next() + this.panels = this.headers.next() .addClass( "ui-accordion-content ui-helper-reset ui-widget-content ui-corner-bottom" ) .filter( ":not(.ui-accordion-content-active)" ) .hide(); + + // Avoid memory leaks (#10056) + if ( prevPanels ) { + this._off( prevHeaders.not( this.headers ) ); + this._off( prevPanels.not( this.panels ) ); + } }, _refresh: function() { @@ -2091,7 +2119,7 @@ var accordion = $.widget( "ui.accordion", { /*! - * jQuery UI Menu 1.11.1 + * jQuery UI Menu 1.11.2 * http://jqueryui.com * * Copyright 2014 jQuery Foundation and other contributors @@ -2103,7 +2131,7 @@ var accordion = $.widget( "ui.accordion", { var menu = $.widget( "ui.menu", { - version: "1.11.1", + version: "1.11.2", defaultElement: "