Merge "Rename internal BOOK_REF_ATTRIBUTE constant"

This commit is contained in:
jenkins-bot 2024-10-07 12:02:13 +00:00 committed by Gerrit Code Review
commit ebf38366e7
2 changed files with 6 additions and 8 deletions

View file

@ -38,10 +38,8 @@ class Cite {
public const DEFAULT_GROUP = '';
/**
* Wikitext attribute name for Book Referencing.
*/
public const BOOK_REF_ATTRIBUTE = 'extends';
/** Attribute name for the sub-referencing feature in <ref …> */
public const SUBREF_ATTRIBUTE = 'extends';
/**
* Message key for the (localized) tracking category for pages using the `extends` attribute.
@ -125,15 +123,15 @@ class Cite {
?string $text,
array $argv
): string {
// Tag every page where Book Referencing has been used, whether or not the ref tag is valid.
// Tag every page where sub-referencing has been used, whether or not the ref tag is valid.
// TODO: Remove this generic usage tracking once the feature is stable. See T237531.
if ( array_key_exists( self::BOOK_REF_ATTRIBUTE, $argv ) ) {
if ( array_key_exists( self::SUBREF_ATTRIBUTE, $argv ) ) {
$parser->addTrackingCategory( self::EXTENDS_TRACKING_CATEGORY );
}
$status = $this->parseArguments(
$argv,
[ 'group', 'name', self::BOOK_REF_ATTRIBUTE, 'follow', 'dir' ]
[ 'group', 'name', self::SUBREF_ATTRIBUTE, 'follow', 'dir' ]
);
$arguments = $status->getValue();
// Use the default group, or the references group when inside one.

View file

@ -418,7 +418,7 @@ class CiteTest extends \MediaWikiIntegrationTestCase {
$spy = TestingAccessWrapper::newFromObject( $cite );
$spy->errorReporter = $this->createMock( ErrorReporter::class );
$spy->guardedRef( $mockParser, 'text', [ Cite::BOOK_REF_ATTRIBUTE => 'a' ] );
$spy->guardedRef( $mockParser, 'text', [ Cite::SUBREF_ATTRIBUTE => 'a' ] );
}
/**