Index: trunk/phase3/includes/Parser.php |
— | — | @@ -4668,23 +4668,23 @@ |
4669 | 4669 | */ |
4670 | 4670 | class ParserOptions |
4671 | 4671 | { |
4672 | | - # All variables are private |
4673 | | - private $mUseTeX; # Use texvc to expand <math> tags |
4674 | | - private $mUseDynamicDates; # Use DateFormatter to format dates |
4675 | | - private $mInterwikiMagic; # Interlanguage links are removed and returned in an array |
4676 | | - private $mAllowExternalImages; # Allow external images inline |
4677 | | - private $mAllowExternalImagesFrom; # If not, any exception? |
4678 | | - private $mSkin; # Reference to the preferred skin |
4679 | | - private $mDateFormat; # Date format index |
4680 | | - private $mEditSection; # Create "edit section" links |
4681 | | - private $mNumberHeadings; # Automatically number headings |
4682 | | - private $mAllowSpecialInclusion; # Allow inclusion of special pages |
4683 | | - private $mTidy; # Ask for tidy cleanup |
4684 | | - private $mInterfaceMessage; # Which lang to call for PLURAL and GRAMMAR |
4685 | | - private $mMaxIncludeSize; # Maximum size of template expansions, in bytes |
4686 | | - private $mRemoveComments; # Remove HTML comments. ONLY APPLIES TO PREPROCESS OPERATIONS |
| 4672 | + # All variables are supposed to be private in theory, although in practise this is not the case. |
| 4673 | + var $mUseTeX; # Use texvc to expand <math> tags |
| 4674 | + var $mUseDynamicDates; # Use DateFormatter to format dates |
| 4675 | + var $mInterwikiMagic; # Interlanguage links are removed and returned in an array |
| 4676 | + var $mAllowExternalImages; # Allow external images inline |
| 4677 | + var $mAllowExternalImagesFrom; # If not, any exception? |
| 4678 | + var $mSkin; # Reference to the preferred skin |
| 4679 | + var $mDateFormat; # Date format index |
| 4680 | + var $mEditSection; # Create "edit section" links |
| 4681 | + var $mNumberHeadings; # Automatically number headings |
| 4682 | + var $mAllowSpecialInclusion; # Allow inclusion of special pages |
| 4683 | + var $mTidy; # Ask for tidy cleanup |
| 4684 | + var $mInterfaceMessage; # Which lang to call for PLURAL and GRAMMAR |
| 4685 | + var $mMaxIncludeSize; # Maximum size of template expansions, in bytes |
| 4686 | + var $mRemoveComments; # Remove HTML comments. ONLY APPLIES TO PREPROCESS OPERATIONS |
4687 | 4687 | |
4688 | | - private $mUser; # Stored user object, just used to initialise the skin |
| 4688 | + var $mUser; # Stored user object, just used to initialise the skin |
4689 | 4689 | |
4690 | 4690 | function getUseTeX() { return $this->mUseTeX; } |
4691 | 4691 | function getUseDynamicDates() { return $this->mUseDynamicDates; } |