Commit graph

83 commits

Author SHA1 Message Date
Timo Tijhof
f41620e543 docs: Set SORT_GROUP_NAMES=YES in Doxyfile
The current order is decided based on whatever order Doxygen
encountered the `@defgroup myname Title Here` commands when
recursively traversing the source code directories (INPUT).

By default, it is not based on the identifier (group name) or display
label (group title), which means we end up with the following
on doc.wikimedia.org:

* API
* Recent changes (!)
* Change tagging
* Debug
* ExternalStorage
* Profiling
* ExtensionRegistry (!)
* ResourceLoader
* Upload
* Maintenance (!)

Because internally these are traversed as:

* includes/api
* includes/changes
* includes/registration
* maintenance/

But that's by no means known, relevant, or intuitive to a reader
of the docs; even for contributors that know where the files are,
they probably don't realize that maintenance/ comes after all
includes.

Bug: T364652
Change-Id: I3f03ae5bcc902aa2df020b7d5aa404c42829320c
2024-08-23 22:43:29 +00:00
Timo Tijhof
eb34785244 docs: Update obsolete config as of Doxygen 1.9.8
Based on CI output, and what `doxygen -s -u` does automatically.
Diff minimised to only differences that fix warnings. Verbose
comments and copies of new default values are left uncommitted.

* HTML_TIMESTAMP=YES -> TIMESTAMP=YES
  Renamed in 1.9.7.
  https://github.com/doxygen/doxygen/commit/27933ab863

* FORMULA_TRANSPARENT=YES
  DOT_TRANSPARENT=YES
  No longer configurable since 1.9.5.
  https://github.com/doxygen/doxygen/commit/8b7822cb67

* DOT_FONTNAME=Helvetica -> DOT_COMMON_ATTR
  DOT_FONTSIZE=10        -> DOT_COMMON_ATTR
  Renamed in 1.9.5.
  https://github.com/doxygen/doxygen/commit/4bfd8297

  Matches default.
  https://doxygen.nl/manual/config.html#cfg_dot_common_attr
  > The default value is: labelfontname=Helvetica,labelfontsize=10.

* DIA_PATH
  MSCFILE_DIRS
  Moved to a different section by `doxygen -s -u`.

Change-Id: I6354dc34af3aba6c0132f31fd290154ae54942c4
2024-03-27 23:50:23 +00:00
Timo Tijhof
d864855d5d docs: Remove use of $IP from mwdocgen.php
* Prefer the MW_INSTALL_PATH constant where possible.

* For input and output, there is no need to specify full paths,
  only to strip the prefix again afterwards.
  See also Doxyfile in any repo that is not mediawiki/core where we
  already set the path relative to the project directory, e.g.
  "src/" as input and "docs" as output.

  <https://codesearch.wmcloud.org/search/?q=INPUT%7COUTPUT&files=Doxyfile>

Test Plan:
* `php maintenance/mwdocgen.php --file docs,includes/libs/objectcache/`

Change-Id: I4119161accdc665d0e4d0d4e49d0c42c68f8e2a2
2024-03-26 23:30:10 +00:00
Timo Tijhof
eaf491b4f4 build: Restore Doxygen output for MediaWiki release tags
Bug: T292237
Bug: T317451
Change-Id: I9313457796cb0c515a52c1860abfd5f86704641a
2024-03-09 02:44:23 +00:00
Timo Tijhof
022605d32b build: Ignore param-taint and return-taint in Doxyfile
I've upgraded Doxygen to 1.9.8 in WMF CI (Ie025bd8a5e9), and among
the bug fixes was https://github.com/doxygen/doxygen/issues/9047,
which makes it possible to use tags that contain dashes in ALIASES.

Change-Id: Ida5fddb89b76445922a87904745eff0a1e299043
2023-11-08 14:54:24 +00:00
Tim Starling
94e20db64b Add some helpers to filter properties out of var_dump()
Dumping many kinds of object with var_dump() leads to dumping the whole
address space, because a chain of references leads to MediaWikiServices.

So, introduce a trait which replaces the problematic properties with a
placeholder, if their doc comment contains @noVarDump.

Bug: T277618
Change-Id: Ifa685c26fbc5317d0359544289ec3f433ec4fedf
2022-10-12 12:42:23 -04:00
Timo Tijhof
29c268349f docs: Fix warnings about deprecated Doxygen config
* COLS_IN_ALPHA_INDEX: No longer supported.

