mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/TemplateData
synced 2024-11-24 07:53:37 +00:00
Merge "Various minor JSDoc/PHPDoc documentation fixes"
This commit is contained in:
commit
2839e6a9c0
|
@ -4,13 +4,12 @@
|
|||
* @ingroup Extensions
|
||||
*/
|
||||
use MediaWiki\MediaWikiServices;
|
||||
use Wikimedia\Rdbms\IDatabase;
|
||||
|
||||
/**
|
||||
* Represents the information about a template,
|
||||
* coming from the JSON blob in the <templatedata> tags
|
||||
* on wiki pages.
|
||||
*
|
||||
* @class
|
||||
*/
|
||||
class TemplateDataBlob {
|
||||
/**
|
||||
|
|
|
@ -10,8 +10,6 @@
|
|||
* on wiki pages.
|
||||
* This implementation stores the information as a compressed gzip blob
|
||||
* in the database.
|
||||
*
|
||||
* @class
|
||||
*/
|
||||
class TemplateDataCompressedBlob extends TemplateDataBlob {
|
||||
// Size of MySQL 'blob' field; page_props table where the data is stored uses one.
|
||||
|
|
|
@ -10,7 +10,7 @@ var Model = require( './Model.js' );
|
|||
* @extends OO.EventEmitter
|
||||
*
|
||||
* @constructor
|
||||
* @param {Object} config Configuration object
|
||||
* @param {Object} [config]
|
||||
* @cfg {string} [fullPageName] The full name of the current page
|
||||
* @cfg {string} [parentPage] The name of the parent page
|
||||
* @cfg {string} [isPageSubLevel] The page is sub-level of another template
|
||||
|
|
|
@ -12,7 +12,7 @@ var Dialog = require( './Dialog.js' ),
|
|||
*
|
||||
* @constructor
|
||||
* @param {jQuery} $textarea Editor textarea
|
||||
* @param {Object} config Configuration options
|
||||
* @param {Object} config
|
||||
*/
|
||||
function Target( $textarea, config ) {
|
||||
var $helpLink, relatedPage,
|
||||
|
|
Loading…
Reference in a new issue