fullcalendar-rails 1.5.3.0 → 1.5.4.0

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -31,7 +31,7 @@ See the website of the original project for the usage, or my original Rails3 exa
31
31
 
32
32
  ## Versioning
33
33
 
34
- I am going to version this gem with the version of the fullceldnar code I use, adding an extra digit if I need to release any maintenance versions of the gem itself. Therefore, since this is a first version of this gem and I'm starting by bundling version 1.5.3 of the fullcalendar code, this is version 1.5.3.0
34
+ I am going to version this gem with the version of the fullceldnar code I use, adding an extra digit if I need to release any maintenance versions of the gem itself. Therefore, since this is a first version of this gem and I'm starting by bundling version 1.5.3 of the fullcalendar code, this is version 1.5.4.0
35
35
 
36
36
 
37
37
  ## Contributing
@@ -1,5 +1,5 @@
1
1
  module Fullcalendar
2
2
  module Rails
3
- VERSION = "1.5.3.0"
3
+ VERSION = "1.5.4.0"
4
4
  end
5
5
  end
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @preserve
3
- * FullCalendar v1.5.3
3
+ * FullCalendar v1.5.4
4
4
  * http://arshaw.com/fullcalendar/
5
5
  *
6
6
  * Use fullcalendar.css for basic styling.
@@ -11,7 +11,7 @@
11
11
  * Dual licensed under the MIT and GPL licenses, located in
12
12
  * MIT-LICENSE.txt and GPL-LICENSE.txt respectively.
13
13
  *
14
- * Date: Mon Feb 6 22:40:40 2012 -0800
14
+ * Date: Tue Sep 4 23:38:33 2012 -0700
15
15
  *
16
16
  */
17
17
 
@@ -111,7 +111,7 @@ var rtlDefaults = {
111
111
 
112
112
 
113
113
 
114
- var fc = $.fullCalendar = { version: "1.5.3" };
114
+ var fc = $.fullCalendar = { version: "1.5.4" };
115
115
  var fcViews = fc.views = {};
116
116
 
117
117
 
@@ -1658,7 +1658,7 @@ function sliceSegs(events, visEventEnds, start, end) {
1658
1658
  msLength: segEnd - segStart
1659
1659
  });
1660
1660
  }
1661
- }
1661
+ }
1662
1662
  return segs.sort(segCmp);
1663
1663
  }
1664
1664
 
@@ -1742,29 +1742,26 @@ function setOuterHeight(element, height, includeMargins) {
1742
1742
  }
1743
1743
 
1744
1744
 
1745
- // TODO: curCSS has been deprecated (jQuery 1.4.3 - 10/16/2010)
1746
-
1747
-
1748
1745
  function hsides(element, includeMargins) {
1749
1746
  return hpadding(element) + hborders(element) + (includeMargins ? hmargins(element) : 0);
1750
1747
  }
1751
1748
 
1752
1749
 
1753
1750
  function hpadding(element) {
1754
- return (parseFloat($.curCSS(element[0], 'paddingLeft', true)) || 0) +
1755
- (parseFloat($.curCSS(element[0], 'paddingRight', true)) || 0);
1751
+ return (parseFloat($.css(element[0], 'paddingLeft', true)) || 0) +
1752
+ (parseFloat($.css(element[0], 'paddingRight', true)) || 0);
1756
1753
  }
1757
1754
 
1758
1755
 
1759
1756
  function hmargins(element) {
1760
- return (parseFloat($.curCSS(element[0], 'marginLeft', true)) || 0) +
1761
- (parseFloat($.curCSS(element[0], 'marginRight', true)) || 0);
1757
+ return (parseFloat($.css(element[0], 'marginLeft', true)) || 0) +
1758
+ (parseFloat($.css(element[0], 'marginRight', true)) || 0);
1762
1759
  }
1763
1760
 
1764
1761
 
1765
1762
  function hborders(element) {
1766
- return (parseFloat($.curCSS(element[0], 'borderLeftWidth', true)) || 0) +
1767
- (parseFloat($.curCSS(element[0], 'borderRightWidth', true)) || 0);
1763
+ return (parseFloat($.css(element[0], 'borderLeftWidth', true)) || 0) +
1764
+ (parseFloat($.css(element[0], 'borderRightWidth', true)) || 0);
1768
1765
  }
1769
1766
 
1770
1767
 
