- Timestamp:
- May 18, 2007, 5:16:02 PM (16 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bin/svndigest.cc
r318 r330 164 164 SVNlog local_log(option->root()); 165 165 print_main_page(tree->name(), local_log, stats, 166 SVNinfo(option->root()).url());166 tree->url()); 167 167 mkdir("all"); 168 168 mkdir("images"); -
trunk/lib/File.h
r307 r330 43 43 const std::string& output=""); 44 44 45 /// 46 /// @return href to this file 47 /// 45 /** 46 For example 'File.h.html' 47 48 @return href to this file 49 */ 48 50 std::string href(void) const; 49 51 … … 56 58 /// @brief Parsing out information from svn repository 57 59 /// 58 /// @return true if succesful60 /// @return Stats object of the file 59 61 /// 60 62 const Stats& parse(const bool verbose=false); -
trunk/lib/Node.cc
r316 r330 245 245 } 246 246 247 248 std::string Node::url(void) const 249 { 250 return svninfo_.url(); 251 } 252 247 253 }} // end of namespace svndigest and namespace theplu -
trunk/lib/Node.h
r303 r330 161 161 inline bool svndigest_ignore(void) const { return svndigest_ignore_; } 162 162 163 /** 164 \see SVNinfo::url(void) 165 */ 166 std::string url(void) const; 167 163 168 protected: 164 169 … … 195 200 }; 196 201 202 /** 203 \brief Functor class to compare pointers of Nodes 204 */ 197 205 struct NodePtrLess 198 206 { 207 /** 208 @return true if first and second are of same type (Directory or 209 File) and name of first is (alphabetically) less than name of 210 second; or if first is a Directory and second is a File. 211 */ 199 212 inline bool operator()(const Node* first, const Node* second) const 200 213 {
Note: See TracChangeset
for help on using the changeset viewer.