فهرست منبع

Rename Global Namespace LUNGO to Lungo

@soyjavi 14 سال پیش
والد
کامیت
f38285b429
71فایلهای تغییر یافته به همراه149 افزوده شده و 149 حذف شده
  1. 1 1
      examples/kitchen-sink/app/app.js
  2. 1 1
      examples/kitchen-sink/app/data.js
  3. 1 1
      examples/kitchen-sink/app/events.js
  4. 1 1
      examples/kitchen-sink/app/services.js
  5. 1 1
      examples/kitchen-sink/app/view.js
  6. 1 1
      examples/test/app/app.js
  7. 1 1
      examples/test/app/data.js
  8. 3 3
      examples/test/app/events-oldschool.js
  9. 2 2
      examples/test/app/events.js
  10. 1 1
      examples/test/app/services.js
  11. 1 1
      examples/test/app/view.js
  12. 1 1
      examples/todo.js/app/app.js
  13. 1 1
      examples/todo.js/app/data.js
  14. 1 1
      examples/todo.js/app/events.js
  15. 1 1
      examples/todo.js/app/services.js
  16. 1 1
      examples/todo.js/app/view.js
  17. 2 2
      examples/todo.js/assets/sugars/lungo.sugar.growl.min.css
  18. 4 4
      examples/todo.js/assets/sugars/lungo.sugar.growl.min.js
  19. 3 3
      src/Lungo.App.js
  20. 2 2
      src/Lungo.Constants.js
  21. 3 3
      src/Lungo.Core.js
  22. 3 3
      src/Lungo.Dom.js
  23. 3 3
      src/Lungo.Element.js
  24. 3 3
      src/Lungo.Events.js
  25. 3 3
      src/Lungo.Fallback.js
  26. 4 4
      src/Lungo.Notification.js
  27. 3 3
      src/Lungo.Service.js
  28. 8 8
      src/Lungo.js
  29. 2 2
      src/attributes/Lungo.Attributes.Data.js
  30. 3 3
      src/boot/Lungo.Boot.Article.js
  31. 3 3
      src/boot/Lungo.Boot.Data.js
  32. 3 3
      src/boot/Lungo.Boot.Events.js
  33. 3 3
      src/boot/Lungo.Boot.Layout.js
  34. 3 3
      src/boot/Lungo.Boot.Resources.js
  35. 3 3
      src/boot/Lungo.Boot.Section.js
  36. 3 3
      src/boot/Lungo.Boot.Stats.js
  37. 3 3
      src/boot/Lungo.Boot.js
  38. 3 3
      src/data/Lungo.Data.Cache.js
  39. 3 3
      src/data/Lungo.Data.Sql.js
  40. 3 3
      src/data/Lungo.Data.Storage.js
  41. 3 3
      src/router/Lungo.Router.History.js
  42. 3 3
      src/router/Lungo.Router.js
  43. 2 2
      src/stylesheets/Lungo.base.less
  44. 1 1
      src/stylesheets/Lungo.layout.article.less
  45. 1 1
      src/stylesheets/Lungo.layout.aside.less
  46. 1 1
      src/stylesheets/Lungo.layout.less
  47. 1 1
      src/stylesheets/Lungo.layout.list.less
  48. 1 1
      src/stylesheets/Lungo.layout.nav.less
  49. 1 1
      src/stylesheets/Lungo.theme.default.less
  50. 1 1
      src/stylesheets/Lungo.theme.scaffold.less
  51. 2 2
      src/stylesheets/Lungo.widgets.button.less
  52. 1 1
      src/stylesheets/Lungo.widgets.colour.less
  53. 1 1
      src/stylesheets/Lungo.widgets.form.less
  54. 1 1
      src/stylesheets/Lungo.widgets.less
  55. 2 2
      src/stylesheets/Lungo.widgets.loading.less
  56. 1 1
      src/stylesheets/Lungo.widgets.splash.less
  57. 1 1
      src/stylesheets/css/Lungo.layout.article.css
  58. 1 1
      src/stylesheets/css/Lungo.layout.css
  59. 1 1
      src/stylesheets/css/Lungo.layout.nav.css
  60. 1 1
      src/stylesheets/css/Lungo.theme.scaffold.css
  61. 1 1
      src/stylesheets/css/Lungo.widgets.colour.css
  62. 1 1
      src/stylesheets/css/Lungo.widgets.css
  63. 1 1
      src/stylesheets/css/Lungo.widgets.form.css
  64. 1 1
      src/stylesheets/css/Lungo.widgets.splash.css
  65. 3 3
      src/view/Lungo.View.Article.js
  66. 3 3
      src/view/Lungo.View.Aside.js
  67. 5 5
      src/view/Lungo.View.Element.js
  68. 3 3
      src/view/Lungo.View.Resize.js
  69. 3 3
      src/view/Lungo.View.Template.Binding.js
  70. 3 3
      src/view/Lungo.View.Template.List.js
  71. 3 3
      src/view/Lungo.View.Template.js

