Naruto Fanon Wiki
Advertisement
  1. This is a title blacklist. Titles and users that match a regular expression here cannot be created.
  2. Use "#" for comments.
  3. This is case insensitive by default
# Prevent dates in filenames
^File:.*201[0-9]-[0-3]?[0-9]-[0-3]?[0-9].*
# Prevent any website names
\.(com|org|net)
# Prevent uploads of old versions of images with their FilePath name
^File:[0-9]{5,}!.*\.(jpe?g|png|svg)
# Prevent uploads of resized images with their FilePath name
^File:[0-9]{1,3}px\-.*\.(jpe?g|png|svg)
# Prevent alloneword file names when they don't need to be all one word; 15 should be a safe threshold
^File:[^ ]{15,}\.(jpe?g|png|svg)$
# Prevent all CAPSLOCK file names
^File:[A-Z]+\.([Pp](ng|NG)|[Ss](vg|VG)|[Jj](pe?g|PE?G)) <casesensitive>
Advertisement