* CLASS_DIAGRAMS=NO, migrated to CLASS_GRAPH=TEXT
  Deprecated for several years. New config form is already supported
  by the version used in WMF CI (Doxygen 1.9.1)

Change-Id: Ic72d568f79e824e3e12ce273e76b6d7817647d44
2022-09-10 01:20:45 +02:00
Timo Tijhof
60f106e112 docs: Apply excludes like 'vendor' and 'tests' to extensions as well
For reasons not yet understood, during CI jobs for Git release tags,
the doc publishing pipeline is scanning extensions directories even
on core-only builds.

This was realized when investigating an issue with a large fixture
file in extensions/CirrusSearch/tests/ ("interwiki.php") causing
Doxygen to crash.

When reproducing the issue locally, I found that numerous node_modules,
vendor were also being scanned that didn't need to be.

Also exclude the 'cache' dir from core $IP while at it.

Bug: T317451
Change-Id: I696f1e7edeaf7bf12fbf17613cc9ee5c8dd846b0
2022-09-10 01:18:06 +02:00
Timo Tijhof
89eb69d8ef docs: Use the default EXTRACT_PRIVATE=NO for Doxygen output
This will remove some noise from long classes where currently these
members are listed before the public methods, which makes the docs
harder to navigate. The audience of doc.wikimedia.org where we
show this, I think is not likely to be interested in private members
and methods. That can always be found when navigating within a text
editor of course, where one is likely to interact with private methods.

For example, at https://doc.wikimedia.org/mediawiki-core/master/php/classWANObjectCache.html
the private members are before the main class docs render.

Change-Id: I8fda01f653e9cec311ecb10df98c3f871de267e6
2022-07-18 01:08:28 +00:00
Timo Tijhof
e8482d821a docs: Fix Doxygen rendering of @newable in class comments
This defaulted to plain text which looked out of place. Render it
in the same way as `@stable` annotations instead.

Change-Id: Ia7cc46fc89ce1f0a4ba6c5e47514cbed92f5c505
2021-12-15 02:35:17 +00:00
Brad Jorsch
0cb435fd7c docs: Improve Doxygen aliases and map more tool annotations to @noop
For some reason, @access is outputting a literal "\n" instead of the
newline that's supposed to generate. It seems to only ever be followed
by "public", "private", or "protected", so just remove the newline.

On the other hand, "@private" and so on are sometimes followed by text.
Instead of using @access, use a custom @par to produce nicer output.

"@internal" is being used now something like "@private", to indicate
things that are public for PHP access rules but should be treated as
private. Unfortunately Doxygen has its own "@internal", so we need to
override it.

We've also started using "@unstable", which Doxygen doesn't know about.

Doxygen 1.8.17 introduces "@noop", which allows us to alias annotations
such that they do not result in strange of partial output in docs.
Wikimedia CI is now on 1.8.19.

Fix "@suppress", "@codeCoverageIgnore", and
"@codingStandardsIgnore(Start|End)" by using this.

Bug: T233788
Bug: T241182
Change-Id: Idc7ef2afa6cdf8c15f0ca5e7e96e67c3a4374a8a
2021-03-17 23:33:01 +00:00
James D. Forrester
82a9c73b60 Doxygen: Stop documenting .inc files, we don't use them now
Bug: T184782
Change-Id: I6b652e99fde662752d1f54830c41ce649eea6eae
2020-09-29 16:28:27 +00:00
DannyS712
631578c685 Remove old references to AdminSettings, which was removed in 1.23
Change-Id: I90575b6af120bf73c3be71ca6bffafe09b9b2c83
2020-07-13 08:15:03 +00:00
apaskulin
34fe9930c6 docs: Add Doxygen alias for stable tag
To improve generated docs for hook interfaces, this patch adds
an alias that renders the stable for implementation tag in the
Doxygen output.

Bug: T253815
Change-Id: I866afb318de35744976942d38a17cf429c68a34d
2020-05-27 14:57:06 -07:00
Antoine Musso
911466fa54 docs: disable GENERATE_LATEX
Doxygen defaults to generate the latex output, it always has been
disabled until babe0874ce which unexpectedly turned it on assuming it
came disabled by default.