+ 1 - 1
examples/kitchen-sink/app/app.js

@@ -38,4 +38,4 @@ var App = (function(lng, undefined) {
 
     };
 
-})(LUNGO);
+})(Lungo);

+ 1 - 1
examples/kitchen-sink/app/data.js

@@ -25,4 +25,4 @@ App.Data = (function(lng, App, undefined) {
     );
 
 
-})(LUNGO, App);
+})(Lungo, App);

+ 1 - 1
examples/kitchen-sink/app/events.js

@@ -73,4 +73,4 @@ App.Events = (function(lng, undefined) {
         console.error('loaded article');
     });
 
-})(LUNGO);
+})(Lungo);

+ 1 - 1
examples/kitchen-sink/app/services.js

@@ -75,4 +75,4 @@ App.Services = (function(lng, App, undefined) {
         mockProfiles: mockProfiles
     }
 
-})(LUNGO, App);
+})(Lungo, App);

+ 1 - 1
examples/kitchen-sink/app/view.js

@@ -26,4 +26,4 @@ App.View = (function(lng, App, undefined) {
     }
 
 
-})(LUNGO, App);
+})(Lungo, App);

+ 1 - 1
examples/test/app/app.js

@@ -21,4 +21,4 @@ var App = (function(lng, undefined) {
 
     };
 
-})(LUNGO);
+})(Lungo);

+ 1 - 1
examples/test/app/data.js

@@ -1,3 +1,3 @@
 App.Data = (function(lng, App, undefined) {
 
-})(LUNGO, App);
+})(Lungo, App);

+ 3 - 3
examples/test/app/events-oldschool.js

@@ -1,10 +1,10 @@
-LUNGO.Events.init({
+Lungo.Events.init({
     'section#sec-1 header #btn-toggle-loading tap': App.View.toggleLoading,
     'section#sec-1 load': function(event) {
                             console.error('section#sec-1 loaded', event);
 
         console.error('current section', lng.Element.Current.section);
-                            LUNGO.Router.article('sec-1', 'nav-2');
+                            Lungo.Router.article('sec-1', 'nav-2');
                         },
 
     'a': App.View.toggleLoading
@@ -70,5 +70,5 @@ App.Events = (function(lng, undefined) {
         a: a
     };
 
-})(LUNGO);
+})(Lungo);
 */

+ 2 - 2
examples/test/app/events.js

@@ -1,7 +1,7 @@
 
-LUNGO.Events.init({
+Lungo.Events.init({
     'section#a article a tap': function(){
-        LUNGO.Notification.loading('hole', '1', 'user');
+        Lungo.Notification.loading('hole', '1', 'user');
     },
     'section#sec-1 header #btn-toggle-loading tap': App.View.toggleLoading,
     'section#sec-2 load': App.View.toggleLoading

+ 1 - 1
examples/test/app/services.js

@@ -1,3 +1,3 @@
 App.Services = (function(lng, App, undefined) {
 
-})(LUNGO, App);
+})(Lungo, App);

+ 1 - 1
examples/test/app/view.js

@@ -22,4 +22,4 @@ App.View = (function(lng, App, undefined) {
     };
 
 
-})(LUNGO, App);
+})(Lungo, App);

+ 1 - 1
examples/todo.js/app/app.js

@@ -9,4 +9,4 @@ var App = (function(lng, undefined) {
 
     };
 
-})(LUNGO);
+})(Lungo);

+ 1 - 1
examples/todo.js/app/data.js

@@ -64,4 +64,4 @@ App.Data = (function(lng, App, undefined) {
         doneTodo: doneTodo
     }
 
-})(LUNGO, App);
+})(Lungo, App);

+ 1 - 1
examples/todo.js/app/events.js

@@ -81,4 +81,4 @@ App.Events = (function(lng, undefined) {
         lng.Sugar.Growl.option('Are you sure?', options);
     });
 
-})(LUNGO);
+})(Lungo);

+ 1 - 1
examples/todo.js/app/services.js

@@ -4,4 +4,4 @@ App.Services = (function(lng, App, undefined) {
 
     }
 
-})(LUNGO, App);
+})(Lungo, App);

+ 1 - 1
examples/todo.js/app/view.js

@@ -60,4 +60,4 @@ App.View = (function(lng, App, undefined) {
         list: list
     }
 
-})(LUNGO, App);
+})(Lungo, App);

+ 2 - 2
examples/todo.js/assets/sugars/lungo.sugar.growl.min.css

