Once we have switched to Git, RCS keywords $Date$, $Id$ and $URL$ are no
longer substituted. That may be restore one day but, for the moment, that
is easier to remove the support for \RCSdef* in manual tools.
That reverses one old commit one mines:
| ------------------------------------------------------------------------
| r53696 | lrineau | 2010-01-20 16:38:49 +0100 (Wed, 20 Jan 2010) | 4 lines
|
| Attempt to have Manual_tools/doc_tex in the internal releases (just to see
| what it does).
| (trunk only)
|
| ------------------------------------------------------------------------
In between, I had not manage to get cc_manual.tex be compiled without error
by our script cgal_manual.
The following pages are generated differently, using open_tmp_file. For
those pages, the macro \lciFilename was wrong.
- acknowledge.html
- biblio.html
- title.html
Workaround the bad interaction between minitoc and NewTocLayout.
Without that \gdef\lciTocOuterState{Right}, the html convertex inserts some
</td><td> tags outside the table of the minitoc.
Example of the bad inserted tags:
</table>
</td><td class="TocGroupOddRight">
We can now write:
\begin{ccDeprecated}
...
\end{ccDeprecated}
or
\begin{ccDeprecated}[3.8]
...
\end{ccDeprecated}
The optional argument is not used, for the moment.
That is *not yet* documented.
Triangulation_euclidean_traits_xy_3.tex is a test case.
- CSSification of the PkgDescription for each package,
- the "Citation Entry" is replace with "BibTex: [cgal:abc-11]" (where
cgal:abc-11 is the bibtex label of the entry),
- attempt to make the tags soup result a more correct HTML.
The new layout for each package entry in the packages overview is the
following:
------------------------------------------------------------------------
| | Title of the package (may be a very long|title that span) |
------------------------------------------------------------------------
| | List of authors, that cannot span if is | Introduced in: |
| CENTER | too long (it wraps) | License: LQPL |
| ED PIC |-----------------------------------------| Depends on: foo |
| TURE C | Summary of the package. Can be a long | bar baz foo_3 |
| ENTERE | text that wraps. | bar_2 Kernel |
| D PICT | | Citation entry: |
| | | Demo: foo bar |
------------------------------------------------------------------------
That is:
- three columns, three rows,
- the title is alone on the first row, and spans in col 2 and 3,
- the picture is alone in the first column, vertically spans in rows 2
and 3, and is vertical centered in its bloc,
- the list of authors is in the middle of the second row,
- the summary is in the middle of the third row,
- the menu in the left column spans in rows 2 and 3.
Explanation:
- the lexer of cc_extract_html sometimes treats "%" as the start of a
comment, unconditionally (whereas the LaTeX parser treats \% as a
macro),
- in HTML, "%" and "%" as equivalent (that is the "HTML Entity Code"
of "%"),
- in cc_extract_html, the "#" must be quoted to "##".