Change-Id: Iae38b3816514a11f0c0ae81ab1d840862cc53bd3
2020-05-22 11:39:44 +02:00
Holger Knust
471d2371ab doxygen: Changed Doxygen tags causing warnings during documentation generation
Updated Doxygen markup in several .php files triggering warnings when mwdocgen.php is executed. Removed
obsolete settings MSCGEN_PATH and TCL_SUBST from Doxyfile. The former would generate a warning in 1.8.16
while TCL support was removed in 1.8.18. Since TCL_SUBST was blank anyway, it was removed prior to getting
to .18 in production. Increased DOT_GRAPH_MAX_NODES from 50 to 200 since Doxygen complained about it being
too low for API and Maintenance.

Bug: T248706
Change-Id: I9c67f0807d1b43089d351263d4f591dee5501f36
2020-04-14 03:25:19 +00:00
DannyS712
74ae1f143c Revert "Doxygen: Fix ignoring @phan notation, also ignore @return-taint"
Didn't actually solve the issues

This reverts commit 2aabb5e71b.

Bug: T241182
Change-Id: Ia48e0388d6825dea8365f5490f0bd69df80b90b5
2020-01-10 03:00:47 +00:00
DannyS712
2aabb5e71b Doxygen: Fix ignoring @phan notation, also ignore @return-taint
Bug: T241182
Change-Id: Ia64d40b2b9b5fd475167903ec098bde3a6d1ec36
2019-12-30 00:03:49 +00:00
apaskulin
c1e4d85240 docs: Exclude pattern for maintenance READMEs
Adds an exclude pattern to prevent READMEs within the
maintenance directory from being included in the MediaWiki
Doxygen output.

Bug: T87796
Change-Id: I85231880ea58d1fbcbb132ed8630b6ce77b5c00d
2019-11-04 09:21:23 -08:00
jenkins-bot
605bf24772 Merge "docs: Convert class-level documentation files to Markdown" 2019-11-01 01:43:29 +00:00
apaskulin
80221c0aff docs: Convert class-level documentation files to Markdown
The FileRepo, FileBackend, and JobQueue classes include documentation
files that don’t appear in the generated Doxygen docs. This PR:

* Converts these files to Markdown
* Links to each file from the respective class description
* Adds an ingroup tag so the files appear in the sidebar at the
  module level
* Updates the exclude pattern in the Doxyfile to surface these pages

Bug: T87796
Change-Id: I94f0636ab489d741ab505f15da43a5d63c1ca61a
2019-10-31 11:03:13 -07:00
Timo Tijhof
c3eaf69a7a docs: Disable Doxygen parameter format warnings
Disable warnings for methods that are missing documentation,
or have invalid documentation.

While useful in theory, in practice this is almost entirely noise
that can be ignored. Doxygen falls back very well when it encounters
"invalid" documentation (e.g. render the type hint as plain text),
which is usually the right solution.

For example "Foo[]" means an array of "Foo" objects, but may
yield a warning for "unknown Foo[]" type. The fallback is to
not make a 404 link for "Foo[]", but render it as plain text
which seems desirable.

We already enforce validity in a better way with PHPCS and Phan,
which makes Doxygen's (limited and often incorrect) validation
obsolete.

Change-Id: I90000a4e33205e15ffabc8aeba0117615f1fd163
2019-10-29 16:42:09 -04:00
Timo Tijhof
9696b1d800 docs: Ignore README.md by default
This makes it more future-proof so that when more files are
added, they are excluded by default. If and when we do get a file
that is intended for this, it's likely such commit will test it
and find it doesn't work and then whitelist accordingly.

Change-Id: I3b8e421724d45e6aaecea58238f430a87cbbe977
2019-09-14 19:35:45 +01:00
Timo Tijhof
babe0874ce docs: Disable GENERATE_TESTLIST and GENERATE_BUGLIST
These are to create pages with an overview of `@bug` and `@test`
annotations of which there are none in MediaWiki core in doc block
comments, like `/**`. As far as I know, there is also no practice
or plans to start using these or to use Doxygen as a way to
organise such work (we use Phabricator instead to report things
that are broken and/or should have tests).

Bug: T232104
Change-Id: I1056f22c38b11157ac7b5a23e9838978e8901171
2019-09-14 00:09:49 +01:00
Timo Tijhof
c15e2b2b49 docs: Remove aliases that are only used in tests/
Follows-up fec6692394, which excluded 'tests/' from indexing,
which means these aliases are no longer needed.

