Plugin Directory

Changeset 452301


Ignore:
Timestamp:
10/18/2011 04:41:30 AM (14 years ago)
Author:
beshkin
Message:

tagging version 1.13.1

Location:
zmanim-widget
Files:
3 edited
17 copied

Legend:

Unmodified
Added
Removed
  • zmanim-widget/tags/1.13.1/functions.php

    r449355 r452301  
    5050    {
    5151        $in_dst="true";
    52         if (($jewishMonth_t >=1) && ($sunday_ts <= $ts))
     52        if ($jewishMonth_t >=1)
    5353        {
    5454            $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            }
    5566        }
    56         if (($jewishMonth_t <=7) && ($sunday_ts >= $ts))
     67        if ($jewishMonth_t ==7)
    5768        {
    58             $in_dst="false";
     69            if ($jewishDay_t <= 15 ) $in_dst="false";
    5970        }
    6071    }
  • zmanim-widget/tags/1.13.1/readme.txt

    r449355 r452301  
    44Requires at least: 2.7
    55Tested up from : 3.0
    6 Stable tag: 1.13
     6Stable tag: 1.13.1
    77
    88Displays Jewish calendar information in a widget.
     
    2424
    2525== Changelog ==
     26= 1.13.1 =
     27- modified mechanism for detecting DST time in Israel
    2628= 1.13 =
    2729- added mechanism for detection of Israel Day Saving Time.
  • zmanim-widget/tags/1.13.1/zmanim-widget.php

    r449355 r452301  
    44 Plugin URI: http://kosherdev.com/category/zmanim-widget/
    55 Description: Allows to show zmanim, upcoming hollidays and current Torah chapter on your Wordpress site.
    6  Version: 1.13
     6 Version: 1.13.1
    77 Author: Misha Beshkin
    88 Author URI: http://misha.beshkin.lv/
  • zmanim-widget/trunk/functions.php

    r449355 r452301  
    5050    {
    5151        $in_dst="true";
    52         if (($jewishMonth_t >=1) && ($sunday_ts <= $ts))
     52        if ($jewishMonth_t >=1)
    5353        {
    5454            $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            }
    5566        }
    56         if (($jewishMonth_t <=7) && ($sunday_ts >= $ts))
     67        if ($jewishMonth_t ==7)
    5768        {
    58             $in_dst="false";
     69            if ($jewishDay_t <= 15 ) $in_dst="false";
    5970        }
    6071    }
  • zmanim-widget/trunk/readme.txt

    r449355 r452301  
    44Requires at least: 2.7
    55Tested up from : 3.0
    6 Stable tag: 1.13
     6Stable tag: 1.13.1
    77
    88Displays Jewish calendar information in a widget.
     
    2424
    2525== Changelog ==
     26= 1.13.1 =
     27- modified mechanism for detecting DST time in Israel
    2628= 1.13 =
    2729- added mechanism for detection of Israel Day Saving Time.
  • zmanim-widget/trunk/zmanim-widget.php

    r449355 r452301  
    44 Plugin URI: http://kosherdev.com/category/zmanim-widget/
    55 Description: Allows to show zmanim, upcoming hollidays and current Torah chapter on your Wordpress site.
    6  Version: 1.13
     6 Version: 1.13.1
    77 Author: Misha Beshkin
    88 Author URI: http://misha.beshkin.lv/
Note: See TracChangeset for help on using the changeset viewer.