Hashar has uploaded a new change for review. Change subject: explicitly define variable name in @var comments ......................................................................
explicitly define variable name in @var comments This is to workaround https://bugzilla.gnome.org/626105 which prevents Doxygen from finding the variable when using /** @var Type */ comments. This patch transforms snippets like: /** * @var Title */ protected $mTitle; To: /** * @var Title $mTitle */ protected $mTitle; No code change! A workaround is to use an input filter but that will just slowdown the whole documentation generation. Change-Id: Icea1e79f3d06330f399d832c43811e14fd8a1644 --- M includes/AuthPlugin.php M includes/Block.php M includes/CacheHelper.php M includes/Category.php M includes/CategoryViewer.php M includes/Categoryfinder.php M includes/ChangesList.php M includes/EditPage.php M includes/Export.php M includes/ExternalEdit.php M includes/Feed.php M includes/FileDeleteForm.php M includes/HTMLForm.php M includes/HttpFunctions.php M includes/ImageGallery.php M includes/ImagePage.php M includes/Import.php M includes/Licenses.php M includes/Linker.php M includes/LocalisationCache.php M includes/Message.php M includes/OutputPage.php M includes/Pager.php M includes/PathRouter.php M includes/QueryPage.php M includes/RecentChange.php M includes/RevisionList.php M includes/Setup.php M includes/SiteConfiguration.php M includes/SpecialPage.php M includes/SquidPurgeClient.php M includes/TitleArray.php M includes/User.php M includes/UserArray.php M includes/UserMailer.php M includes/WebRequest.php M includes/Wiki.php M includes/WikiFilePage.php M includes/WikiPage.php M includes/actions/CachedAction.php M includes/actions/HistoryAction.php M includes/api/ApiFileRevert.php M includes/api/ApiMain.php M includes/api/ApiParamInfo.php M includes/api/ApiQuery.php M includes/api/ApiQueryBacklinks.php M includes/api/ApiQueryBlocks.php M includes/api/ApiQueryTags.php M includes/api/ApiRollback.php M includes/api/ApiUpload.php M includes/cache/HTMLCacheUpdate.php M includes/cache/MessageCache.php M includes/cache/ProcessCacheLRU.php M includes/conf/Conf.php M includes/context/ContextSource.php M includes/context/DerivativeContext.php M includes/context/RequestContext.php M includes/db/CloneDatabase.php M includes/db/Database.php M includes/db/DatabaseError.php M includes/db/DatabaseSqlite.php M includes/db/LBFactory.php M includes/db/LBFactory_Single.php M includes/db/LoadMonitor.php M includes/db/ORMResult.php M includes/db/ORMRow.php M includes/db/ORMTable.php M includes/debug/Debug.php M includes/diff/DifferenceEngine.php M includes/extauth/MediaWiki.php M includes/filerepo/FileRepo.php M includes/filerepo/RepoGroup.php M includes/filerepo/backend/FSFileBackend.php M includes/filerepo/backend/FileBackend.php M includes/filerepo/backend/FileBackendGroup.php M includes/filerepo/backend/FileBackendMultiWrite.php M includes/filerepo/backend/FileBackendStore.php M includes/filerepo/backend/FileOp.php M includes/filerepo/backend/SwiftFileBackend.php M includes/filerepo/backend/TempFSFile.php M includes/filerepo/backend/lockmanager/DBLockManager.php M includes/filerepo/backend/lockmanager/FSLockManager.php M includes/filerepo/backend/lockmanager/LSLockManager.php M includes/filerepo/backend/lockmanager/LockManager.php M includes/filerepo/backend/lockmanager/LockManagerGroup.php M includes/filerepo/backend/lockmanager/MemcLockManager.php M includes/filerepo/file/ArchivedFile.php M includes/filerepo/file/File.php M includes/filerepo/file/LocalFile.php M includes/filerepo/file/UnregisteredLocalFile.php M includes/installer/DatabaseInstaller.php M includes/installer/DatabaseUpdater.php M includes/installer/Installer.php M includes/installer/LocalSettingsGenerator.php M includes/installer/OracleUpdater.php M includes/installer/PostgresUpdater.php M includes/installer/SqliteInstaller.php M includes/installer/WebInstaller.php M includes/installer/WebInstallerOutput.php M includes/installer/WebInstallerPage.php M includes/job/DoubleRedirectJob.php M includes/job/Job.php M includes/job/UploadFromUrlJob.php M includes/libs/CSSMin.php M includes/logging/LogEntry.php M includes/logging/LogEventsList.php M includes/logging/LogFormatter.php M includes/logging/LogPage.php M includes/media/MediaTransformOutput.php M includes/objectcache/MemcachedClient.php M includes/objectcache/SqlBagOStuff.php M includes/parser/Parser.php M includes/parser/ParserOptions.php M includes/parser/Preprocessor_DOM.php M includes/parser/Preprocessor_Hash.php M includes/parser/Tidy.php M includes/resourceloader/ResourceLoaderModule.php M includes/revisiondelete/RevisionDelete.php M includes/search/SearchEngine.php M includes/search/SearchPostgres.php M includes/search/SearchSqlite.php M includes/specials/SpecialActiveusers.php M includes/specials/SpecialAllmessages.php M includes/specials/SpecialBlock.php M includes/specials/SpecialCachedPage.php M includes/specials/SpecialContributions.php M includes/specials/SpecialFileDuplicateSearch.php M includes/specials/SpecialJavaScriptTest.php M includes/specials/SpecialMergeHistory.php M includes/specials/SpecialMovepage.php M includes/specials/SpecialNewimages.php M includes/specials/SpecialNewpages.php M includes/specials/SpecialPasswordReset.php M includes/specials/SpecialSearch.php M includes/specials/SpecialUndelete.php M includes/specials/SpecialUpload.php M includes/specials/SpecialUserlogin.php M includes/specials/SpecialWhatlinkshere.php M includes/upload/UploadFromFile.php M includes/upload/UploadStash.php 140 files changed, 821 insertions(+), 441 deletions(-) git pull ssh://gerrit.wikimedia.org:29418/mediawiki/core refs/changes/04/15704/1 -- To view, visit https://gerrit.wikimedia.org/r/15704 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Icea1e79f3d06330f399d832c43811e14fd8a1644 Gerrit-PatchSet: 1 Gerrit-Project: mediawiki/core Gerrit-Branch: master Gerrit-Owner: Hashar <[email protected]> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