Change-Id: Ice6be877b8f526f26ef9657a335142d07428fa6e
2019-09-14 00:09:49 +01:00
Timo Tijhof
853838a322 docs: Remove GENERATE_MAN support from Doxyfile
Also remove redundant sections from the config file that all
relate to features that are unconditionally disabled for us
and by default. They were all no-ops because the corresponding
"GENERATE_"- config is NO by default as well.

Per <http://www.doxygen.nl/manual/config.html>.

Bug: T232104
Change-Id: Ibd81f23922f1994be6579fcd8e1ece5e9f995905
2019-09-06 16:06:11 +01:00
Timo Tijhof
e25ce2a1ea docs: Avoid Doxygen warnings for non-doc related tags
These are not relevant for Doxygen. Disable these so that they
are omitted from the description text, and also don't produce
warning noise in the CI builds.

Bug: T232104
Change-Id: Ieb89677097c60bbdd45c1c187d1c1048cc307e57
2019-09-05 16:29:18 +01:00
Timo Tijhof
83a820e0d6 docs: Add support for @inheritDoc (alias for @inheritdoc)
Lots of methods are missing documentation for methods in favour
of an unhelpful description text containing "@inheritDocs", leading
to warnings in CI during the doc building stage:

> mediawiki/includes/resourceloader/ResourceLoaderLessVarFileModule.php:9:
> warning: Found unknown command '\inheritDoc'

Before:

> ◆ ResourceLoaderLessVarFileModule::getMessages	( )
> Description
>   @inheritDoc
>
> Reimplemented from ResourceLoaderFileModule.
> Definition at line 26 of file ResourceLoaderLessVarFileModule.php.

After:

> ◆ ResourceLoaderLessVarFileModule::getMessages	( )
> Description
>   Gets list of message keys used by this module.
>
> Returns
>   array List of message keys
>
> Reimplemented from ResourceLoaderFileModule.
> Definition at line 26 of file ResourceLoaderLessVarFileModule.php.

Bug: T219001
Bug: T232104
Change-Id: I7f133c10acca084239a158c63c08b71e709404c3
2019-09-05 16:27:45 +01:00
Timo Tijhof
3b7524e658 docs: Remove unused Doxygen custom commands
These have no matches in this repo: `@arrayof`, `@null`, `@boolean`,
`@bool`, `@integer`, `@int`, `@string`, `@str`, `@mixed`, `@public`.

Change-Id: If95ffb679df88656f059e8d94def8aa25459ccbe
2019-09-04 22:58:46 +00:00
Timo Tijhof
b7c5acd419 docs: Convert doxygen_first_page.php to proper Markdown
Doxygen has native support for indexing of Markdown pages.
It basically parses them the same way it parses the uglier
methodology of creating a PHP file containing a the markdown
text in a large comment that would start with `@page` or `@mainpage`.

* http://doxygen.nl/manual/commands.html#cmdpage
* http://doxygen.nl/manual/commands.html#cmdmainpage
* http://doxygen.nl/manual/markdown.html#md_page_header

The internal reference name and page title (comparable to the string
passed to `@mainpage` or `@page`) are by default derived from the
file name (without suffix).

The internal reference name (for use in cross-page links) can also
be overidden with an `{#something}` annotation in the first heading.

When using the annotation `{#mainpage}` it changes the page type
from a regular `@page` to the `@mainpage`.

Change-Id: I0c25a49088825744773c4d87dde5688894b2004e
2019-09-04 22:57:02 +00:00
Timo Tijhof
b100ebcc05 docs: Remove unused PERL_PATH and unused file patterns from Doxyfile
* File patterns - Keep only ".php" and ".inc". The other file types
  either don't exist in this repo, or exist but have 0 parseable doc
  blocks for Doxygen to find. Also remove README, it leads to various
  pointless attempts for Doxygen to parse files by this name without
  any documentable entity in them. Such as;

  > mediawiki/includes/jobqueue/README:82: warning: Reached end of file
  > while still inside a nested comment. Nesting level 1.

* Remove 'PERL_PATH'. This has been unused since Doxygen 1.8.0,
  the last build on doc.wikimedia.org from Jenkins uses Doxygen 1.8.13.
  As of Doxygen 1.8.16 a deprecation warning was also added,
  https://github.com/doxygen/doxygen/commit/6d1535c.

