Changes between Initial Version and Version 1 of Ticket #1670
- Timestamp:
- 2012-08-31T11:08:38Z (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1670
- Property Component → Backend
-
Ticket #1670 – Description
initial v1 1 1 We should remove the static help-text and generate this on-the-fly instead. The new flag system is capable of showing different text; so could the help() function. 2 {{{function help "display the OpenModelica help text" 2 {{{ 3 function help "display the OpenModelica help text" 3 4 output String helpText; 4 5 annotation(__OpenModelica_EarlyInline = true); … … 6 7 helpText := readFile(getInstallationDirectoryPath() + "/share/doc/omc/omc_helptext.txt"); 7 8 annotation(preferredView="text"); 8 end help;}}} 9 end help; 10 }}}