Add memorial day to holiday dialplan example
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@15723 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
1fcea2a202
commit
b003a84c21
|
@ -46,7 +46,7 @@
|
||||||
|
|
||||||
<!-- Example of routing based on holidays
|
<!-- Example of routing based on holidays
|
||||||
|
|
||||||
This example covers all US Federal holidays except for inauguration day and memorial day.
|
This example covers all US Federal holidays except for inauguration day.
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<extension name="holiday_example" continue="true">
|
<extension name="holiday_example" continue="true">
|
||||||
|
@ -62,6 +62,10 @@
|
||||||
<!-- president's day is the 3rd monday in february -->
|
<!-- president's day is the 3rd monday in february -->
|
||||||
<action application="set" data="open=false"/>
|
<action application="set" data="open=false"/>
|
||||||
</condition>
|
</condition>
|
||||||
|
<condition wday="2" mon="5" mday="25-31">
|
||||||
|
<!-- memorial day is the last monday in may (the only monday between the 25th and the 31st) -->
|
||||||
|
<action application="set" data="open=false"/>
|
||||||
|
</condition>
|
||||||
<condition mday="4" mon="6">
|
<condition mday="4" mon="6">
|
||||||
<!-- independence day -->
|
<!-- independence day -->
|
||||||
<action application="set" data="open=false"/>
|
<action application="set" data="open=false"/>
|
||||||
|
|
Loading…
Reference in New Issue