~ubuntu-branches/debian/sid/kamailio/sid

« back to all changes in this revision

Viewing changes to modules/tmrec/doc/tmrec_admin.xml

  • Committer: Package Import Robot
  • Author(s): Victor Seva
  • Date: 2014-01-06 11:47:13 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20140106114713-t8xidp4arzrnyeya
Tags: 4.1.1-1
* New upstream release
* debian/patches:
  - add upstream fixes
* Added tls outbound websocket autheph dnssec modules
  - openssl exception added to their license
* removing sparc and ia64 from supported archs
  for mono module (Closes: #728915)

Show diffs side-by-side

added added

removed removed

Lines of Context:
127
127
                        be small enough such that subsequent intervals do not overlap. 
128
128
                        For non-recurring intervals, durations of any positive length are 
129
129
                        permitted.  Zero-length duration means <quote>forever</quote>. 
130
 
                        Negative-length durations are not allowed.
 
130
                        Negative-length durations are not allowed. See RFC 2445 for
 
131
                        the format of duration.
131
132
                        </para>
132
133
                </listitem>
133
134
                <listitem>
274
275
                <title><function>tmrec_match</function> usage</title>
275
276
                <programlisting format="linespecific">
276
277
...
277
 
        if(tmrec_match("20120101T000000|24H|weekly|||SA,SU")
 
278
        if(tmrec_match("20120101T000000|PT24H|weekly|||SA,SU")
278
279
        xdbg("it is weekend!\n");
279
 
    if(tmrec_match("20120101T083000|10H|weekly|||MO,TU,WE,TH,FR")
 
280
    if(tmrec_match("20120101T083000|PT10H|weekly|||MO,TU,WE,TH,FR")
280
281
        xdbg("it is with working hours\n");
281
282
...
282
283
</programlisting>