@@ -1,7 +1,7 @@
 /**
  * Growl Notification system in CSS3
  *
- * @namespace LUNGO.Sugar
+ * @namespace Lungo.Sugar
  * @class Growl
  * @version 1.1
  *
@@ -29,4 +29,4 @@
 .notify .icon{margin:6px 6px 6px 10px;float:left;font-size:53px;line-height:40px;}
 .notify strong{margin:14px 0 -12px;max-height:12px;display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:1.15em;text-transform:uppercase;line-height:12px;}
 .notify small{font-size:0.9em;}
-@-webkit-keyframes growl-working { 0% {opacity: 1; } 50% {opacity: 0;} 100% {opacity: 1;} }
+@-webkit-keyframes growl-working { 0% {opacity: 1; } 50% {opacity: 0;} 100% {opacity: 1;} }

تفاوت فایلی نمایش داده نمی شود زیرا این فایل بسیار بزرگ است
+ 4 - 4
examples/todo.js/assets/sugars/lungo.sugar.growl.min.js


+ 3 - 3
src/Lungo.App.js

@@ -1,14 +1,14 @@
 /**
  * Lungo sandbox APP initialization
  *
- * @namespace LUNGO
+ * @namespace Lungo
  * @class App
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  * @author Guillermo Pascual <pasku@tapquo.com> || @pasku1
  */
 
