Index: tools/inspect/link_check.cpp =================================================================== RCS file: /cvsroot/boost/boost/tools/inspect/link_check.cpp,v retrieving revision 1.18 diff -u -u -r1.18 link_check.cpp --- tools/inspect/link_check.cpp 7 Aug 2006 22:34:23 -0000 1.18 +++ tools/inspect/link_check.cpp 16 Sep 2006 20:46:36 -0000 @@ -52,6 +52,9 @@ const path & full_path, // example: c:/foo/boost/filesystem/path.hpp const string & contents ) // contents of file to be inspected { + if (contents.find( "boostinspect:" "unlinked" ) != string::npos) + m_paths[ relative_to( full_path, fs::initial_path() ) ] |= m_unlinked; + if (contents.find( "boostinspect:" "nolink" ) != string::npos) return; string::const_iterator start( contents.begin() ); @@ -158,6 +161,7 @@ { // std::clog << itr->first << " " << itr->second << "\n"; if ( (itr->second & m_linked_to) != m_linked_to + && (itr->second & m_unlinked) != m_unlinked && (itr->first.rfind( ".html" ) == itr->first.size()-5 || itr->first.rfind( ".htm" ) == itr->first.size()-4) // because they may be redirectors, it is OK if these are unlinked: Index: tools/inspect/link_check.hpp =================================================================== RCS file: /cvsroot/boost/boost/tools/inspect/link_check.hpp,v retrieving revision 1.7 diff -u -u -r1.7 link_check.hpp --- tools/inspect/link_check.hpp 7 Aug 2006 18:41:29 -0000 1.7 +++ tools/inspect/link_check.hpp 16 Sep 2006 20:46:36 -0000 @@ -19,6 +19,7 @@ { const int m_linked_to = 1; const int m_present = 2; + const int m_unlinked = 4; class link_check : public hypertext_inspector {