Changeset 452301
- Timestamp:
- 10/18/2011 04:41:30 AM (14 years ago)
- Location:
- zmanim-widget
- Files:
-
- 3 edited
- 17 copied
-
tags/1.13.1 (copied) (copied from zmanim-widget/trunk)
-
tags/1.13.1/config.php (copied) (copied from zmanim-widget/trunk/config.php)
-
tags/1.13.1/config_admin.php (copied) (copied from zmanim-widget/trunk/config_admin.php)
-
tags/1.13.1/functions.php (copied) (copied from zmanim-widget/trunk/functions.php) (1 diff)
-
tags/1.13.1/hdate/day.php (copied) (copied from zmanim-widget/trunk/hdate/day.php)
-
tags/1.13.1/hdate/hdate.php (copied) (copied from zmanim-widget/trunk/hdate/hdate.php)
-
tags/1.13.1/hdate/hol.php (copied) (copied from zmanim-widget/trunk/hdate/hol.php)
-
tags/1.13.1/hdate/today.php (copied) (copied from zmanim-widget/trunk/hdate/today.php)
-
tags/1.13.1/lib/main.js (copied) (copied from zmanim-widget/trunk/lib/main.js)
-
tags/1.13.1/lib/main_admin.js (copied) (copied from zmanim-widget/trunk/lib/main_admin.js)
-
tags/1.13.1/localization/zmanim-ru_RU.mo (copied) (copied from zmanim-widget/trunk/localization/zmanim-ru_RU.mo)
-
tags/1.13.1/localization/zmanim-ru_RU.po (copied) (copied from zmanim-widget/trunk/localization/zmanim-ru_RU.po)
-
tags/1.13.1/message.php (copied) (copied from zmanim-widget/trunk/message.php)
-
tags/1.13.1/readme.txt (copied) (copied from zmanim-widget/trunk/readme.txt) (2 diffs)
-
tags/1.13.1/week_zmanin.php (copied) (copied from zmanim-widget/trunk/week_zmanin.php)
-
tags/1.13.1/weeklytorah.php (copied) (copied from zmanim-widget/trunk/weeklytorah.php)
-
tags/1.13.1/zmanim-widget.php (copied) (copied from zmanim-widget/trunk/zmanim-widget.php) (1 diff)
-
trunk/functions.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/zmanim-widget.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
zmanim-widget/tags/1.13.1/functions.php
r449355 r452301 50 50 { 51 51 $in_dst="true"; 52 if ( ($jewishMonth_t >=1) && ($sunday_ts <= $ts))52 if ($jewishMonth_t >=1) 53 53 { 54 54 $in_dst="false"; 55 if (($jewishMonth_t == 1) && ($jewishDay_t <= 10)) 56 { 57 $jdYomKipur = jewishtojd(1,10,$jewishYear_t); 58 $gregrianYomKipur= jdtogregorian($jdYomKipur); 59 list($grMonth,$grDay,$grYear) = split('/', $gregrianYomKipur); 60 $YomKipur_ts = mktime(0,0,0,$grMonth, $grDay, $grYear); 61 $week_dayYomKipur=date("w",$YomKipur_ts); 62 $sundayBeforeYomKipur_ts = $YomKipur_ts-(60 * 60 * 24*($week_dayYomKipur)); 63 64 if ($ts < $sundayBeforeYomKipur_ts) $in_dst="true"; 65 } 55 66 } 56 if ( ($jewishMonth_t <=7) && ($sunday_ts >= $ts))67 if ($jewishMonth_t ==7) 57 68 { 58 $in_dst="false";69 if ($jewishDay_t <= 15 ) $in_dst="false"; 59 70 } 60 71 } -
zmanim-widget/tags/1.13.1/readme.txt
r449355 r452301 4 4 Requires at least: 2.7 5 5 Tested up from : 3.0 6 Stable tag: 1.13 6 Stable tag: 1.13.1 7 7 8 8 Displays Jewish calendar information in a widget. … … 24 24 25 25 == Changelog == 26 = 1.13.1 = 27 - modified mechanism for detecting DST time in Israel 26 28 = 1.13 = 27 29 - added mechanism for detection of Israel Day Saving Time. -
zmanim-widget/tags/1.13.1/zmanim-widget.php
r449355 r452301 4 4 Plugin URI: http://kosherdev.com/category/zmanim-widget/ 5 5 Description: Allows to show zmanim, upcoming hollidays and current Torah chapter on your Wordpress site. 6 Version: 1.13 6 Version: 1.13.1 7 7 Author: Misha Beshkin 8 8 Author URI: http://misha.beshkin.lv/ -
zmanim-widget/trunk/functions.php
r449355 r452301 50 50 { 51 51 $in_dst="true"; 52 if ( ($jewishMonth_t >=1) && ($sunday_ts <= $ts))52 if ($jewishMonth_t >=1) 53 53 { 54 54 $in_dst="false"; 55 if (($jewishMonth_t == 1) && ($jewishDay_t <= 10)) 56 { 57 $jdYomKipur = jewishtojd(1,10,$jewishYear_t); 58 $gregrianYomKipur= jdtogregorian($jdYomKipur); 59 list($grMonth,$grDay,$grYear) = split('/', $gregrianYomKipur); 60 $YomKipur_ts = mktime(0,0,0,$grMonth, $grDay, $grYear); 61 $week_dayYomKipur=date("w",$YomKipur_ts); 62 $sundayBeforeYomKipur_ts = $YomKipur_ts-(60 * 60 * 24*($week_dayYomKipur)); 63 64 if ($ts < $sundayBeforeYomKipur_ts) $in_dst="true"; 65 } 55 66 } 56 if ( ($jewishMonth_t <=7) && ($sunday_ts >= $ts))67 if ($jewishMonth_t ==7) 57 68 { 58 $in_dst="false";69 if ($jewishDay_t <= 15 ) $in_dst="false"; 59 70 } 60 71 } -
zmanim-widget/trunk/readme.txt
r449355 r452301 4 4 Requires at least: 2.7 5 5 Tested up from : 3.0 6 Stable tag: 1.13 6 Stable tag: 1.13.1 7 7 8 8 Displays Jewish calendar information in a widget. … … 24 24 25 25 == Changelog == 26 = 1.13.1 = 27 - modified mechanism for detecting DST time in Israel 26 28 = 1.13 = 27 29 - added mechanism for detection of Israel Day Saving Time. -
zmanim-widget/trunk/zmanim-widget.php
r449355 r452301 4 4 Plugin URI: http://kosherdev.com/category/zmanim-widget/ 5 5 Description: Allows to show zmanim, upcoming hollidays and current Torah chapter on your Wordpress site. 6 Version: 1.13 6 Version: 1.13.1 7 7 Author: Misha Beshkin 8 8 Author URI: http://misha.beshkin.lv/
Note: See TracChangeset
for help on using the changeset viewer.