summaryrefslogtreecommitdiffstats
path: root/src/plantuml.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Bug fix for plantumlCharles.Lee2018-08-191-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | # What is the problem - The following plantuml is not processed. ``` /** * @brief Clear the rule. * @startuml * participant CReceiver * opt MsgFromSender() * alt cmd=IGN_STATUS_IN && value == 0 * alt * CReceiver ->> CHmi : Draw_HMI sendMsg() -> sendMessage(HMI,MSGIDN,...) * else * note right CReceiver : Draw Directly * end * else * note right CReceiver : mbBlockDraw = false * end * end * @enduml */ ``` # debugging method - change into DOT_CLEANUP = NO in Doxyfile to remain the plantuml file for debugging. - the following context is result of remaining plantuml file. ``` @startuml participant CReceiver opt MsgFromSender() alt cmd=IGN_STATUS_IN && value == 0 alt CReceiver ->> CHmi : Draw_HMI sendMsg() -> sendMessage(HMI,MSGIDN,...) else note right CReceiver : Draw Directly end else note right CReceiver : mbBlockDraw = false end end@enduml ``` # Solution - add return in front of @enduml
* Bug 792449 - markdown plantuml use of graphviz fail if plantuml work i code filealbert-github2018-06-121-1/+3
| | | | Added the commandExtension as required by plantuml in case the path is given.
* Provide dot path to plantumlRemko van der Vossen2017-10-231-0/+7
| | | | If HAVE_DOT = YES and DOT_PATH is configured, pass the path to the dot executable to plantuml with the -graphvizdot option.
* Fix plantuml generation issueAnders Wallander2016-10-191-2/+7
| | | | | | | | | | | Commit 62f09103b77b9e5b4093d248563e2f9d76b65728 which merged pull request 538 introduced a bug in the generation of plantuml diagrams for other plantuml sources than the htmldocvisitor. In the previous commit the baseName argument was wrongly interpreted as file name without path. This commit fix this issue so the behaviour should be the same as before, while still also having the support for PlantUML diagrams in Qt compressed help files.
* Adds plantuml support Qt compressed help fileAnders Wallander2016-10-181-5/+10
| | | | | | | | | | Plantuml generated diagrams will be included in the index.qcp file which defines what files to include in the Qt compressed help file. This means that plantuml diagrams will work in the Qt creator help viewer. Signed-off-by: Anders Wallander <anders.wallander@volvocars.com>
* Fix for PlantUML configurationDennis Allerkamp2016-09-241-1/+1
| | | | Only if PlantUML configuration file is configured, then it will be passed as an argument to plantuml.jar.
* Option for PlantUML configuration fileDennis Allerkamp2016-09-031-0/+7
|
* Revert #291Douman2016-07-061-1/+1
| | | | See http://plantuml.com/salt.html for example HOW it supposed to work
* Changed configuration mechanism to directly access options in order to ↵Dimitri van Heesch2016-01-171-4/+4
| | | | improve performance
* Bug 759622 - problems with charset using plantumlDimitri van Heesch2015-12-201-1/+1
|
* Bug 751755 - using plantuml cause a popup "openwith" windows when calling ↵Dimitri van Heesch2015-09-211-1/+1
| | | | java.exe
* Bump copyright yearDimitri van Heesch2015-02-261-1/+1
|
* Remove the new line after @startuml in generated pu filebyzheng2015-01-141-1/+1
| | | Try to fix this problem for me: http://sourceforge.net/p/doxygen/mailman/message/33228212/
* Fixed to small memory leaksDimitri van Heesch2014-09-281-1/+1
|
* Merge pull request #226 from albert-github/feature/plantuml_includeDimitri van Heesch2014-09-161-1/+18
|\ | | | | Support plantuml !include statement
| * Support plantuml !include statementalbert-github2014-09-071-1/+18
| | | | | | | | Support the plantuml !include statement by using the newly defined PLANTUML_INCLUDE_PATH
* | Merge pull request #225 from albert-github/feature/plantuml_charsetDimitri van Heesch2014-09-161-0/+1
|\ \ | | | | | | Support charset option for PlantUML
| * | Support charset option for PlantUNLalbert-github2014-09-071-0/+1
| |/ | | | | | | Use as charset for PlantUML the same character set as de INPUT_ENCODING of the input source
* | Bug 735198 - plantUML requires epstopdf for building PDF filesalbert-github2014-09-071-1/+12
|/ | | | Added conversion from eps to pdf, analogous to dia and msc
* Bug 735591 - [PATCH] Provide exit code in case generatePlantUMLOutput failsDimitri van Heesch2014-08-301-2/+2
|
* Bug 731947 - Support for PlantUMLDimitri van Heesch2014-08-101-0/+97