-
Notifications
You must be signed in to change notification settings - Fork 0
/
date.aiml
120 lines (120 loc) · 4.29 KB
/
date.aiml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<?xml version="1.0" encoding="ISO-8859-1"?>
<aiml version="1.0">
<!-- -->
<!-- Free software (c) 2011 ALICE A.I. Foundation. -->
<!-- This program is open source code released under -->
<!-- the terms of the GNU General Public License -->
<!-- as published by the Free Software Foundation. -->
<!-- Complies with AIML 1.0 Tag Set Specification -->
<!-- as adopted by the ALICE A.I. Foundation. -->
<!-- Last modified 10/5/2011 -->
<!-- -->
<category><pattern>WHAT YEAR IS THIS</pattern>
<template><date format="%Y"/>.</template>
</category>
<category><pattern>WHAT YEAR IS THIS *</pattern>
<template><date format="%Y"/>.</template>
</category>
<category><pattern>WHAT YEAR IS IT *</pattern>
<template><date format="%Y"/>.</template>
</category>
<category><pattern>WHAT MONTH IS IT *</pattern>
<template><date format="%B"/>.</template>
</category>
<category><pattern>WHAT IS THE YEAR *</pattern>
<template><date format="%Y"/>.</template>
</category>
<category><pattern>WHAT IS THE HOUR *</pattern>
<template><date format="%I %p"/>.</template>
</category>
<category><pattern>WHAT IS TODAY *</pattern>
<template><date format="%x"/>.</template>
</category>
<category><pattern>WHAT DAY IS IT *</pattern>
<template><date format="%A"/>.</template>
</category>
<category><pattern>IS TODAY SUNDAY</pattern>
<template>Today is <date format="%A"/>.</template>
</category>
<category><pattern>IS TODAY SUNDAY *</pattern>
<template>Today is <date format="%A"/>.</template>
</category>
<category><pattern>IS TODAY FRIDAY</pattern>
<template>Today is <date format="%A"/>.</template>
</category>
<category><pattern>IS TODAY FRIDAY *</pattern>
<template>Today is <date format="%A"/>.</template>
</category>
<category><pattern>IS TODAY TUESDAY</pattern>
<template>Today is <date format="%A"/>.</template>
</category>
<category><pattern>IS TODAY TUESDAY *</pattern>
<template>Today is <date format="%A"/>.</template>
</category>
<category><pattern>IS TODAY THURSDAY</pattern>
<template>Today is <date format="%A"/>.</template>
</category>
<category><pattern>IS TODAY THURSDAY *</pattern>
<template>Today is <date format="%A"/>.</template>
</category>
<category><pattern>IS TODAY SATURDAY</pattern>
<template>Today is <date format="%A"/>.</template>
</category>
<category><pattern>IS TODAY SATURDAY *</pattern>
<template>Today is <date format="%A"/>.</template>
</category>
<category><pattern>IS TODAY WEDNESDAY</pattern>
<template>Today is <date format="%A"/>.</template>
</category>
<category><pattern>IS TODAY WEDNESDAY *</pattern>
<template>Today is <date format="%A"/>.</template>
</category>
<category><pattern>IS TODAY MONDAY</pattern>
<template>Today is <date format="%A"/>.</template>
</category>
<category><pattern>IS TODAY MONDAY *</pattern>
<template>Today is <date format="%A"/>.</template>
</category>
<category><pattern>IS IT MONDAY</pattern>
<template>It is <date format="%A"/>.</template>
</category>
<category><pattern>IS IT MONDAY *</pattern>
<template>It is <date format="%A"/>.</template>
</category>
<category><pattern>IS IT WEDNESDAY</pattern>
<template>It is <date format="%A"/>.</template>
</category>
<category><pattern>IS IT WEDNESDAY *</pattern>
<template>It is <date format="%A"/>.</template>
</category>
<category><pattern>IS IT FRIDAY</pattern>
<template>It is <date format="%A"/>.</template>
</category>
<category><pattern>IS IT FRIDAY *</pattern>
<template>It is <date format="%A"/>.</template>
</category>
<category><pattern>IS IT SATURDAY</pattern>
<template>It is <date format="%A"/>.</template>
</category>
<category><pattern>IS IT SATURDAY *</pattern>
<template>It is <date format="%A"/>.</template>
</category>
<category><pattern>IS IT THURSDAY</pattern>
<template>It is <date format="%A"/>.</template>
</category>
<category><pattern>IS IT THURSDAY *</pattern>
<template>It is <date format="%A"/>.</template>
</category>
<category><pattern>IS IT SUNDAY</pattern>
<template>It is <date format="%A"/>.</template>
</category>
<category><pattern>IS IT SUNDAY *</pattern>
<template>It is <date format="%A"/>.</template>
</category>
<category><pattern>IS IT TUESDAY</pattern>
<template>It is <date format="%A"/>.</template>
</category>
<category><pattern>IS IT TUESDAY *</pattern>
<template>It is <date format="%A"/>.</template>
</category>
</aiml>