Skip to content
This repository was archived by the owner on Apr 4, 2020. It is now read-only.

Commit bd0be85

Browse files
Moved city specific calendar files to subfolder
1 parent 25cb216 commit bd0be85

12 files changed

+44
-6
lines changed

.gitignore

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# https://gist.github.com/octocat/9257657
2+
# Compiled source #
3+
###################
4+
*.com
5+
*.class
6+
*.dll
7+
*.exe
8+
*.o
9+
*.so
10+
11+
# Packages #
12+
############
13+
# it's better to unpack these files and commit the raw source
14+
# git has its own built in compression methods
15+
*.7z
16+
*.dmg
17+
*.gz
18+
*.iso
19+
*.jar
20+
*.rar
21+
*.tar
22+
*.zip
23+
24+
# Logs and databases #
25+
######################
26+
*.log
27+
*.sql
28+
*.sqlite
29+
30+
# OS generated files #
31+
######################
32+
.DS_Store
33+
.DS_Store?
34+
._*
35+
.Spotlight-V100
36+
.Trashes
37+
ehthumbs.db
38+
Thumbs.db

src/calendars.jl

+6-6
Original file line numberDiff line numberDiff line change
@@ -141,9 +141,9 @@ isgoodday(dt::TimeType, c = NoFCalendar()) = !isweekend(dt, c)
141141
# Other calendar methods
142142
#####
143143

144-
include("calendars_au.jl")
145-
include("calendars_us.jl")
146-
include("calendars_gb.jl")
147-
include("calendars_euta.jl")
148-
include("calendars_jp.jl")
149-
include("calendars_nz.jl")
144+
include("calendars/calendars_au.jl")
145+
include("calendars/calendars_us.jl")
146+
include("calendars/calendars_gb.jl")
147+
include("calendars/calendars_euta.jl")
148+
include("calendars/calendars_jp.jl")
149+
include("calendars/calendars_nz.jl")
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)