@@ -1774,20 +1771,20 @@ function vsides(element, includeMargins) {
1774
1771
 
1775
1772
 
1776
1773
  function vpadding(element) {
1777
- return (parseFloat($.curCSS(element[0], 'paddingTop', true)) || 0) +
1778
- (parseFloat($.curCSS(element[0], 'paddingBottom', true)) || 0);
1774
+ return (parseFloat($.css(element[0], 'paddingTop', true)) || 0) +
1775
+ (parseFloat($.css(element[0], 'paddingBottom', true)) || 0);
1779
1776
  }
1780
1777
 
1781
1778
 
1782
1779
  function vmargins(element) {
1783
- return (parseFloat($.curCSS(element[0], 'marginTop', true)) || 0) +
1784
- (parseFloat($.curCSS(element[0], 'marginBottom', true)) || 0);
1780
+ return (parseFloat($.css(element[0], 'marginTop', true)) || 0) +
1781
+ (parseFloat($.css(element[0], 'marginBottom', true)) || 0);
1785
1782
  }
1786
1783
 
1787
1784
 
1788
1785
  function vborders(element) {
1789
- return (parseFloat($.curCSS(element[0], 'borderTopWidth', true)) || 0) +
1790
- (parseFloat($.curCSS(element[0], 'borderBottomWidth', true)) || 0);
1786
+ return (parseFloat($.css(element[0], 'borderTopWidth', true)) || 0) +
1787
+ (parseFloat($.css(element[0], 'borderBottomWidth', true)) || 0);
1791
1788
  }
1792
1789
 
1793
1790
 
@@ -1956,7 +1953,6 @@ function firstDefined() {
1956
1953
  }
1957
1954
 
1958
1955
 
1959
-
1960
1956
  fcViews.month = MonthView;
1961
1957
 
1962
1958
  function MonthView(element, calendar) {
@@ -1,11 +1,11 @@
1
1
  /*
2
- * FullCalendar v1.5.3 Stylesheet
2
+ * FullCalendar v1.5.4 Stylesheet
3
3
  *
4
4
  * Copyright (c) 2011 Adam Shaw
5
5
  * Dual licensed under the MIT and GPL licenses, located in
6
6
  * MIT-LICENSE.txt and GPL-LICENSE.txt respectively.
7
7
  *
8
- * Date: Mon Feb 6 22:40:40 2012 -0800
8
+ * Date: Tue Sep 4 23:38:33 2012 -0700
9
9
  *
10
10
  */
11
11
 
@@ -1,5 +1,5 @@
1
1
  /*
2
- * FullCalendar v1.5.3 Print Stylesheet
2
+ * FullCalendar v1.5.4 Print Stylesheet
3
3
  *
4
4
  * Include this stylesheet on your page to get a more printer-friendly calendar.
5
5
  * When including this stylesheet, use the media='print' attribute of the <link> tag.
@@ -9,7 +9,7 @@
9
9
  * Dual licensed under the MIT and GPL licenses, located in
10
10
  * MIT-LICENSE.txt and GPL-LICENSE.txt respectively.
11
11
  *
12
- * Date: Mon Feb 6 22:40:40 2012 -0800
12
+ * Date: Tue Sep 4 23:38:33 2012 -0700
13
13
  *
14
14
  */
15
15
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fullcalendar-rails
3
3
  version: !ruby/object:Gem::Version
4
- hash: 123
4
+ hash: 103
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 5
9
- - 3
9
+ - 4
10
10
  - 0
11
- version: 1.5.3.0
11
+ version: 1.5.4.0
12
12
  platform: ruby
13
13
  authors:
14
14
  - bokmann
@@ -16,10 +16,12 @@ autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
18
 
19
- date: 2012-03-19 00:00:00 Z
19
+ date: 2012-10-13 00:00:00 -04:00
20
+ default_executable:
20
21
  dependencies:
21
22
  - !ruby/object:Gem::Dependency
22
- type: :development
23
+ name: rake
24
+ prerelease: false
23
25
  requirement: &id001 !ruby/object:Gem::Requirement
24
26
  none: false
25
27
  requirements:
@@ -29,9 +31,8 @@ dependencies:
29
31
  segments:
30
32
  - 0
31
33
  version: "0"
32
- name: rake
34
+ type: :development
33
35
  version_requirements: *id001
34
- prerelease: false
35
36
  description: FullCalendar is a fantastic jquery plugin that gives you an event calendar with tons of great ajax wizardry, incluing drag and drop of events. I like having managed pipeline assets, so I gemified it.
36
37
  email:
37
38
  - dbock@codesherpas.com
@@ -53,6 +54,7 @@ files:
53
54
  - vendor/assets/javascripts/fullcalendar.js
54
55
  - vendor/assets/stylesheets/fullcalendar.css
55
56
  - vendor/assets/stylesheets/fullcalendar.print.css
57
+ has_rdoc: true
56
58
  homepage: https://github.com/bokmann/fullcalendar-rails
57
59
  licenses: []
58
60
 
@@ -82,7 +84,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
82
84
  requirements: []
83
85
 
84
86
  rubyforge_project:
85
- rubygems_version: 1.8.10
87
+ rubygems_version: 1.6.2
86
88
  signing_key:
87
89
  specification_version: 3
88
90
  summary: A simple asset pipeline bundling of the fullcalendar jquery plugin.