Change-Id: I99bd80f9cf7bae8d37caf0b9325bd30a16020497
2019-09-04 22:54:45 +01:00
Timo Tijhof
ebec274f17 Remove support for StartProfiler.php
Bug: T201782
Bug: T189966
Change-Id: I6ef5af969b1d74a04d5d89370e6ac800c20be1ad
2018-08-26 02:09:44 +00:00
Timo Tijhof
1c7797ee5d docs: Remove Doxyfile searching for .php5 and upper-case file extensions
Change-Id: I36bf74bb5e3a7c7e61cddd69ea371f94c8b9a856
2018-08-23 01:35:57 +01:00
jenkins-bot
57eaa2bf04 Merge "Improve Doxygen template used by mwdocgen.php" 2016-10-12 14:57:10 +00:00
Timo Tijhof
ff39e4022d Doxygen: Disable verbose output
https://www.stack.nl/~dimitri/doxygen/manual/config.html#cfg_quiet

* To make the standard output in Jenkins more useful,
  disable the verbose messages about "Loading file .." in between
  all the errors.

* Remove obsolete config options XML_SCHEMA and XML_DTD that were
  producing warnings. We weren't using these anyway (set to their default
  blank value).

Change-Id: I6876cf4d783f7795a12d99623c8ce3717e9a51f5
2015-11-23 20:33:01 +00:00
S Page
fcfb94ddc1 Improve Doxygen template used by mwdocgen.php
Document the template's variables, and remove some unused XML generation
options that are obsolete in doxygen 1.8.9.

Change-Id: Ief9a03e7c63787e64b96adde24512aa86b77d78b
2015-07-17 12:39:23 -07:00
Timo Tijhof
dfca9f5b17 Doxyfile: Suppress warnings for phpunit "@" annotations
This annotations are not relevant for Doxygen.

