rspecs
This commit is contained in:
@@ -58,11 +58,11 @@ shared_examples_for 'WpUsernames' do
|
||||
|
||||
it 'should return an array with 1 username (from in the body response)' do
|
||||
stub_request(:get, @module.author_url(2)).
|
||||
to_return(status: 200, body: File.new(@fixtures_dir + '/admin.htm'))
|
||||
to_return(status: 200, body: File.new(@fixtures_dir + '/test.html'))
|
||||
|
||||
usernames = @module.usernames(range: (1..2))
|
||||
usernames.should_not be_empty
|
||||
usernames.eql?([WpUser.new('admin', 2, 'admin | Wordpress 3.3.2')]).should be_true
|
||||
usernames.should === ([WpUser.new('test', 2, 'first last | user's Blog!')])
|
||||
end
|
||||
|
||||
it 'should return an array with 2 usernames (one is a duplicate and should not be present twice)' do
|
||||
@@ -70,16 +70,16 @@ shared_examples_for 'WpUsernames' do
|
||||
to_return(status: 301, headers: {'location' => '/author/Youhou/'})
|
||||
|
||||
stub_request(:get, @module.author_url(2)).
|
||||
to_return(status: 200, body: File.new(@fixtures_dir + '/admin.htm'))
|
||||
to_return(status: 200, body: File.new(@fixtures_dir + '/test.html'))
|
||||
|
||||
usernames = @module.usernames(range: (1..5))
|
||||
usernames.should_not be_empty
|
||||
expected = [
|
||||
WpUser.new('admin', 2, 'admin | Wordpress 3.3.2'),
|
||||
WpUser.new('test', 2, 'first last | user's Blog!'),
|
||||
WpUser.new('Youhou', 4, 'empty')
|
||||
]
|
||||
|
||||
usernames.sort_by { |u| u.name }.eql?(expected.sort_by { |u| u.name }).should be_true
|
||||
usernames.sort_by { |u| u.name }.should === expected.sort_by { |u| u.name }
|
||||
end
|
||||
end
|
||||
|
||||
@@ -202,7 +202,7 @@ shared_examples_for 'WpUsernames' do
|
||||
describe '#remove_junk_from_nickname' do
|
||||
after :each do
|
||||
result = @module.remove_junk_from_nickname(@input)
|
||||
result.eql?(@expected).should === true
|
||||
result.should === @expected
|
||||
end
|
||||
|
||||
it 'should return an empty array' do
|
||||
|
||||
@@ -1,145 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<!--[if IE 6]>
|
||||
<html id="ie6" dir="ltr" lang="en-US">
|
||||
<![endif]-->
|
||||
<!--[if IE 7]>
|
||||
<html id="ie7" dir="ltr" lang="en-US">
|
||||
<![endif]-->
|
||||
<!--[if IE 8]>
|
||||
<html id="ie8" dir="ltr" lang="en-US">
|
||||
<![endif]-->
|
||||
<!--[if !(IE 6) | !(IE 7) | !(IE 8) ]><!-->
|
||||
<html dir="ltr" lang="en-US">
|
||||
<!--<![endif]-->
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>admin | Wordpress 3.3.2</title>
|
||||
<link rel="profile" href="http://gmpg.org/xfn/11" />
|
||||
<link rel="stylesheet" type="text/css" media="all" href="http://lamp/wordpress-3.3.2/wp-content/themes/twentyeleven/style.css" />
|
||||
<link rel="pingback" href="http://lamp/wordpress-3.3.2/xmlrpc.php" />
|
||||
<!--[if lt IE 9]>
|
||||
<script src="http://lamp/wordpress-3.3.2/wp-content/themes/twentyeleven/js/html5.js" type="text/javascript"></script>
|
||||
<![endif]-->
|
||||
<meta name='robots' content='noindex,nofollow' />
|
||||
<link rel="alternate" type="application/rss+xml" title="Wordpress 3.3.2 » Feed" href="http://lamp/wordpress-3.3.2/?feed=rss2" />
|
||||
<link rel="alternate" type="application/rss+xml" title="Wordpress 3.3.2 » Comments Feed" href="http://lamp/wordpress-3.3.2/?feed=comments-rss2" />
|
||||
<link rel="alternate" type="application/rss+xml" title="Wordpress 3.3.2 » Posts by admin Feed" href="http://lamp/wordpress-3.3.2/?feed=rss2&author=1" />
|
||||
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://lamp/wordpress-3.3.2/xmlrpc.php?rsd" />
|
||||
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://lamp/wordpress-3.3.2/wp-includes/wlwmanifest.xml" />
|
||||
<meta name="generator" content="WordPress 3.3.2" />
|
||||
<style type="text/css">.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style>
|
||||
</head>
|
||||
|
||||
<body class="archive author author-admin author-1 single-author two-column right-sidebar">
|
||||
<div id="page" class="hfeed">
|
||||
<header id="branding" role="banner">
|
||||
<hgroup>
|
||||
<h1 id="site-title"><span><a href="http://lamp/wordpress-3.3.2/" title="Wordpress 3.3.2" rel="home">Wordpress 3.3.2</a></span></h1>
|
||||
<h2 id="site-description">Just another WordPress site</h2>
|
||||
</hgroup>
|
||||
|
||||
<a href="http://lamp/wordpress-3.3.2/">
|
||||
<img src="http://lamp/wordpress-3.3.2/wp-content/themes/twentyeleven/images/headers/chessboard.jpg" width="1000" height="288" alt="" />
|
||||
</a>
|
||||
|
||||
<form method="get" id="searchform" action="http://lamp/wordpress-3.3.2/">
|
||||
<label for="s" class="assistive-text">Search</label>
|
||||
<input type="text" class="field" name="s" id="s" placeholder="Search" />
|
||||
<input type="submit" class="submit" name="submit" id="searchsubmit" value="Search" />
|
||||
</form>
|
||||
|
||||
<nav id="access" role="navigation">
|
||||
<h3 class="assistive-text">Main menu</h3>
|
||||
<div class="skip-link"><a class="assistive-text" href="#content" title="Skip to primary content">Skip to primary content</a></div>
|
||||
<div class="skip-link"><a class="assistive-text" href="#secondary" title="Skip to secondary content">Skip to secondary content</a></div>
|
||||
<div class="menu"><ul><li ><a href="http://lamp/wordpress-3.3.2/" title="Home">Home</a></li><li class="page_item page-item-2"><a href="http://lamp/wordpress-3.3.2/?page_id=2">Sample Page</a></li></ul></div>
|
||||
</nav><!-- #access -->
|
||||
</header><!-- #branding -->
|
||||
|
||||
|
||||
<div id="main">
|
||||
<section id="primary">
|
||||
<div id="content" role="main">
|
||||
|
||||
|
||||
|
||||
<header class="page-header">
|
||||
<h1 class="page-title author">Author Archives: <span class="vcard"><a class="url fn n" href="http://lamp/wordpress-3.3.2/?author=1" title="admin" rel="me">admin</a></span></h1>
|
||||
</header>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<article id="post-1" class="post-1 post type-post status-publish format-standard hentry category-uncategorized">
|
||||
<header class="entry-header">
|
||||
<h1 class="entry-title"><a href="http://lamp/wordpress-3.3.2/?p=1" title="Permalink to Hello world!" rel="bookmark">Hello world!</a></h1>
|
||||
|
||||
<div class="entry-meta">
|
||||
<span class="sep">Posted on </span><a href="http://lamp/wordpress-3.3.2/?p=1" title="1:05 pm" rel="bookmark"><time class="entry-date" datetime="2012-05-02T13:05:44+00:00" pubdate>May 2, 2012</time></a><span class="by-author"> <span class="sep"> by </span> <span class="author vcard"><a class="url fn n" href="http://lamp/wordpress-3.3.2/?author=1" title="View all posts by admin" rel="author">admin</a></span></span> </div><!-- .entry-meta -->
|
||||
|
||||
<div class="comments-link">
|
||||
<a href="http://lamp/wordpress-3.3.2/?p=1#comments" title="Comment on Hello world!">2</a> </div>
|
||||
</header><!-- .entry-header -->
|
||||
|
||||
<div class="entry-content">
|
||||
<p>Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!</p>
|
||||
</div><!-- .entry-content -->
|
||||
|
||||
<footer class="entry-meta">
|
||||
<span class="cat-links">
|
||||
<span class="entry-utility-prep entry-utility-prep-cat-links">Posted in</span> <a href="http://lamp/wordpress-3.3.2/?cat=1" title="View all posts in Uncategorized" rel="category">Uncategorized</a> </span>
|
||||
|
||||
<span class="sep"> | </span>
|
||||
<span class="comments-link"><a href="http://lamp/wordpress-3.3.2/?p=1#comments" title="Comment on Hello world!"><b>2</b> Replies</a></span>
|
||||
|
||||
</footer><!-- #entry-meta -->
|
||||
</article><!-- #post-1 -->
|
||||
|
||||
|
||||
|
||||
|
||||
</div><!-- #content -->
|
||||
</section><!-- #primary -->
|
||||
|
||||
<div id="secondary" class="widget-area" role="complementary">
|
||||
<aside id="search-2" class="widget widget_search"> <form method="get" id="searchform" action="http://lamp/wordpress-3.3.2/">
|
||||
<label for="s" class="assistive-text">Search</label>
|
||||
<input type="text" class="field" name="s" id="s" placeholder="Search" />
|
||||
<input type="submit" class="submit" name="submit" id="searchsubmit" value="Search" />
|
||||
</form>
|
||||
</aside> <aside id="recent-posts-2" class="widget widget_recent_entries"> <h3 class="widget-title">Recent Posts</h3> <ul>
|
||||
<li><a href="http://lamp/wordpress-3.3.2/?p=1" title="Hello world!">Hello world!</a></li>
|
||||
</ul>
|
||||
</aside><aside id="recent-comments-2" class="widget widget_recent_comments"><h3 class="widget-title">Recent Comments</h3><ul id="recentcomments"><li class="recentcomments">Pwet on <a href="http://lamp/wordpress-3.3.2/?p=1#comment-2">Hello world!</a></li><li class="recentcomments"><a href='http://wordpress.org/' rel='external nofollow' class='url'>Mr WordPress</a> on <a href="http://lamp/wordpress-3.3.2/?p=1#comment-1">Hello world!</a></li></ul></aside><aside id="archives-2" class="widget widget_archive"><h3 class="widget-title">Archives</h3> <ul>
|
||||
<li><a href='http://lamp/wordpress-3.3.2/?m=201205' title='May 2012'>May 2012</a></li>
|
||||
</ul>
|
||||
</aside><aside id="categories-2" class="widget widget_categories"><h3 class="widget-title">Categories</h3> <ul>
|
||||
<li class="cat-item cat-item-1"><a href="http://lamp/wordpress-3.3.2/?cat=1" title="View all posts filed under Uncategorized">Uncategorized</a>
|
||||
</li>
|
||||
</ul>
|
||||
</aside><aside id="meta-2" class="widget widget_meta"><h3 class="widget-title">Meta</h3> <ul>
|
||||
<li><a href="http://lamp/wordpress-3.3.2/wp-login.php">Log in</a></li>
|
||||
<li><a href="http://lamp/wordpress-3.3.2/?feed=rss2" title="Syndicate this site using RSS 2.0">Entries <abbr title="Really Simple Syndication">RSS</abbr></a></li>
|
||||
<li><a href="http://lamp/wordpress-3.3.2/?feed=comments-rss2" title="The latest comments to all posts in RSS">Comments <abbr title="Really Simple Syndication">RSS</abbr></a></li>
|
||||
<li><a href="http://wordpress.org/" title="Powered by WordPress, state-of-the-art semantic personal publishing platform.">WordPress.org</a></li>
|
||||
</ul>
|
||||
</aside> </div><!-- #secondary .widget-area -->
|
||||
|
||||
</div><!-- #main -->
|
||||
|
||||
<footer id="colophon" role="contentinfo">
|
||||
|
||||
|
||||
|
||||
<div id="site-generator">
|
||||
<a href="http://wordpress.org/" title="Semantic Personal Publishing Platform" rel="generator">Proudly powered by WordPress</a>
|
||||
</div>
|
||||
</footer><!-- #colophon -->
|
||||
</div><!-- #page -->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
245
spec/samples/wpscan/modules/wp_usernames/test.html
Normal file
245
spec/samples/wpscan/modules/wp_usernames/test.html
Normal file
@@ -0,0 +1,245 @@
|
||||
<!DOCTYPE html>
|
||||
<!--[if IE 7]>
|
||||
<html class="ie ie7" lang="en-US">
|
||||
<![endif]-->
|
||||
<!--[if IE 8]>
|
||||
<html class="ie ie8" lang="en-US">
|
||||
<![endif]-->
|
||||
<!--[if !(IE 7) | !(IE 8) ]><!-->
|
||||
<html lang="en-US">
|
||||
<!--<![endif]-->
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>first last | user's Blog!</title>
|
||||
<link rel="profile" href="http://gmpg.org/xfn/11" />
|
||||
<link rel="pingback" href="http://10.211.55.15/wordpress/xmlrpc.php" />
|
||||
<!--[if lt IE 9]>
|
||||
<script src="http://10.211.55.15/wordpress/wp-content/themes/twentytwelve/js/html5.js" type="text/javascript"></script>
|
||||
<![endif]-->
|
||||
<link rel="alternate" type="application/rss+xml" title="user's Blog! » Feed" href="http://10.211.55.15/wordpress/feed/" />
|
||||
<link rel="alternate" type="application/rss+xml" title="user's Blog! » Comments Feed" href="http://10.211.55.15/wordpress/comments/feed/" />
|
||||
<link rel="alternate" type="application/rss+xml" title="user's Blog! » Posts by first last Feed" href="http://10.211.55.15/wordpress/author/test/feed/" />
|
||||
<link rel='stylesheet' id='gllrStylesheet-css' href='http://10.211.55.15/wordpress/wp-content/plugins/gallery-plugin/css/stylesheet.css?ver=3.5' type='text/css' media='all' />
|
||||
<link rel='stylesheet' id='gllrFancyboxStylesheet-css' href='http://10.211.55.15/wordpress/wp-content/plugins/gallery-plugin/fancybox/jquery.fancybox-1.3.4.css?ver=3.5' type='text/css' media='all' />
|
||||
<link rel='stylesheet' id='twentytwelve-fonts-css' href='http://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700&subset=latin,latin-ext' type='text/css' media='all' />
|
||||
<link rel='stylesheet' id='twentytwelve-style-css' href='http://10.211.55.15/wordpress/wp-content/themes/twentytwelve/style.css?ver=3.5' type='text/css' media='all' />
|
||||
<!--[if lt IE 9]>
|
||||
<link rel='stylesheet' id='twentytwelve-ie-css' href='http://10.211.55.15/wordpress/wp-content/themes/twentytwelve/css/ie.css?ver=20121010' type='text/css' media='all' />
|
||||
<![endif]-->
|
||||
<link rel='stylesheet' id='sraf_styles-css' href='http://10.211.55.15/wordpress/wp-content/plugins/super-refer-a-friend/css/sraf.css?ver=3.5' type='text/css' media='all' />
|
||||
<link rel='stylesheet' id='thick_box_styles-css' href='http://10.211.55.15/wordpress/wp-content/plugins/super-refer-a-friend/css/thickbox.css?ver=3.5' type='text/css' media='all' />
|
||||
<link rel='stylesheet' id='wpgallery-css' href='http://10.211.55.15/wordpress/wp-content/plugins/wordpress-gallery-plugin/css/wp_gallery.css?ver=3.5' type='text/css' media='all' />
|
||||
<link rel='stylesheet' id='nivoslider-css' href='http://10.211.55.15/wordpress/wp-content/plugins/wordpress-gallery-plugin/css/nivo-slider.css?ver=3.5' type='text/css' media='all' />
|
||||
<link rel='stylesheet' id='colorbox-css' href='http://10.211.55.15/wordpress/wp-content/plugins/wordpress-gallery-plugin/lightbox/colorbox/colorbox.css?ver=3.5' type='text/css' media='all' />
|
||||
<link rel='stylesheet' id='wppa_style-css' href='http://10.211.55.15/wordpress/wp-content/plugins/wp-photo-album-plus/theme/wppa-style.css?ver=3.5' type='text/css' media='all' />
|
||||
<script type="text/JavaScript">
|
||||
var srafSponsorWrapperClass = "sraf-sponsor-link-wrapper";
|
||||
var srafSponsorText = "<div class=\"sraf-sponsor-link-wrapper\">Super Refer-A-Friend Plugin by <a href=\"http:\/\/wplift.com\/\">WPLift<\/a><\/div>";
|
||||
</script>
|
||||
<script type='text/javascript' src='http://10.211.55.15/wordpress/wp-includes/js/jquery/jquery.js?ver=1.8.3'></script>
|
||||
<script type='text/javascript' src='http://10.211.55.15/wordpress/wp-content/plugins/wp-photo-album-plus/wppa.min.js?ver=3.5'></script>
|
||||
<script type='text/javascript' src='http://10.211.55.15/wordpress/wp-content/plugins/gallery-plugin/fancybox/jquery.mousewheel-3.0.4.pack.js?ver=3.5'></script>
|
||||
<script type='text/javascript' src='http://10.211.55.15/wordpress/wp-content/plugins/gallery-plugin/fancybox/jquery.fancybox-1.3.4.pack.js?ver=3.5'></script>
|
||||
<script type='text/javascript' src='http://10.211.55.15/wordpress/wp-content/plugins/super-refer-a-friend/js/jquery.validate.js?ver=3.5'></script>
|
||||
<script type='text/javascript' src='http://10.211.55.15/wordpress/wp-content/plugins/super-refer-a-friend/js/thickbox.js?ver=3.5'></script>
|
||||
<script type='text/javascript' src='http://10.211.55.15/wordpress/wp-content/plugins/super-refer-a-friend/js/sraf.js?ver=3.5'></script>
|
||||
<script type='text/javascript' src='http://10.211.55.15/wordpress/wp-content/plugins/wordpress-gallery-plugin/js/jquery.nivo.slider.pack.js?ver=3.5'></script>
|
||||
<script type='text/javascript' src='http://10.211.55.15/wordpress/wp-content/plugins/wordpress-gallery-plugin/lightbox/colorbox/jquery.colorbox-min.js?ver=3.5'></script>
|
||||
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://10.211.55.15/wordpress/xmlrpc.php?rsd" />
|
||||
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://10.211.55.15/wordpress/wp-includes/wlwmanifest.xml" />
|
||||
<meta name="generator" content="WordPress 3.5" />
|
||||
|
||||
<meta http-equiv="Content-Language" content="en-US" />
|
||||
<style type="text/css" media="screen">
|
||||
.qtrans_flag span { display:none }
|
||||
.qtrans_flag { height:12px; width:18px; display:block }
|
||||
.qtrans_flag_and_text { padding-left:20px }
|
||||
.qtrans_flag_de { background:url(http://10.211.55.15/wordpress/wp-content/plugins/qtranslate/flags/de.png) no-repeat }
|
||||
.qtrans_flag_en { background:url(http://10.211.55.15/wordpress/wp-content/plugins/qtranslate/flags/gb.png) no-repeat }
|
||||
.qtrans_flag_zh { background:url(http://10.211.55.15/wordpress/wp-content/plugins/qtranslate/flags/cn.png) no-repeat }
|
||||
</style>
|
||||
<link hreflang="de" href="http://10.211.55.15/wordpress/de/?author=2" rel="alternate" />
|
||||
<link hreflang="zh" href="http://10.211.55.15/wordpress/zh/?author=2" rel="alternate" />
|
||||
<style type="text/css">.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style>
|
||||
|
||||
<!-- WPPA+ Runtime parameters -->
|
||||
<script type="text/javascript">
|
||||
/* <![CDATA[ */
|
||||
|
||||
wppaBackgroundColorImage = "#eeeeee";
|
||||
wppaPopupLinkType = "photo";
|
||||
wppaAnimationType = "fadeover";
|
||||
wppaAnimationSpeed = 800;
|
||||
wppaImageDirectory = "http://10.211.55.15/wordpress/wp-content/plugins/wp-photo-album-plus/images/";
|
||||
wppaThumbnailAreaDelta = 9;
|
||||
wppaTextFrameDelta = 181;
|
||||
wppaBoxDelta = 16;
|
||||
wppaSlideShowTimeOut = 2500;
|
||||
wppaPreambule = 4;
|
||||
wppaFilmShowGlue = true;
|
||||
wppaSlideShow = "Slideshow";
|
||||
wppaStart = "Start";
|
||||
wppaStop = "Stop";
|
||||
wppaSlower = "Slower";
|
||||
wppaFaster = "Faster";
|
||||
wppaPhoto = "Photo";
|
||||
wppaOf = "of";
|
||||
wppaPreviousPhoto = "Previous photo";
|
||||
wppaNextPhoto = "Next photo";
|
||||
wppaPrevP = "Prev.";
|
||||
wppaNextP = "Next";
|
||||
wppaMiniTreshold = 300;
|
||||
wppaUserName = "10.211.55.2";
|
||||
wppaRatingOnce = false;
|
||||
wppaPleaseName = "Please enter your name";
|
||||
wppaPleaseEmail = "Please enter a valid email address";
|
||||
wppaPleaseComment = "Please enter a comment";
|
||||
wppaHideWhenEmpty = false;
|
||||
wppaBGcolorNumbar = "#cccccc";
|
||||
wppaBcolorNumbar = "#cccccc";
|
||||
wppaBGcolorNumbarActive = "#333333";
|
||||
wppaBcolorNumbarActive = "#333333";
|
||||
wppaFontFamilyNumbar = "";
|
||||
wppaFontSizeNumbar = "px";
|
||||
wppaFontColorNumbar = "#777777";
|
||||
wppaFontWeightNumbar = "normal";
|
||||
wppaFontFamilyNumbarActive = "";
|
||||
wppaFontSizeNumbarActive = "px";
|
||||
wppaFontColorNumbarActive = "#777777";
|
||||
wppaFontWeightNumbarActive = "bold";
|
||||
wppaNumbarMax = "10";
|
||||
wppaLocale = "en_US";
|
||||
wppaAjaxUrl = "http://10.211.55.15/wordpress/wp-admin/admin-ajax.php";
|
||||
wppaNextOnCallback = false;
|
||||
wppaRatingUseAjax = false;
|
||||
wppaStarOpacity = 0.2;
|
||||
wppaTickImg.src = "http://10.211.55.15/wordpress/wp-content/plugins/wp-photo-album-plus/images/tick.png";
|
||||
wppaClockImg.src = "http://10.211.55.15/wordpress/wp-content/plugins/wp-photo-album-plus/images/clock.png";
|
||||
wppaSlideWrap = true;
|
||||
wppaLightBox = "";
|
||||
wppaEmailRequired = true;
|
||||
wppaSlideBorderWidth = 0;
|
||||
wppaAllowAjax = false;
|
||||
wppaUsePhotoNamesInUrls = false;
|
||||
wppaThumbTargetBlank = false;
|
||||
wppaRatingMax = 5;
|
||||
wppaRatingDisplayType = "graphic";
|
||||
wppaRatingPrec = 2;
|
||||
wppaStretch = false;
|
||||
wppaMinThumbSpace = 4;
|
||||
wppaThumbSpaceAuto = true;
|
||||
wppaMagnifierCursor = "magnifier-small.png";
|
||||
wppaArtMonkyLink = "none";
|
||||
wppaAutoOpenComments = true;
|
||||
/* ]]> */
|
||||
</script>
|
||||
|
||||
<!-- WPPA+ Rendering enabled -->
|
||||
</head>
|
||||
|
||||
<body class="archive author author-test author-2 custom-font-enabled single-author">
|
||||
<div id="page" class="hfeed site">
|
||||
<header id="masthead" class="site-header" role="banner">
|
||||
<hgroup>
|
||||
<h1 class="site-title"><a href="http://10.211.55.15/wordpress/" title="user's Blog!" rel="home">user's Blog!</a></h1>
|
||||
<h2 class="site-description">Just another WordPress site</h2>
|
||||
</hgroup>
|
||||
|
||||
<nav id="site-navigation" class="main-navigation" role="navigation">
|
||||
<h3 class="menu-toggle">Menu</h3>
|
||||
<a class="assistive-text" href="#content" title="Skip to content">Skip to content</a>
|
||||
<div class="nav-menu"><ul><li ><a href="http://10.211.55.15/wordpress/" title="Home">Home</a></li><li class="page_item page-item-2"><a href="http://10.211.55.15/wordpress/sample-page/">Sample Page</a></li></ul></div>
|
||||
</nav><!-- #site-navigation -->
|
||||
|
||||
</header><!-- #masthead -->
|
||||
|
||||
<div id="main" class="wrapper">
|
||||
<section id="primary" class="site-content">
|
||||
<div id="content" role="main">
|
||||
|
||||
|
||||
<article id="post-0" class="post no-results not-found">
|
||||
<header class="entry-header">
|
||||
<h1 class="entry-title">Nothing Found</h1>
|
||||
</header>
|
||||
|
||||
<div class="entry-content">
|
||||
<p>Apologies, but no results were found. Perhaps searching will help find a related post.</p>
|
||||
<form role="search" method="get" id="searchform" action="http://10.211.55.15/wordpress/" >
|
||||
<div><label class="screen-reader-text" for="s">Search for:</label>
|
||||
<input type="text" value="" name="s" id="s" />
|
||||
<input type="submit" id="searchsubmit" value="Search" />
|
||||
</div>
|
||||
</form> </div><!-- .entry-content -->
|
||||
</article><!-- #post-0 -->
|
||||
|
||||
</div><!-- #content -->
|
||||
</section><!-- #primary -->
|
||||
|
||||
|
||||
<div id="secondary" class="widget-area" role="complementary">
|
||||
<aside id="search-2" class="widget widget_search"><form role="search" method="get" id="searchform" action="http://10.211.55.15/wordpress/" >
|
||||
<div><label class="screen-reader-text" for="s">Search for:</label>
|
||||
<input type="text" value="" name="s" id="s" />
|
||||
<input type="submit" id="searchsubmit" value="Search" />
|
||||
</div>
|
||||
</form></aside> <aside id="recent-posts-2" class="widget widget_recent_entries"> <h3 class="widget-title">Recent Posts</h3> <ul>
|
||||
<li>
|
||||
<a href="http://10.211.55.15/wordpress/hello-world/" title="Hello world!">Hello world!</a>
|
||||
</li>
|
||||
</ul>
|
||||
</aside><aside id="recent-comments-2" class="widget widget_recent_comments"><h3 class="widget-title">Recent Comments</h3><ul id="recentcomments"><li class="recentcomments"><a href='http://wordpress.org/' rel='external nofollow' class='url'>Mr WordPress</a> on <a href="http://10.211.55.15/wordpress/hello-world/#comment-1">Hello world!</a></li></ul></aside><aside id="archives-2" class="widget widget_archive"><h3 class="widget-title">Archives</h3> <ul>
|
||||
<li><a href='http://10.211.55.15/wordpress/2012/12/' title='December 2012'>December 2012</a></li>
|
||||
</ul>
|
||||
</aside><aside id="categories-2" class="widget widget_categories"><h3 class="widget-title">Categories</h3> <ul>
|
||||
<li class="cat-item cat-item-1"><a href="http://10.211.55.15/wordpress/category/uncategorized/" title="View all posts filed under Uncategorized">Uncategorized</a>
|
||||
</li>
|
||||
</ul>
|
||||
</aside><aside id="meta-2" class="widget widget_meta"><h3 class="widget-title">Meta</h3> <ul>
|
||||
<li><a href="http://10.211.55.15/wordpress/wp-login.php">Log in</a></li>
|
||||
<li><a href="http://10.211.55.15/wordpress/feed/" title="Syndicate this site using RSS 2.0">Entries <abbr title="Really Simple Syndication">RSS</abbr></a></li>
|
||||
<li><a href="http://10.211.55.15/wordpress/comments/feed/" title="The latest comments to all posts in RSS">Comments <abbr title="Really Simple Syndication">RSS</abbr></a></li>
|
||||
<li><a href="http://wordpress.org/" title="Powered by WordPress, state-of-the-art semantic personal publishing platform.">WordPress.org</a></li>
|
||||
</ul>
|
||||
</aside> </div><!-- #secondary -->
|
||||
</div><!-- #main .wrapper -->
|
||||
<footer id="colophon" role="contentinfo">
|
||||
<div class="site-info">
|
||||
<a href="http://bitnami.org/stack/wordpress/" title="Semantic Personal Publishing Platform">Proudly powered by BitNami WordPress Stack</a>
|
||||
</div><!-- .site-info -->
|
||||
</footer><!-- #colophon -->
|
||||
</div><!-- #page -->
|
||||
|
||||
<div class="sraf-sponsor-link-wrapper">Super Refer-A-Friend Plugin by <a href="http://wplift.com/">WPLift</a></div>
|
||||
<!-- start WPPA+ Footer data -->
|
||||
<div id="wppa-overlay-bg" style="text-align:center; display:none; position:fixed; top:0; left:0; z-index:100090; width:100%; height:2048px; background-color:black;" onclick="wppaOvlOnclick(event)" ></div>
|
||||
<div id="wppa-overlay-ic" style="position:fixed; top:0; padding-top:10px; z-index:100095; opacity:1; box-shadow:none;"
|
||||
ontouchstart="wppaTouchStart(event, 'wppa-overlay-ic', -1);" ontouchend="wppaTouchEnd(event);"
|
||||
ontouchmove="wppaTouchMove(event);" ontouchcancel="wppaTouchCancel(event);" >
|
||||
</div>
|
||||
<img id="wppa-overlay-sp" style="position:fixed; top:200px; left:200px; z-index:100100; opacity:1; visibility:hidden; box-shadow:none;" src="http://10.211.55.15/wordpress/wp-content/plugins/wp-photo-album-plus/images/loading.gif" />
|
||||
<script type="text/javascript">jQuery("#wppa-overlay-bg").css({height:screen.height+"px"});
|
||||
wppaOvlTxtHeight = "auto";
|
||||
wppaOvlCloseTxt = "CLOSE";
|
||||
wppaOvlOpacity = 0.8;
|
||||
wppaOvlOnclickType = "none";
|
||||
wppaOvlTheme = "black";
|
||||
wppaOvlAnimSpeed = 300;
|
||||
wppaVer4WindowWidth = 800;
|
||||
wppaVer4WindowHeight = 600;
|
||||
wppaOvlShowCounter = true;
|
||||
|
||||
wppaOvlFontSize = "10"
|
||||
|
||||
wppaOvlFontWeight = "bold"
|
||||
wppaOvlLineHeight = "12"
|
||||
</script>
|
||||
<!-- end WPPA+ Footer data --><script type='text/javascript' src='http://10.211.55.15/wordpress/wp-content/themes/twentytwelve/js/navigation.js?ver=1.0'></script>
|
||||
</body>
|
||||
</html>
|
||||
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/
|
||||
|
||||
Page Caching using disk: enhanced (Requested URI contains query)
|
||||
|
||||
Served from: 10.211.55.15 @ 2013-02-05 09:01:41 -->
|
||||
Reference in New Issue
Block a user