1 | #ifndef _theplu_svndigest_html_utility_ |
---|
2 | #define _theplu_svndigest_html_utility_ |
---|
3 | |
---|
4 | // $Id$ |
---|
5 | |
---|
6 | /* |
---|
7 | Copyright (C) 2006 Peter Johansson |
---|
8 | |
---|
9 | This file is part of svndigest, http://lev.thep.lu.se/trac/svndigest |
---|
10 | |
---|
11 | svndigest is free software; you can redistribute it and/or modify it |
---|
12 | under the terms of the GNU General Public License as published by |
---|
13 | the Free Software Foundation; either version 2 of the License, or |
---|
14 | (at your option) any later version. |
---|
15 | |
---|
16 | svndigest is distributed in the hope that it will be useful, but |
---|
17 | WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
18 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
19 | General Public License for more details. |
---|
20 | |
---|
21 | You should have received a copy of the GNU General Public License |
---|
22 | along with this program; if not, write to the Free Software |
---|
23 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA |
---|
24 | 02111-1307, USA. |
---|
25 | */ |
---|
26 | |
---|
27 | #include <iostream> |
---|
28 | #include <fstream> |
---|
29 | #include <iosfwd> |
---|
30 | #include <string> |
---|
31 | |
---|
32 | namespace theplu{ |
---|
33 | namespace svndigest{ |
---|
34 | |
---|
35 | /// |
---|
36 | /// @brief send anchor to stream @a os |
---|
37 | /// |
---|
38 | /// @param address to link to |
---|
39 | /// @param name text visible on page |
---|
40 | /// @param level '../' is added @a level times before @a href |
---|
41 | /// @param title title of anchor |
---|
42 | /// |
---|
43 | void anchor(std::ostream& os, const std::string& href, |
---|
44 | const std::string& name, u_int level=0, |
---|
45 | const std::string& title=""); |
---|
46 | |
---|
47 | /// |
---|
48 | /// Function translating text to html format. Most character are |
---|
49 | /// just passing through (unary operation). |
---|
50 | /// |
---|
51 | void html(std::istream&, std::ostream&, char delim='\n'); |
---|
52 | |
---|
53 | /// |
---|
54 | /// @printing cascading style sheet to stream @a s. |
---|
55 | /// |
---|
56 | void print_css(std::ostream& s); |
---|
57 | |
---|
58 | /// |
---|
59 | /// @brief print html header of page |
---|
60 | /// |
---|
61 | void print_header(std::ostream&, const std::string& name, u_int level); |
---|
62 | |
---|
63 | |
---|
64 | }} // end of namespace svndigest end of namespace theplu |
---|
65 | |
---|
66 | #endif |
---|