Hebrew calendar software creators: can you notify this list when updating the calendar?
kobi zamir
kobi.zamir at gmail.com
Wed Apr 14 18:13:12 IDT 2010
you can generate the list automatically using some scripting language
, e.g. python:
on debian:
# apt-get install libhdate-python
#--------------------------------------------------------
import hdate
year = 2010
h = hdate.Hdate()
h.set_gdate(1,1,2010)
julian = h.get_julian()
for i in range(0,365):
h.set_jd(julian)
julian += 1
day = h.get_gday()
month = h.get_gmonth()
holyday = h.get_holyday_string(1)
if holyday:
print "%02d/%02d* %s" % (day, month, holyday)
#-----------------------------------------------
2010/4/14 Shachar Shemesh <shachar at shemesh.biz>:
> Dotan Cohen wrote:
>
> It looks like it would need to be hand edited
>
>
>
> Watch your language!
>
> Shachar
>
>
> --
> Shachar Shemesh
> Lingnu Open Source Consulting Ltd.
> http://www.lingnu.com
>
> _______________________________________________
> Linux-il mailing list
> Linux-il at cs.huji.ac.il
> http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il
>
>
More information about the Linux-il
mailing list