metadata.yml

changeset 7
bfc568736c13
parent 6
266242703b38
equal deleted inserted replaced
6:266242703b38 7:bfc568736c13
88 count(implementations.xep_id) as implementations 88 count(implementations.xep_id) as implementations
89 from 89 from
90 xeps 90 xeps
91 join implementations on implementations.xep_id = xeps.id 91 join implementations on implementations.xep_id = xeps.id
92 where 92 where
93 status = "Deferred" 93 xeps.status = "Deferred"
94 group by 94 group by
95 xeps.id 95 xeps.id
96 order by 96 order by
97 implementations desc, last_updated desc; 97 implementations desc, last_updated desc;
98 expiring: 98 expiring:
106 count(implementations.xep_id) as implementations 106 count(implementations.xep_id) as implementations
107 from 107 from
108 xeps 108 xeps
109 join implementations on implementations.xep_id = xeps.id 109 join implementations on implementations.xep_id = xeps.id
110 where 110 where
111 status = "Experimental" 111 xeps.status = "Experimental"
112 group by 112 group by
113 xeps.id 113 xeps.id
114 order by 114 order by
115 last_updated asc; 115 last_updated asc;
116 last_call: 116 last_call:
122 xeps.title, 122 xeps.title,
123 xeps.last_updated 123 xeps.last_updated
124 from 124 from
125 xeps 125 xeps
126 where 126 where
127 status = "Proposed" 127 xeps.status = "Proposed"
128 order by 128 order by
129 last_updated desc; 129 last_updated desc;
130 inbox: 130 inbox:
131 title: "XEPs: Inbox" 131 title: "XEPs: Inbox"
132 description: "All submissions not accepted and assigned a XEP number" 132 description: "All submissions not accepted and assigned a XEP number"

mercurial