Skip to content

Commit fcab197

Browse files
olivier-stasseOlivier Stasse
authored andcommitted
[doc] Fix documentation (wrong image references + error on doxygen.log)
1 parent 05d4ac5 commit fcab197

File tree

9 files changed

+8
-9
lines changed

9 files changed

+8
-9
lines changed

doc/Doxyfile.extra.in

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -293,8 +293,6 @@ WARN_LOGFILE = @CMAKE_BINARY_DIR@/doc/doxygen.log
293293

294294
INPUT = @CMAKE_SOURCE_DIR@/include \
295295
@CMAKE_SOURCE_DIR@/doc/additionalDoc
296-
IMAGE_PATH = @CMAKE_SOURCE_DIR@/doc/pictures \
297-
@CMAKE_SOURCE_DIR@/doc/figures
298296

299297

300298
# The RECURSIVE tag can be used to turn specify whether or not subdirectories
@@ -413,7 +411,7 @@ COLS_IN_ALPHA_INDEX = 4
413411
# Doxygen will copy the logo to the output directory.
414412

415413
PROJECT_LOGO = @PROJECT_SOURCE_DIR@/doc/pictures/sot.png
416-
HTML_EXTRA_FILES += sot.png
414+
HTML_EXTRA_FILES += @PROJECT_SOURCE_DIR@/doc/pictures/sot.png
417415

418416
# The HTML_HEADER tag can be used to specify a personal HTML header for
419417
# each generated HTML page. If it is left blank doxygen will generate a
@@ -427,7 +425,7 @@ HTML_EXTRA_FILES += sot.png
427425
# changing the value of configuration settings such as GENERATE_TREEVIEW!
428426

429427
HTML_HEADER = @PROJECT_SOURCE_DIR@/doc/header.html
430-
HTML_EXTRA_FILES += @PROJECT_SOURCE_DIR@/doc/sot.ico
428+
HTML_EXTRA_FILES += @PROJECT_SOURCE_DIR@/doc/pictures/sot.ico
431429

432430
# The HTML_FOOTER tag can be used to specify a personal HTML footer for
433431
# each generated HTML page. If it is left blank doxygen will generate a

doc/additionalDoc/debug-logger.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ It is possible to set the output stream of the messages inside a file:
2626
\section sec_use_rt_logger Using the rt_logger
2727
2828
29-
\newcode
29+
\code
3030
// Somewhere in your library
3131
dgRTLOG() << "your message. Prefer to use \n than std::endl."
3232
\endcode

doc/additionalDoc/introduction.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,6 @@ load classes of entities and create instances of entities.</p>
6262
\li Type-safe connection of input and output signals
6363
\li On-demand signal computation as well as a caching system for signal values
6464
allow fast computation of signal values, which is a critical point for real-time
65-
systems\n See \ref scriptingabout
65+
systems\n
6666
6767
*/
File renamed without changes.
File renamed without changes.
File renamed without changes.

include/dynamic-graph/logger.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,7 @@ class Logger {
206206
* allows it. The lineId is used to identify the point where sendMsg is
207207
* called so that streaming messages are printed only every streamPrintPeriod
208208
* iterations.
209+
* \param type specifies the verbosity level, for instance MSG_TYPE_DEBUG
209210
* \param lineId typically __FILE__ ":" BOOST_PP_STRINGIZE(__LINE__)
210211
*/
211212
RTLoggerStream stream(MsgType type, const std::string &lineId = "") {
@@ -265,8 +266,8 @@ class Logger {
265266

266267
inline bool isStreamMsg(MsgType m) { return (m & MSG_TYPE_STREAM_BIT); }
267268

268-
/** Check whether a message of type \m and from \c lineId should be accepted.
269-
* \note If \c is a stream type, the internal counter associated to \c lineId
269+
/** Check whether a message of type \p m and from \p c lineId should be accepted.
270+
* \note If \p m is a stream type, the internal counter associated to \p lineId
270271
* is updated.
271272
*/
272273
bool acceptMsg(MsgType m, const std::string &lineId) {

include/dynamic-graph/real-time-logger-def.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class LoggerStream {
2727

2828
/// Write to an ostream object.
2929
///
30-
/// The easieast is to use the macro \ref dgADD_OSTREAM_TO_RTLOG(ostr) where
30+
/// The easieast is to use the macro dgADD_OSTREAM_TO_RTLOG(ostr) where
3131
/// `ostr` can be `std::cout` or an std::ofstream...
3232
class LoggerIOStream : public LoggerStream {
3333
public:

0 commit comments

Comments
 (0)