|
|
| /* botでなく */ | | /* botでなく */ |
| !("bot" in user_groups) | | !("bot" in user_groups) |
|
| |
|
| & | | & |
| /*通常記事空間内で*/ | | /*通常記事空間内で*/ |
| article_namespace = 0 | | article_namespace = 0 |
| & | | & |
| /*以下のマジックワードを*/ | | /*以下のマジックワードを*/ |
| ( | | ( |
| ( (new_text contains "{{CURRENTYEAR}}")? 1 : 0) | | ( (new_wikitext contains "{{CURRENTYEAR}}")? 1 : 0) |
| +( (new_text contains "{{CURRENTMONTH}}")? 1 : 0) | | +( (new_wikitext contains "{{CURRENTMONTH}}")? 1 : 0) |
| +( (new_text contains "{{CURRENTDAY}}")? 1 : 0) | | +( (new_wikitext contains "{{CURRENTDAY}}")? 1 : 0) |
| +( (new_text contains "{{CURRENTTIME}}")? 1 : 0) | | +( (new_wikitext contains "{{CURRENTTIME}}")? 1 : 0) |
| +( (new_text contains "{{CURRENTDAY2}}")? 1 : 0) | | +( (new_wikitext contains "{{CURRENTDAY2}}")? 1 : 0) |
| +( (new_text contains "{{CURRENTDOW}}")? 1 : 0) | | +( (new_wikitext contains "{{CURRENTDOW}}")? 1 : 0) |
| +( (new_text contains "{{CURRENTMONTHABBREV}}")? 1 : 0) | | +( (new_wikitext contains "{{CURRENTMONTHABBREV}}")? 1 : 0) |
| +( (new_text contains "{{CURRENTMONTHNAME}}")? 1 : 0) | | +( (new_wikitext contains "{{CURRENTMONTHNAME}}")? 1 : 0) |
| +( (new_text contains "{{CURRENTTIME}}")? 1 : 0) | | +( (new_wikitext contains "{{CURRENTTIME}}")? 1 : 0) |
| +( (new_text contains "{{CURRENTHOUR}}")? 1 : 0) | | +( (new_wikitext contains "{{CURRENTHOUR}}")? 1 : 0) |
| +( (new_text contains "{{CURRENTWEEK}}")? 1 : 0) | | +( (new_wikitext contains "{{CURRENTWEEK}}")? 1 : 0) |
| +( (new_text contains "{{CURRENTTIMESTAMP}}")? 1 : 0) | | +( (new_wikitext contains "{{CURRENTTIMESTAMP}}")? 1 : 0) |
| +( (new_text contains "{{LOCALYEAR}}")? 1 : 0) | | +( (new_wikitext contains "{{LOCALYEAR}}")? 1 : 0) |
| +( (new_text contains "{{LOCALMONTH}}")? 1 : 0) | | +( (new_wikitext contains "{{LOCALMONTH}}")? 1 : 0) |
| +( (new_text contains "{{LOCALDAY}}")? 1 : 0) | | +( (new_wikitext contains "{{LOCALDAY}}")? 1 : 0) |
| +( (new_text contains "{{LOCALTIME}}")? 1 : 0) | | +( (new_wikitext contains "{{LOCALTIME}}")? 1 : 0) |
| +( (new_text contains "{{LOCALDAY2}}")? 1 : 0) | | +( (new_wikitext contains "{{LOCALDAY2}}")? 1 : 0) |
| +( (new_text contains "{{LOCALDOW}}")? 1 : 0) | | +( (new_wikitext contains "{{LOCALDOW}}")? 1 : 0) |
| +( (new_text contains "{{LOCALMONTHABBREV}}")? 1 : 0) | | +( (new_wikitext contains "{{LOCALMONTHABBREV}}")? 1 : 0) |
| +( (new_text contains "{{LOCALMONTHNAME}}")? 1 : 0) | | +( (new_wikitext contains "{{LOCALMONTHNAME}}")? 1 : 0) |
| +( (new_text contains "{{LOCALTIME}}")? 1 : 0) | | +( (new_wikitext contains "{{LOCALTIME}}")? 1 : 0) |
| +( (new_text contains "{{LOCALHOUR}}")? 1 : 0) | | +( (new_wikitext contains "{{LOCALHOUR}}")? 1 : 0) |
| +( (new_text contains "{{LOCALWEEK}}")? 1 : 0) | | +( (new_wikitext contains "{{LOCALWEEK}}")? 1 : 0) |
| +( (new_text contains "{{LOCALTIMESTAMP}}")? 1 : 0) | | +( (new_wikitext contains "{{LOCALTIMESTAMP}}")? 1 : 0) |
| /*1つ以上含む*/ | | /*1つ以上含む*/ |
| >= 1) | | >= 1) |