[doodleproject] [ doodleproject-Feature Requests-1909236 ] add support for the @include directive
Brought to you by:
brentworden
|
From: SourceForge.net <no...@so...> - 2008-05-05 18:11:50
|
Feature Requests item #1909236, was opened at 2008-03-06 18:17 Message generated for change (Comment added) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=518273&aid=1909236&group_id=67565 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: doxygen-maven-plugin Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Brent Worden (brentworden) Summary: add support for the @include directive Initial Comment: this makes it really easy to add additional configuration options without needing the plugin to support every doxygen option ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2008-05-05 11:11 Message: Logged In: NO Here's a patch --- orig/doxygen-maven-plugin-2.1/src/main/java/net/sf/doodleproject/mavenite/doxygen/DoxygenReport.java 2007-11-23 08:46:11.000000000 -0800 +++ doxygen-maven-plugin-2.1/src/main/java/net/sf/doodleproject/mavenite/doxygen/DoxygenReport.java 2008-05-05 11:06:49.000000000 -0700 @@ -146,4 +146,9 @@ * @parameter */ + private File includeFile; + + /** + * @parameter + */ private File configurationFile; @@ -259,4 +264,5 @@ try { out = new PrintWriter(new BufferedWriter(new FileWriter(config))); + addConfiguration(out, includeFile != null, "@INCLUDE", includeFile); addConfiguration(out, "ALPHABETICAL_INDEX", alphabeticalIndex); addConfiguration(out, 1 <= columnsInAlphabeticalIndex ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=518273&aid=1909236&group_id=67565 |