- Timestamp:
- Jun 20, 2007, 10:16:37 PM (16 years ago)
- Location:
- trunk/lib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/html_utility.cc
r309 r376 35 35 namespace svndigest{ 36 36 37 std::string anchor(const std::string& href,37 std::string anchor(const std::string& url, 38 38 const std::string& name, u_int level, 39 39 const std::string& title) … … 46 46 for (size_t i=0; i<level; ++i) 47 47 ss << "../"; 48 ss << href;48 ss << url; 49 49 ss << "\">"; 50 50 hs << name; -
trunk/lib/html_utility.h
r285 r376 36 36 /// @brief create anchor 37 37 /// 38 /// @param hrefaddress to link to38 /// @param url address to link to 39 39 /// @param name text visible on page 40 40 /// @param level '../' is added @a level times before @a href 41 41 /// @param title title of anchor 42 42 /// 43 std::string anchor(const std::string& href,43 std::string anchor(const std::string& url, 44 44 const std::string& name, u_int level=0, 45 45 const std::string& title=""); 46 46 47 47 /// 48 /// @ brief print html footer of page48 /// @Brief print html footer of page 49 49 /// 50 50 void print_footer(std::ostream&);
Note: See TracChangeset
for help on using the changeset viewer.