Index: trunk/phase3/includes/OutputPage.php |
— | — | @@ -5,16 +5,16 @@ |
6 | 6 | |
7 | 7 | /** |
8 | 8 | * This class should be covered by a general architecture document which does |
9 | | - * not exist as of january 2011. This is one of the Core class and should |
| 9 | + * not exist as of January 2011. This is one of the Core classes and should |
10 | 10 | * be read at least once by any new developers. |
11 | 11 | * |
12 | 12 | * This class is used to prepare the final rendering. A skin is then |
13 | 13 | * applied to the output parameters (links, javascript, html, categories ...). |
14 | 14 | * |
15 | | - * Another class (fixme) handle sending the whole page to the client. |
| 15 | + * Another class (fixme) handles sending the whole page to the client. |
16 | 16 | * |
17 | 17 | * Some comments comes from a pairing session between Zak Greant and Ashar Voultoiz |
18 | | - * in november 2010. |
| 18 | + * in November 2010. |
19 | 19 | * |
20 | 20 | * @todo document |
21 | 21 | */ |
— | — | @@ -37,9 +37,9 @@ |
38 | 38 | var $mBodytext = ''; |
39 | 39 | |
40 | 40 | /** |
41 | | - * Holds the debug lines that will be outputted as comments in page source if |
| 41 | + * Holds the debug lines that will be outputt as comments in page source if |
42 | 42 | * $wgDebugComments is enabled. See also $wgShowDebug. |
43 | | - * TODO: make a getter method for this |
| 43 | + * TODO: make a better method for this |
44 | 44 | */ |
45 | 45 | public $mDebugtext = ''; // TODO: we might want to replace it by wfDebug() wfDebugLog() |
46 | 46 | |
— | — | @@ -68,7 +68,7 @@ |
69 | 69 | |
70 | 70 | /** |
71 | 71 | * mLastModified and mEtag are used for sending cache control. |
72 | | - * The whole caching system should probably be moved in its own class. |
| 72 | + * The whole caching system should probably be moved into its own class. |
73 | 73 | */ |
74 | 74 | var $mLastModified = ''; |
75 | 75 | |
— | — | @@ -76,8 +76,8 @@ |
77 | 77 | * Should be private. No getter but used in sendCacheControl(); |
78 | 78 | * Contains an HTTP Entity Tags (see RFC 2616 section 3.13) which is used |
79 | 79 | * as a unique identifier for the content. It is later used by the client |
80 | | - * to compare its cache version with the server version. Client sends |
81 | | - * headers If-Match and If-None-Match containing its local cache ETAG value. |
| 80 | + * to compare its cached version with the server version. Client sends |
| 81 | + * headers If-Match and If-None-Match containing its locally cached ETAG value. |
82 | 82 | * |
83 | 83 | * To get more information, you will have to look at HTTP1/1 protocols which |
84 | 84 | * is properly described in RFC 2616 : http://tools.ietf.org/html/rfc2616 |