Changes between Version 6 and Version 7 of Development/Styles/LogEventTypes
- Timestamp:
- Aug 5, 2006 3:37:50 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Development/Styles/LogEventTypes
v6 v7 156 156 157 157 {{{ 158 159 158 <event id="ROI65V6EJS" name="memberNewNickname" occurred="2006-07-10 02:01:43 +0200"> 160 159 <message>nonex__ is now known as <span class="member">nonex</span>.</message> … … 227 226 <who hostmask="nonex@xx.yy.net" class="operator">nonex</who> 228 227 </event> 229 230 228 }}} 231 229 … … 308 306 == rejoined == 309 307 308 Happens when you rejoin the chat room after you disconnected. 309 310 === Content Model === 311 312 event ::= message 313 314 === Children === 315 316 message:: The message describing that you rejoined the chat room. 317 318 === Example === 319 320 {{{ 321 <event id="JE6Z2DV8WK" name="rejoined" occurred="2006-02-11 11:06:49 +0100"> 322 <message>You rejoined the room.</message> 323 </event> 324 }}} 325 310 326 ---- 311 327 312 328 == topicChanged == 313 329 330 Happens when someone changes the topic of the chat room. 331 332 === Content Model === 333 334 topicChanged ::= message,by,topic 335 336 === Children === 337 338 message:: The message describing that someone changed the topic. 339 340 by:: The person who changed the topic. 341 342 topic:: The new topic. 343 344 === Example === 345 346 {{{ 347 <event id="FX6RCBE3XT" name="topicChanged" occurred="2006-08-05 22:08:35 +0200"> 348 <message>You changed the topic to "AMBIAAAAAANCE!!!".</message> 349 <by self="yes" hostmask="koan@xx.xx.xx.xx">koan</by> 350 <topic>AMBIAAAAAANCE!!!</topic> 351 </event> 352 }}} 353 314 354 ---- 315 355