-LUNGO.App = (function(lng, undefined) {
+Lungo.App = (function(lng, undefined) {
 
      var default_config = {
          id: 1,
@@ -41,4 +41,4 @@ LUNGO.App = (function(lng, undefined) {
         get: get
     };
 
-})(LUNGO);
+})(Lungo);

+ 2 - 2
src/Lungo.Constants.js

@@ -1,13 +1,13 @@
 /**
  * Object with data-attributes (HTML5) with a special <markup>
  *
- * @namespace LUNGO
+ * @namespace Lungo
  * @class Constants
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  */
 
-LUNGO.Constants = {
+Lungo.Constants = {
 
     ELEMENT: {
         SECTION: 'section',

+ 3 - 3
src/Lungo.Core.js

@@ -1,14 +1,14 @@
 /**
  * Contains all the common functions used in Lungo.
  *
- * @namespace LUNGO
+ * @namespace Lungo
  * @class Core
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  * @author Guillermo Pascual <pasku@tapquo.com> || @pasku1
  */
 
-LUNGO.Core = (function(lng, $$, undefined) {
+Lungo.Core = (function(lng, $$, undefined) {
 
     var ARRAY_PROTO = Array.prototype;
     var HASHTAG_CHARACTER = '#';
@@ -217,4 +217,4 @@ LUNGO.Core = (function(lng, $$, undefined) {
         findByProperty: findByProperty
     };
 
-})(LUNGO, Quo);
+})(Lungo, Quo);

+ 3 - 3
src/Lungo.Dom.js

@@ -1,7 +1,7 @@
 /**
  * LungoJS Dom Handler
  *
- * @namespace LUNGO
+ * @namespace Lungo
  * @class Dom
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
@@ -16,6 +16,6 @@
      * @param  {string} <Markup> element selector
      * @return {Object} QuoJS <element> instance
 */
-LUNGO.dom = function(selector) {
+Lungo.dom = function(selector) {
     return $$(selector);
-};
+};

+ 3 - 3
src/Lungo.Element.js

@@ -1,13 +1,13 @@
 /**
  * Chain of responsability
  *
- * @namespace LUNGO
+ * @namespace Lungo
  * @class Element
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  */
 
-LUNGO.Element = {
+Lungo.Element = {
 
     sections: null,
     Current: {
@@ -17,4 +17,4 @@ LUNGO.Element = {
     },
     asides: null,
     toolbars: null
-};
+};

+ 3 - 3
src/Lungo.Events.js

@@ -1,13 +1,13 @@
 /**
  * ?
  *
- * @namespace LUNGO
+ * @namespace Lungo
  * @class Fallback
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  */
 
-LUNGO.Events = (function(lng, undefined) {
+Lungo.Events = (function(lng, undefined) {
 
     var SPACE_CHAR = ' ';
 
@@ -27,4 +27,4 @@ LUNGO.Events = (function(lng, undefined) {
         init: init
     };
 
-})(LUNGO);
+})(Lungo);

+ 3 - 3
src/Lungo.Fallback.js

@@ -1,13 +1,13 @@
 /**
  * ?
  *
- * @namespace LUNGO
+ * @namespace Lungo
  * @class Fallback
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  */
 
-LUNGO.Fallback = (function(lng, undefined) {
+Lungo.Fallback = (function(lng, undefined) {
 
     var androidInputs = function(article_id, active) {
         environment = lng.Core.environment();
@@ -40,4 +40,4 @@ LUNGO.Fallback = (function(lng, undefined) {
         positionFixed: positionFixed
     };
 
-})(LUNGO);
+})(Lungo);

+ 4 - 4
src/Lungo.Notification.js

@@ -1,13 +1,13 @@
 /**
  * Growl Notification system in CSS3
  *
- * @namespace LUNGO
+ * @namespace Lungo
  * @class Notification
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  */
 
-LUNGO.Notification = (function(lng, undefined) {
+Lungo.Notification = (function(lng, undefined) {
 
     var _options = [];
     var _el = null;
@@ -35,7 +35,7 @@ LUNGO.Notification = (function(lng, undefined) {
         INPUT: 'input'
     };
 
-    var CALLBACK_HIDE = 'LUNGO.Sugar.Growl.hide()';
+    var CALLBACK_HIDE = 'Lungo.Sugar.Growl.hide()';
     var MARKUP_GROWL = '<div class="growl"><div class="window"></div></div>';
 
     /**
@@ -208,4 +208,4 @@ LUNGO.Notification = (function(lng, undefined) {
         loading: loading
     };
 
-})(LUNGO);
+})(Lungo);

+ 3 - 3
src/Lungo.Service.js

@@ -1,7 +1,7 @@
 /**
  * External Data & Services Manager
  *
- * @namespace LUNGO
+ * @namespace Lungo
  * @class Service
  * @requires QuoJS
  *
@@ -9,7 +9,7 @@
  * @author Guillermo Pascual <pasku@tapquo.com> || @pasku1
  */
 
-LUNGO.Service = (function(lng, $$, undefined) {
+Lungo.Service = (function(lng, $$, undefined) {
 
     var URL_CACHE_INDEX_KEY = 'lungojs_service_cache';
     var DATE_PATTERN = {
@@ -140,4 +140,4 @@ LUNGO.Service = (function(lng, $$, undefined) {
         Settings: $$.ajaxSettings
     };
 
-})(LUNGO, Quo);
+})(Lungo, Quo);

+ 8 - 8
src/Lungo.js

@@ -21,13 +21,13 @@
  * @author   Guillermo Pascual <pasku@tapquo.com> || @pasku1
  */
 
-var LUNGO = LUNGO || {};
+var Lungo = Lungo || {};
 
-LUNGO.VERSION = '2.0';
+Lungo.VERSION = '2.0';
 
-LUNGO.Attributes || (LUNGO.Attributes = {});
-LUNGO.Data || (LUNGO.Data = {});
-LUNGO.Sugar || (LUNGO.Sugar = {});
-LUNGO.View || (LUNGO.View = {});
-LUNGO.Device || (LUNGO.Device = {});
-LUNGO.ready || (LUNGO.ready = Quo().ready);
+Lungo.Attributes || (Lungo.Attributes = {});
+Lungo.Data || (Lungo.Data = {});
+Lungo.Sugar || (Lungo.Sugar = {});
+Lungo.View || (Lungo.View = {});
+Lungo.Device || (Lungo.Device = {});
+Lungo.ready || (Lungo.ready = Quo().ready);

+ 2 - 2
src/attributes/Lungo.Attributes.Data.js

@@ -1,14 +1,14 @@
 /**
  * Object with data-attributes (HTML5) with a special <markup>
  *
- * @namespace LUNGO.Attributes
+ * @namespace Lungo.Attributes
  * @class Data
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  * @author Guillermo Pascual <pasku@tapquo.com> || @pasku1
  */
 
-LUNGO.Attributes.Data = {
+Lungo.Attributes.Data = {
     Search: {
         tag: 'search',
         selector: '.list',

+ 3 - 3
src/boot/Lungo.Boot.Article.js

@@ -1,14 +1,14 @@
 /**
  * Initialize the <article> element
  *
- * @namespace LUNGO.Boot
+ * @namespace Lungo.Boot
  * @class Article
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  * @author Guillermo Pascual <pasku@tapquo.com> || @pasku1
  */
 
-LUNGO.Boot.Article = (function(lng, undefined) {
+Lungo.Boot.Article = (function(lng, undefined) {
 
     var ATTRIBUTE = lng.Constants.ATTRIBUTE;
     var ELEMENT = lng.Constants.ELEMENT;
@@ -51,4 +51,4 @@ LUNGO.Boot.Article = (function(lng, undefined) {
         start: start
     };
 
-})(LUNGO);
+})(Lungo);

+ 3 - 3
src/boot/Lungo.Boot.Data.js

@@ -2,14 +2,14 @@
  * Make an analysis of Data attributes in HTML elements and creates a <markup>
  * based on each data type.
  *
- * @namespace LUNGO.Boot
+ * @namespace Lungo.Boot
  * @class Data
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  * @author Guillermo Pascual <pasku@tapquo.com> || @pasku1
  */
 
-LUNGO.Boot.Data = (function(lng, undefined) {
+Lungo.Boot.Data = (function(lng, undefined) {
 
     /**
      * Initialize the <markup> data-attributes analisys
@@ -41,4 +41,4 @@ LUNGO.Boot.Data = (function(lng, undefined) {
         start: start
     };
 
-})(LUNGO);
+})(Lungo);

+ 3 - 3
src/boot/Lungo.Boot.Events.js

@@ -1,14 +1,14 @@
 /**
  * Initialize the automatic DOM UI events
  *
- * @namespace LUNGO.Boot
+ * @namespace Lungo.Boot
  * @class Events
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  * @author Guillermo Pascual <pasku@tapquo.com> || @pasku1
  */
 
-LUNGO.Boot.Events = (function(lng, undefined) {
+Lungo.Boot.Events = (function(lng, undefined) {
 
     var ATTRIBUTE = lng.Constants.ATTRIBUTE;
     var CLASS = lng.Constants.CLASS;
@@ -101,4 +101,4 @@ LUNGO.Boot.Events = (function(lng, undefined) {
         start: start
     };
 
-})(LUNGO);
+})(Lungo);

+ 3 - 3
src/boot/Lungo.Boot.Layout.js

@@ -1,13 +1,13 @@
 /**
  * Initialize the Layout of LungoJS (if it's a mobile environment)
  *
- * @namespace LUNGO.Boot
+ * @namespace Lungo.Boot
  * @class Layout
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  */
 
-LUNGO.Boot.Layout = (function(lng, undefined) {
+Lungo.Boot.Layout = (function(lng, undefined) {
 
     var _window = null;
     var _document = null;
@@ -65,4 +65,4 @@ LUNGO.Boot.Layout = (function(lng, undefined) {
         start: start
     };
 
-})(LUNGO);
+})(Lungo);

+ 3 - 3
src/boot/Lungo.Boot.Resources.js

@@ -1,13 +1,13 @@
 /**
  * Load Resources
  *
- * @namespace LUNGO.Boot
+ * @namespace Lungo.Boot
  * @class Resources
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  */
 
-LUNGO.Boot.Resources = (function(lng, $$, undefined) {
+Lungo.Boot.Resources = (function(lng, $$, undefined) {
 
     var ELEMENT = lng.Constants.ELEMENT;
     var ERROR = lng.Constants.ERROR;
@@ -103,4 +103,4 @@ LUNGO.Boot.Resources = (function(lng, $$, undefined) {
         start: start
     };
 
-})(LUNGO, Quo);
+})(Lungo, Quo);

+ 3 - 3
src/boot/Lungo.Boot.Section.js

@@ -1,14 +1,14 @@
 /**
  * Initialize the <section> element
  *
- * @namespace LUNGO.Boot
+ * @namespace Lungo.Boot
  * @class Section
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  * @author Guillermo Pascual <pasku@tapquo.com> || @pasku1
  */
 
-LUNGO.Boot.Section = (function(lng, undefined) {
+Lungo.Boot.Section = (function(lng, undefined) {
 
     var ELEMENT = lng.Constants.ELEMENT;
     var CLASS = lng.Constants.CLASS;
@@ -59,4 +59,4 @@ LUNGO.Boot.Section = (function(lng, undefined) {
         start: start
     };
 
-})(LUNGO);
+})(Lungo);

+ 3 - 3
src/boot/Lungo.Boot.Stats.js

@@ -1,14 +1,14 @@
 /**
  * Save in LungoJS.com the use of the service for further ranking
  *
- * @namespace LUNGO.Boot
+ * @namespace Lungo.Boot
  * @class Stats
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  * @author Guillermo Pascual <pasku@tapquo.com> || @pasku1
  */
 
-LUNGO.Boot.Stats = (function(lng, undefined) {
+Lungo.Boot.Stats = (function(lng, undefined) {
 
     /**
      * Analizing if it's run in Mobile Phone and changing the type of event to subscribe.
@@ -38,4 +38,4 @@ LUNGO.Boot.Stats = (function(lng, undefined) {
         start: start
     };
 
-})(LUNGO);
+})(Lungo);

+ 3 - 3
src/boot/Lungo.Boot.js

@@ -1,13 +1,13 @@
 /**
  * Boot for a new LungoJS Application instance
  *
- * @namespace LUNGO
+ * @namespace Lungo
  * @class App
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  */
 
-LUNGO.Boot = (function(lng, undefined) {
+Lungo.Boot = (function(lng, undefined) {
 
     return function() {
         lng.Boot.Resources.start();
@@ -20,4 +20,4 @@ LUNGO.Boot = (function(lng, undefined) {
         lng.Boot.Stats.start();
     };
 
-})(LUNGO);
+})(Lungo);

+ 3 - 3
src/data/Lungo.Data.Cache.js

@@ -1,14 +1,14 @@
 /**
  * Temporary cache system
  *
- * @namespace LUNGO.Data
+ * @namespace Lungo.Data
  * @class Cache
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  * @author Guillermo Pascual <pasku@tapquo.com> || @pasku1
  */
 
-LUNGO.Data.Cache = (function(lng, undefined) {
+Lungo.Data.Cache = (function(lng, undefined) {
 
     var _cache = {};
 
@@ -80,4 +80,4 @@ LUNGO.Data.Cache = (function(lng, undefined) {
         exists: exists
     };
 
-})(LUNGO);
+})(Lungo);

+ 3 - 3
src/data/Lungo.Data.Sql.js

@@ -1,14 +1,14 @@
 /**
  * Wrapper for using WebSql (HTML5 feature)
  *
- * @namespace LUNGO.Data
+ * @namespace Lungo.Data
  * @class Sql
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  * @author Guillermo Pascual <pasku@tapquo.com> || @pasku1
  */
 
-LUNGO.Data.Sql = (function(lng, undefined) {
+Lungo.Data.Sql = (function(lng, undefined) {
 
     var ERROR = lng.Constants.ERROR;
     var CONFIG = {
@@ -214,4 +214,4 @@ LUNGO.Data.Sql = (function(lng, undefined) {
         execute: execute
     };
 
-})(LUNGO);
+})(Lungo);

+ 3 - 3
src/data/Lungo.Data.Storage.js

@@ -1,14 +1,14 @@
 /**
  * Wrapper for using LocalStorage & SessionStorage (HTML5 Feature)
  *
- * @namespace LUNGO.Data
+ * @namespace Lungo.Data
  * @class Storage
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  * @author Guillermo Pascual <pasku@tapquo.com> || @pasku1
  */
 
-LUNGO.Data.Storage = (function(lng, undefined) {
+Lungo.Data.Storage = (function(lng, undefined) {
 
     var STORAGE = {
         PERSISTENT: 'localStorage',
@@ -66,4 +66,4 @@ LUNGO.Data.Storage = (function(lng, undefined) {
         persistent: persistent
     };
 
-})(LUNGO);
+})(Lungo);

+ 3 - 3
src/router/Lungo.Router.History.js

@@ -1,14 +1,14 @@
 /**
  * Stores the displayed <sections> as a historical.
  *
- * @namespace LUNGO.Router
+ * @namespace Lungo.Router
  * @class History
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  * @author Guillermo Pascual <pasku@tapquo.com> || @pasku1
  */
 
-LUNGO.Router.History = (function(undefined) {
+Lungo.Router.History = (function(undefined) {
 
      var _history = [];
 
@@ -51,4 +51,4 @@ LUNGO.Router.History = (function(undefined) {
         removeLast: removeLast
     };
 
-})();
+})();

+ 3 - 3
src/router/Lungo.Router.js

@@ -1,14 +1,14 @@
 /**
  * Handles the <sections> and <articles> to show
  *
- * @namespace LUNGO
+ * @namespace Lungo
  * @class Router
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  * @author Guillermo Pascual <pasku@tapquo.com> || @pasku1
  */
 
-LUNGO.Router = (function(lng, undefined) {
+Lungo.Router = (function(lng, undefined) {
 
     var CLASS = lng.Constants.CLASS;
     var ELEMENT = lng.Constants.ELEMENT;
@@ -126,4 +126,4 @@ LUNGO.Router = (function(lng, undefined) {
         back: back
     };
 
-})(LUNGO);
+})(Lungo);

+ 2 - 2
src/stylesheets/Lungo.base.less

@@ -1,7 +1,7 @@
 /**
  * Stylesheet
  *
- * @namespace LUNGO
+ * @namespace Lungo
  * @class Base
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
@@ -155,4 +155,4 @@ caption {
 
     -webkit-user-select: none;
     -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
-}
+}

+ 1 - 1
src/stylesheets/Lungo.layout.article.less

@@ -1,7 +1,7 @@
 /**
  * Stylesheet
  *
- * @namespace LUNGO.Layout
+ * @namespace Lungo.Layout
  * @class Article
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi

+ 1 - 1
src/stylesheets/Lungo.layout.aside.less

@@ -1,7 +1,7 @@
 /**
  * Stylesheet
  *
- * @namespace LUNGO.Layout
+ * @namespace Lungo.Layout
  * @class Aside
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi

+ 1 - 1
src/stylesheets/Lungo.layout.less

@@ -1,7 +1,7 @@
 /**
  * Stylesheet
  *
- * @namespace LUNGO
+ * @namespace Lungo
  * @class Layout
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi

+ 1 - 1
src/stylesheets/Lungo.layout.list.less

@@ -1,7 +1,7 @@
 /**
  * Stylesheet
  *
- * @namespace LUNGO.Layout
+ * @namespace Lungo.Layout
  * @class List
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi

+ 1 - 1
src/stylesheets/Lungo.layout.nav.less

@@ -1,7 +1,7 @@
 /**
  * Stylesheet
  *
- * @namespace LUNGO.Layout
+ * @namespace Lungo.Layout
  * @class Nav
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi

+ 1 - 1
src/stylesheets/Lungo.theme.default.less

@@ -1,7 +1,7 @@
 /**
  * Stylesheet
  *
- * @namespace LUNGO.Theme
+ * @namespace Lungo.Theme
  * @class Default
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi

+ 1 - 1
src/stylesheets/Lungo.theme.scaffold.less

@@ -1,7 +1,7 @@
 /**
  * Stylesheet
  *
- * @namespace LUNGO.Theme
+ * @namespace Lungo.Theme
  * @class Default
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi

+ 2 - 2
src/stylesheets/Lungo.widgets.button.less

@@ -1,7 +1,7 @@
 /**
  * Stylesheet
  *
- * @namespace LUNGO.Widgets
+ * @namespace Lungo.Widgets
  * @class Button
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
@@ -59,4 +59,4 @@ a.button {
             float: left;
         }
     }
-}
+}

+ 1 - 1
src/stylesheets/Lungo.widgets.colour.less

@@ -1,7 +1,7 @@
 /**
  * Stylesheet
  *
- * @namespace LUNGO.Widgets
+ * @namespace Lungo.Widgets
  * @class Colour
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi

+ 1 - 1
src/stylesheets/Lungo.widgets.form.less

@@ -1,7 +1,7 @@
 /**
  * Stylesheet
  *
- * @namespace LUNGO.Widgets
+ * @namespace Lungo.Widgets
  * @class Form
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi

+ 1 - 1
src/stylesheets/Lungo.widgets.less

@@ -1,7 +1,7 @@
 /**
  * Stylesheet
  *
- * @namespace LUNGO
+ * @namespace Lungo
  * @class Widgets
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi

+ 2 - 2
src/stylesheets/Lungo.widgets.loading.less

@@ -1,7 +1,7 @@
 /**
  * Stylesheet
  *
- * @namespace LUNGO.Widgets
+ * @namespace Lungo.Widgets
  * @class Loading
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
@@ -158,4 +158,4 @@ section.current .loading, .growl .loading {
 
     91.66%{ .transform(rotate(330deg)); }
     100%{   .transform(rotate(330deg)); }
-}
+}

+ 1 - 1
src/stylesheets/Lungo.widgets.splash.less

@@ -1,7 +1,7 @@
 /**
  * Stylesheet
  *
- * @namespace LUNGO.Widgets
+ * @namespace Lungo.Widgets
  * @class Splash
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi

+ 1 - 1
src/stylesheets/css/Lungo.layout.article.css

@@ -1,7 +1,7 @@
 /**
  * Stylesheet
  *
- * @namespace LUNGO.Layout
+ * @namespace Lungo.Layout
  * @class Article
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi

+ 1 - 1
src/stylesheets/css/Lungo.layout.css

@@ -1,7 +1,7 @@
 /**
  * Stylesheet
  *
- * @namespace LUNGO
+ * @namespace Lungo
  * @class Layout
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi

+ 1 - 1
src/stylesheets/css/Lungo.layout.nav.css

@@ -1,7 +1,7 @@
 /**
  * Stylesheet
  *
- * @namespace LUNGO.Layout
+ * @namespace Lungo.Layout
  * @class Nav
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi

+ 1 - 1
src/stylesheets/css/Lungo.theme.scaffold.css

@@ -1,7 +1,7 @@
 /**
  * Stylesheet
  *
- * @namespace LUNGO.Theme
+ * @namespace Lungo.Theme
  * @class Default
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi

+ 1 - 1
src/stylesheets/css/Lungo.widgets.colour.css

@@ -1,7 +1,7 @@
 /**
  * Stylesheet
  *
- * @namespace LUNGO.Widgets
+ * @namespace Lungo.Widgets
  * @class Colour
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi

+ 1 - 1
src/stylesheets/css/Lungo.widgets.css

@@ -1,7 +1,7 @@
 /**
  * Stylesheet
  *
- * @namespace LUNGO
+ * @namespace Lungo
  * @class Widgets
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi

+ 1 - 1
src/stylesheets/css/Lungo.widgets.form.css

@@ -1,7 +1,7 @@
 /**
  * Stylesheet
  *
- * @namespace LUNGO.Widgets
+ * @namespace Lungo.Widgets
  * @class Form
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi

+ 1 - 1
src/stylesheets/css/Lungo.widgets.splash.css

@@ -1,7 +1,7 @@
 /**
  * Stylesheet
  *
- * @namespace LUNGO.Widgets
+ * @namespace Lungo.Widgets
  * @class Splash
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi

+ 3 - 3
src/view/Lungo.View.Article.js

@@ -1,14 +1,14 @@
 /**
  * Initialize the <articles> layout of a certain <section>
  *
- * @namespace LUNGO.View
+ * @namespace Lungo.View
  * @class Article
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  * @author Guillermo Pascual <pasku@tapquo.com> || @pasku1
  */
 
-LUNGO.View.Article = (function(lng, undefined) {
+Lungo.View.Article = (function(lng, undefined) {
 
     var ELEMENT = lng.Constants.ELEMENT;
     var CLASS = lng.Constants.CLASS;
@@ -62,4 +62,4 @@ LUNGO.View.Article = (function(lng, undefined) {
         switchNavItems: switchNavItems
     };
 
-})(LUNGO);
+})(Lungo);

+ 3 - 3
src/view/Lungo.View.Aside.js

@@ -1,13 +1,13 @@
 /**
  * Initialize the <articles> layout of a certain <section>
  *
- * @namespace LUNGO.View
+ * @namespace Lungo.View
  * @class Aside
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  */
 
-LUNGO.View.Aside = (function(lng, undefined) {
+Lungo.View.Aside = (function(lng, undefined) {
 
     var ELEMENT = lng.Constants.ELEMENT;
     var CLASS = lng.Constants.CLASS;
@@ -111,4 +111,4 @@ LUNGO.View.Aside = (function(lng, undefined) {
         hide: hide
     };
 
-})(LUNGO);
+})(Lungo);

+ 5 - 5
src/view/Lungo.View.Element.js

@@ -1,13 +1,13 @@
 /**
  * Initialize the <articles> layout of a certain <section>
  *
- * @namespace LUNGO.View
+ * @namespace Lungo.View
  * @class Element
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  */
 
-LUNGO.View.Element = (function(lng, undefined) {
+Lungo.View.Element = (function(lng, undefined) {
 
     var ATTRIBUTE = lng.Constants.ATTRIBUTE;
     var BINDING = lng.Constants.BINDING;
@@ -71,7 +71,7 @@ LUNGO.View.Element = (function(lng, undefined) {
 
         if (element) {
             if (stylesheet) {
-                _bindAttribute(element, LUNGO.Attributes.Data.Loading, stylesheet);
+                _bindAttribute(element, Lungo.Attributes.Data.Loading, stylesheet);
             }
             else {
                 element.children('.loading').remove();
@@ -86,7 +86,7 @@ LUNGO.View.Element = (function(lng, undefined) {
         if (total_bubbles > 0) {
             bubbles.html(count);
         } else {
-            _bindAttribute(element, LUNGO.Attributes.Data.Count, count);
+            _bindAttribute(element, Lungo.Attributes.Data.Count, count);
         }
     };
 
@@ -101,4 +101,4 @@ LUNGO.View.Element = (function(lng, undefined) {
         loading: loading
     };
 
-})(LUNGO);
+})(Lungo);

+ 3 - 3
src/view/Lungo.View.Resize.js

@@ -1,14 +1,14 @@
 /**
  *
  *
- * @namespace LUNGO.View
+ * @namespace Lungo.View
  * @class Resize
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  * @author Guillermo Pascual <pasku@tapquo.com> || @pasku1
  */
 
-LUNGO.View.Resize = (function(lng, undefined) {
+Lungo.View.Resize = (function(lng, undefined) {
 
     var ATTRIBUTE = lng.Constants.ATTRIBUTE;
 
@@ -36,4 +36,4 @@ LUNGO.View.Resize = (function(lng, undefined) {
         toolbars: toolbars
     };
 
-})(LUNGO);
+})(Lungo);

+ 3 - 3
src/view/Lungo.View.Template.Binding.js

@@ -1,14 +1,14 @@
 /**
  * Lungo Data-Binding system
  *
- * @namespace LUNGO.View.Template
+ * @namespace Lungo.View.Template
  * @class Binding
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  * @author Guillermo Pascual <pasku@tapquo.com> || @pasku1
  */
 
-LUNGO.View.Template.Binding = (function(lng, undefined) {
+Lungo.View.Template.Binding = (function(lng, undefined) {
 
     var BINDING = lng.Constants.BINDING;
     var ERROR = lng.Constants.ERROR;
@@ -70,4 +70,4 @@ LUNGO.View.Template.Binding = (function(lng, undefined) {
         dataAttribute: dataAttribute
     };
 
-})(LUNGO);
+})(Lungo);

+ 3 - 3
src/view/Lungo.View.Template.List.js

@@ -1,14 +1,14 @@
 /**
  * Auto generate lists based on Template and Data-Binding system
  *
- * @namespace LUNGO.View.Template
+ * @namespace Lungo.View.Template
  * @class List
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  * @author Guillermo Pascual <pasku@tapquo.com> || @pasku1
  */
 
-LUNGO.View.Template.List = (function(lng, undefined) {
+Lungo.View.Template.List = (function(lng, undefined) {
 
     var ERROR = lng.Constants.ERROR;
     var ATTRIBUTE = lng.Constants.ATTRIBUTE;
@@ -98,4 +98,4 @@ LUNGO.View.Template.List = (function(lng, undefined) {
         prepend: prepend
     };
 
-})(LUNGO);
+})(Lungo);

+ 3 - 3
src/view/Lungo.View.Template.js

@@ -1,14 +1,14 @@
 /**
  * Lungo Template system
  *
- * @namespace LUNGO.View
+ * @namespace Lungo.View
  * @class Template
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  * @author Guillermo Pascual <pasku@tapquo.com> || @pasku1
  */
 
-LUNGO.View.Template = (function(lng, undefined) {
+Lungo.View.Template = (function(lng, undefined) {
 
     var ERROR = lng.Constants.ERROR;
 
@@ -102,4 +102,4 @@ LUNGO.View.Template = (function(lng, undefined) {
         html: html
     };
 
-})(LUNGO);
+})(Lungo);