Examples:
> parserTest.inc:320: warning: Found unknown command `\group'
> ActionTest.php:3: warning: Found unknown command `\covers'
> ActionTest.php:128: warning: Found unknown command `\dataProvider'
> ApiBlockTest.php:67: warning: Found unknown command `\expectedException'
> ApiBlockTest.php:68: warning: Found unknown command `\expectedExceptionMessage'

Change-Id: I1d2d617ee6c15d51943bec3563ea4ffd353baec4
2015-04-01 01:39:38 +01:00
Timo Tijhof
691e946a22 Doxyfile: Suppress warnings for invalid @codingStandardsIgnoreStart
This phpcs annotation is not relevant for Doxygen.

> Preprocessor_DOM.php:24: warning: Found unknown command `\codingStandardsIgnoreStart'
> Preprocessor_Hash.php:760: warning: Found unknown command `\codingStandardsIgnoreStart'

Change-Id: I91ea668486a87fff0193a3cccb97f96943d4bf33
2015-04-01 01:39:37 +01:00
Timo Tijhof
72a0cd4e11 doc: Clean up Doxyfile for doxygen 1.8.6
Latest stable is v1.8.8, but Ubunu Trusty (which we now use on the
Jenkins slave that generates our documentation) ships doxygen v1.8.6.
Time to migrate away from 1.7.x stuff.

Warnings:

 Tag `SYMBOL_CACHE_SIZE' at line 84 of file maintenance/Doxyfile has become obsolete.
 Tag `SHOW_DIRECTORIES' at line 118 of file maintenance/Doxyfile has become obsolete.
 Tag `HTML_ALIGN_MEMBERS' at line 226 of file maintenance/Doxyfile has become obsolete.
 Tag `USE_INLINE_TREES' at line 253 of file maintenance/Doxyfile has become obsolete.

Regenerated with:

 $ doxygen -u -s ./maintenance/Doxyfile

Which automatically added new configurations settings, removed
obsolete ones, migrated formatting to their new standard.

Change-Id: I372ea06c439762578cb4c68686344eb446925c04
2014-11-19 19:00:52 +00:00
Antoine Musso
3d924e7999 doc: raise doxygen lookup cache
The lookup cache size is exhausted again, bumping it from:

   131072 entries - 2^(16+1)
to 262144 entries - 2^(16+2)

See previous bump for details:
    432a0cb https://gerrit.wikimedia.org/r/69709

Change-Id: I9a15cce6f77745c4e913a562e8f1f43a4988c83d
2014-11-12 11:24:27 +01:00
Antoine Musso
16faad812b doc: speed up dot generation
dot supports generating multiple graphs in one run, that was not always
the case and Doxygen had a default of not using that feature.  Given it
got introduced in dot 1.8.10 and Wikimedia CI server has 2.26.x, I guess
it is safe to enable this.

End result, is less shell out overhead.

Change-Id: Ia07b430bd1af608bbe9c10eecbe2df3e0b9c74fc
2013-06-20 19:23:46 +00:00
Antoine Musso
432a0cb006 doc: raise doxygen lookup cache
At the end of a run, doxygen emits a notice regarding the cache lookup
size being too small.  This cache is used to find symbols given their
name which would speed up processing a bit.

The notice before this patch:

lookup cache used 65536/65536 hits=2258467 misses=112595
Note: based on cache misses the ideal setting for LOOKUP_CACHE_SIZE is 1
at the cost of higher memory usage.

And after:

lookup cache used 104632/131072 hits=2131285 misses=105434

That is 7% less miss, not that much but still.  Note how the cache is
well filled (80%).

Change-Id: I0b97e8c5581a63c44a382891f8f1fc8d60975e80
2013-06-20 19:14:04 +00:00
Antoine Musso
7ff6d5720e doc: sync with doxygen 1.7.6.1
The Wikimedia CI server runs doxygen 1.7.6.1, this patch sync our
configuration with that version.

TCL_SUBST and LOOKUP_CACHE_SIZE have been added.
IDL_PROPERTY_SUPPORT default value changed, unused by us though

Change-Id: Ic43d99c4675eb8f1772a72a9b9bfaf16057e19f1
2013-06-20 20:22:08 +02:00
Antoine Musso
df3aa55003 doc: doxygen expands tabs to 4 spaces instead of 8
In doxygen, code snippets (and possibly over places) have their
tabulations expanded to 8 spaces which is a bit too much. The TAB_SIZE
configuration parameter let us set the number of spaces, down to 4 which
makes code examples easier to read IMHO.

Change-Id: I62b417496f4e5ec70e80919c28747f1bd44a7bd6
2013-06-01 11:51:53 +02:00
Antoine Musso
e289bf7908 overhaul maintenance/mwdocgen.php
Now based on Maintenance class.
Reinstate {{EXCLUDE}} which got removed by 8199984

This is roughly back compatible.

bug: 34436
Change-Id: Ic1a2b2c29718054ec740b2ffb90350af700a6a58
2013-05-29 15:56:15 +02:00
Siebrand
ba89454345 Merge "doxygen now recognizes README and .txt files" 2012-10-22 12:04:49 +00:00
Antoine Musso
9362bb6c56 miscellaneous doxygen warnings
* @licence -> @license
* Protects inline HTML by using double quotes, our inline comments uses
  elements such as <h1> or <firstnameLastname@gmail.com>
* Commands in lowercase (@TODO -> @todo, @NOTE -> @note)
* removes @abstract and @static since doxygen detects them from PHP
  code.
* various undocumented function parameters
* typos in parameters declarations

Change-Id: I62ad6fc124c355bf31acc780b9614a59cf79a421
2012-10-22 14:00:08 +02:00
Antoine Musso
fb82f1cf80 doxygen now recognizes README and .txt files
The default doxygen configuration file only accepts source files such
as php or python.  Some of our documentation is in flat files which we
might want to include in our Doxygen inline documentation. The culprit
is that those document files needs to respect Doxygen syntax, i.e. the
text content need to be enclosed in a comment block such as:

 /*!
 \page page_title My Page Title

 My awesome documentation
 */

Doyxgen 1.8 supports markdown syntax, we might want to switch to that
eventually.

Change-Id: I78a0ce36314b2a7b9f89395e3ae3902b17cf5038
2012-10-22 11:58:53 +02:00
Reedy
8199984ed2 Remove svnstat stuff used in Doxygen generation
Change-Id: I9d8db5fae6e0c99d59fcb9a43d7ed4aab953c300
2012-09-27 00:14:20 +01:00
Antoine Musso
e3716bbb7c doxygen filter need to use a full path
When running mwdocgen.php outside of maintenance, the input filter was
not found. Giving the full path fix the issue.

Issue introduced by I4ead1bd1 / ab59fad.

Change-Id: I5e28209eba1afd24d60b2dc940b9f5dfb1b4f34c
2012-08-02 16:20:52 +02:00