Committer: ailyin
LJSUP-13770 (refactor LJ FAQs from BML to controllers)U trunk/cgi-bin/LJ/Portal/Box/FAQ.pm U trunk/cgi-bin/LJ/Widget/CreateAccount.pm U trunk/cgi-bin/LJ/Widget/IPPU/AddAlias.pm U trunk/cgi-bin/cleanhtml.pl U trunk/cgi-bin/ljlib.pl U trunk/cgi-bin/supportlib.pl U trunk/htdocs/admin/faq/faqedit.bml U trunk/htdocs/admin/faq/faqedit_do.bml U trunk/htdocs/friends/add.bml U trunk/htdocs/js/contextualhover.js U trunk/htdocs/manage/emailpost.bml U trunk/htdocs/multisearch.bml U trunk/htdocs/poll/create.bml U trunk/htdocs/poll/index.bml U trunk/htdocs/sitemap.txt U trunk/htdocs/sitemap.xml U trunk/htdocs/stats.bml U trunk/htdocs/support/faqpop.bml U trunk/htdocs/support/index.bml U trunk/htdocs/support/see_request.bml U trunk/htdocs/tools/textmessage.bml U trunk/htdocs/update.bml U trunk/htdocs/userinfo2.bml U trunk/htdocs/userinfo3.bml
Modified: trunk/cgi-bin/LJ/Portal/Box/FAQ.pm =================================================================== --- trunk/cgi-bin/LJ/Portal/Box/FAQ.pm 2012-09-28 12:35:11 UTC (rev 23009) +++ trunk/cgi-bin/LJ/Portal/Box/FAQ.pm 2012-09-28 12:56:39 UTC (rev 23010) @@ -68,8 +68,8 @@ my $q = $f->question_html; $q =~ s/^\s+//; $q =~ s/\s+$//; $q =~ s/\n/<BR>/g; - $content .= "<li><a href='/support/faqbrowse.bml?faqid=" - . $f->{'faqid'} . "'>$q</a> <i>($s->{statval})</i></li>\n"; + my $link = $f->page_url; + $content .= "<li><a href='$link'>$q</a> <i>($s->{statval})</i></li>\n"; } $content .= "</ul>\n"; } @@ -88,12 +88,13 @@ my $randfaq = $faqs->[$randfaqindex]; my $faqid = $randfaq->[0]; my $question = $randfaq->[1]; + my $faqlink = LJ::Faq->page_url( 'faqid' => $faqid ); $content .= qq { <b>FAQ of the Day:</b> <ul> <li> - <a href="/support/faqbrowse.bml?faqid=$faqid">$question</a> + <a href="$faqlink">$question</a> </li> </ul> }; Modified: trunk/cgi-bin/LJ/Widget/CreateAccount.pm =================================================================== --- trunk/cgi-bin/LJ/Widget/CreateAccount.pm 2012-09-28 12:35:11 UTC (rev 23009) +++ trunk/cgi-bin/LJ/Widget/CreateAccount.pm 2012-09-28 12:56:39 UTC (rev 23010) @@ -228,7 +228,6 @@ notime => 1, default => sprintf("%04d-%02d-%02d", $post->{bday_yyyy}, $post->{bday_mm}, $post->{bday_dd}), ); - ### $ret .= "<div id='bdayy_error' class='formitemFlag' style='display:none;'>" . $class->ml('widget.createaccount.yearcheck', { aopts => "href='$LJ::SITEROOT/support/faqbrowse.bml?faqid=244'" }) . "<span>"; } $ret .= $error_msg->('bday', '<br /><span class="formitemFlag">', '</span>'); $ret .= "</td></tr>\n" unless $alt_layout; Modified: trunk/cgi-bin/LJ/Widget/IPPU/AddAlias.pm =================================================================== --- trunk/cgi-bin/LJ/Widget/IPPU/AddAlias.pm 2012-09-28 12:35:11 UTC (rev 23009) +++ trunk/cgi-bin/LJ/Widget/IPPU/AddAlias.pm 2012-09-28 12:56:39 UTC (rev 23010) @@ -25,8 +25,10 @@ my $authtoken = LJ::Auth->ajax_auth_token(LJ::get_remote(), "/_widget"); $body .= "<div class='user_alias_act'>"; - $body .= "<div class='user-alias-label'><label for='Widget[IPPU_AddAlias]_alias'>". BML::ml('widget.alias.setalias') ." ".$for_user->ljuser_display."</label> (". BML::ml('widget.alias.faq', {aopts => "href='$LJ::SITEROOT/support/faqbrowse.bml?faqid=295'"}) ."):</div>"; + my $faqlink = LJ::Faq->page_url( 'faqid' => 295 ); + $body .= "<div class='user-alias-label'><label for='Widget[IPPU_AddAlias]_alias'>". BML::ml('widget.alias.setalias') ." ".$for_user->ljuser_display."</label> (". BML::ml('widget.alias.faq', {aopts => "href='$faqlink'"}) ."):</div>"; + $body .= $class->html_text( name => 'alias', id => 'Widget[IPPU_AddAlias]_alias', Modified: trunk/cgi-bin/cleanhtml.pl =================================================================== --- trunk/cgi-bin/cleanhtml.pl 2012-09-28 12:35:11 UTC (rev 23009) +++ trunk/cgi-bin/cleanhtml.pl 2012-09-28 12:56:39 UTC (rev 23010) @@ -1823,9 +1823,9 @@ 'faq' => sub { my $id = shift()+0; if ($id) { - return "support/faqbrowse.bml?faqid=$id"; + return "support/faq/$id.html"; } else { - return "support/faq.bml"; + return "support/faq/"; } }, 'memories' => sub { Modified: trunk/cgi-bin/ljlib.pl =================================================================== --- trunk/cgi-bin/ljlib.pl 2012-09-28 12:35:11 UTC (rev 23009) +++ trunk/cgi-bin/ljlib.pl 2012-09-28 12:56:39 UTC (rev 23010) @@ -24,6 +24,7 @@ use HTTP::Date (); use LJ::MemCache; use LJ::Error; +use LJ::Faq; use LJ::User; # has a bunch of pkg LJ, non-OO methods at bottom use LJ::Entry; # has a bunch of pkg LJ, non-OO methods at bottom use LJ::Constants; Modified: trunk/cgi-bin/supportlib.pl =================================================================== --- trunk/cgi-bin/supportlib.pl 2012-09-28 12:35:11 UTC (rev 23009) +++ trunk/cgi-bin/supportlib.pl 2012-09-28 12:56:39 UTC (rev 23010) @@ -957,8 +957,7 @@ undef, { faqname => $faqname, - faqurl => "$LJ::SITEROOT/support/faqbrowse.bml?" . - "faqid=$faqid&view=full", + faqurl => LJ::Faq->page_url( 'faqid' => $faqid ), } ); } Modified: trunk/htdocs/admin/faq/faqedit.bml =================================================================== --- trunk/htdocs/admin/faq/faqedit.bml 2012-09-28 12:35:11 UTC (rev 23009) +++ trunk/htdocs/admin/faq/faqedit.bml 2012-09-28 12:56:39 UTC (rev 23010) @@ -101,7 +101,8 @@ } elsif ($question =~ /\S/) { $dbh->do("UPDATE faq SET question=?, summary=?, answer=?, faqcat=?, lastmoduserid=?, lastmodtime=NOW(), sortorder=? WHERE faqid=?", undef, $question, $summary, $answer, $faqcat, $remote->{userid}, $sortorder, $id); - $ret .= "Updated FAQ item. All good. faqid is <b><a href='$LJ::SITEROOT/support/faqbrowse.bml?faqid=$id'>$id</a></b>"; + my $faqlink = LJ::Faq->page_url( 'faqid' => $id ); + $ret .= "Updated FAQ item. All good. faqid is <b><a href='$faqlink'>$id</a></b>"; $do_trans->($id); } else { Modified: trunk/htdocs/admin/faq/faqedit_do.bml =================================================================== --- trunk/htdocs/admin/faq/faqedit_do.bml 2012-09-28 12:35:11 UTC (rev 23009) +++ trunk/htdocs/admin/faq/faqedit_do.bml 2012-09-28 12:56:39 UTC (rev 23010) @@ -97,7 +97,8 @@ if ($FORM{'q'} =~ /\S/) { $dbh->do("UPDATE faq SET question=$qq, summary=$qs, answer=$qa, faqcat=$qfaqcat, lastmoduserid=$remote->{'userid'}, lastmodtime=NOW(), sortorder=$sortorder WHERE faqid=$id"); - $ret .= "Updated FAQ item. All good. faqid is <b><a href='$LJ::SITEROOT/support/faqbrowse.bml?faqid=$id'>$id</a></b>"; + my $faqlink = LJ::Faq->page_url( 'faqid' => $id ); + $ret .= "Updated FAQ item. All good. faqid is <b><a href='$faqlink'>$id</a></b>"; $do_trans->($id); } Modified: trunk/htdocs/friends/add.bml =================================================================== --- trunk/htdocs/friends/add.bml 2012-09-28 12:35:11 UTC (rev 23009) +++ trunk/htdocs/friends/add.bml 2012-09-28 12:56:39 UTC (rev 23010) @@ -245,8 +245,9 @@ if ($u->is_visible) { ## Add user alias while user's friending + my $notes_faq_link = LJ::Faq->page_url( 'faqid' => 295 ); $body .= '<div class="b-addfriend-option b-addfriend-note">'; - $body .= '<h3 class="b-addfriend-subhead">' . BML::ml('.note.text', {'username' => LJ::ljuser($user), aopts => "href='$LJ::SITEROOT/support/faqbrowse.bml?faqid=295'" }) . '</h3>'; + $body .= '<h3 class="b-addfriend-subhead">' . BML::ml('.note.text', {'username' => LJ::ljuser($user), aopts => "href='$notes_faq_link'" }) . '</h3>'; if ($remote->get_cap ('aliases')) { $body .= '<p>' . LJ::html_text ( { name => 'user_note', class => 'type-text', value => LJ::ljuser_alias($u->{user}) } ) . '</p>'; } else { Modified: trunk/htdocs/js/contextualhover.js =================================================================== --- trunk/htdocs/js/contextualhover.js 2012-09-28 12:35:11 UTC (rev 23009) +++ trunk/htdocs/js/contextualhover.js 2012-09-28 12:56:39 UTC (rev 23010) @@ -280,7 +280,7 @@ '<a href="'+Site.siteroot+'/manage/account">'+ '<img src="'+Site.statprefix+'/horizon/upgrade-paid-icon.gif?v=2621" width="13" height="16" alt=""/>'+ '</a> '+ - '<a href="'+Site.siteroot+'/support/faqbrowse.bml?faqid=295">'+data.alias_title+'</a>'+ + '<a href="'+Site.siteroot+'/support/faq/295.html">'+data.alias_title+'</a>'+ '</span>'); } } Modified: trunk/htdocs/manage/emailpost.bml =================================================================== --- trunk/htdocs/manage/emailpost.bml 2012-09-28 12:35:11 UTC (rev 23009) +++ trunk/htdocs/manage/emailpost.bml 2012-09-28 12:56:39 UTC (rev 23010) @@ -53,6 +53,7 @@ $mode = 'help'; } + my $faqlink = LJ::Faq->page_url( 'faqid' => 75 ); #-------------------------------------------------------------------------- # Help text @@ -239,7 +240,7 @@ text => qq{ <?h1 $ML{'.help.images.header'} h1?><br /> - <?p } . BML::ml('.help.images.text', {'aopts1' => "href='$LJ::FB_SITEROOT'", 'scrapbook' => 'ScrapBook', 'dimensions' => "320x240", 'aopts2' => "href='$LJ::SITEROOT/support/faqbrowse.bml?faqid=75'", 'aopts3' => "href='$LJ::SITEROOT/manage/emailpost.bml?mode=help&type=headers'"}) . qq{ p?><br /> + <?p } . BML::ml('.help.images.text', {'aopts1' => "href='$LJ::FB_SITEROOT'", 'scrapbook' => 'ScrapBook', 'dimensions' => "320x240", 'aopts2' => "href='$faqlink'", 'aopts3' => "href='$LJ::SITEROOT/manage/emailpost.bml?mode=help&type=headers'"}) . qq{ p?><br /> <fieldset><legend>$ML{'.help.images.gallery.header'}</legend> <?p } . BML::ml('.help.images.gallery.text', {'header' => "<b>lj-gallery</b>", 'name' => "LJ_emailpost"}) . qq{ p?> @@ -265,7 +266,7 @@ emailex?></fieldset> <fieldset><legend>$ML{'.help.images.size.header'}</legend> - <?p } . BML::ml('.help.images.size.text1', {'maxsize' => "640x480", 'defaultsize' => "320x240" , 'header' => "<b>lj-imgsize</b>", 'ljcutsize' => "320x240", 'aopts' => "href='$LJ::SITEROOT/support/faqbrowse.bml?faqid=75'"}) . qq{ p?> + <?p } . BML::ml('.help.images.size.text1', {'maxsize' => "640x480", 'defaultsize' => "320x240" , 'header' => "<b>lj-imgsize</b>", 'ljcutsize' => "320x240", 'aopts' => "href='$faqlink'"}) . qq{ p?> <?p } . BML::ml('.help.images.size.text2', {'size1' => "100x100", 'size2' => "320x240", 'size3' => "640x480"}) . qq{ p?> <?emailex $to_pin @@ -301,7 +302,7 @@ emailex?></fieldset> <fieldset><legend>$ML{'.help.images.ljcut.header'}</legend> - <?p } . BML::ml('.help.images.ljcut.text', {'ljcutsize' => "320x240", 'aopts' => "href='$LJ::SITEROOT/support/faqbrowse.bml?faqid=75'", 'header' => "<b>lj-imgcut</b>", 'count' => "count", 'titles' => "titles"}) . qq{ p?> + <?p } . BML::ml('.help.images.ljcut.text', {'ljcutsize' => "320x240", 'aopts' => "href='$faqlink'", 'header' => "<b>lj-imgcut</b>", 'count' => "count", 'titles' => "titles"}) . qq{ p?> <?emailex $to_pin $from Modified: trunk/htdocs/multisearch.bml =================================================================== --- trunk/htdocs/multisearch.bml 2012-09-28 12:35:11 UTC (rev 23009) +++ trunk/htdocs/multisearch.bml 2012-09-28 12:56:39 UTC (rev 23010) @@ -15,7 +15,9 @@ if ($type eq "nav_and_user" || $type eq "nav") { # Some special shortcuts used for easy navigation if ($q =~ /^faq (\d+)$/) { - return BML::redirect("$LJ::SITEROOT/support/faqbrowse.bml?faqid=$1&view=full"); + my $faqid = $1; + my $faqlink = LJ::Faq->page_url( 'faqid' => $faqid ); + return LJ::Request->redirect($faqlink); } if ($q =~ /^req(uest)? (\d+)$/) { return BML::redirect("$LJ::SITEROOT/support/see_request.bml?id=$2"); Modified: trunk/htdocs/poll/create.bml =================================================================== --- trunk/htdocs/poll/create.bml 2012-09-28 12:35:11 UTC (rev 23009) +++ trunk/htdocs/poll/create.bml 2012-09-28 12:56:39 UTC (rev 23010) @@ -728,11 +728,4 @@ _code?><?page title=><?_code return $title; _code?> body=><?_code return $body; _code?> -page?><?_c -<LJDEP> -lib: LJ::img, cgi-bin/htmlcontrols.pl, cgi-bin/ljpoll.pl -link: htdocs/support/faqbrowse.bml, htdocs/login.bml -img: img::btn_up, img::btn_down, img::btn_del -post: htdocs/poll/create.bml, htdocs/update.bml -</LJDEP> -_c?> +page?> Modified: trunk/htdocs/poll/index.bml =================================================================== --- trunk/htdocs/poll/index.bml 2012-09-28 12:35:11 UTC (rev 23009) +++ trunk/htdocs/poll/index.bml 2012-09-28 12:56:39 UTC (rev 23010) @@ -143,8 +143,4 @@ _code?><?page title=><?_code return $title; _code?> body=><?_code return $body; _code?> -page?><?_c <LJDEP> -lib: cgi-bin/ljlib.pl, cgi-bin/cleanhtml.pl -link: htdocs/poll/index.bml, htdocs/talkread.bml, htdocs/support/faqbrowse.bml, htdocs/poll/create.bml -</LJDEP> _c?> - +page?> Modified: trunk/htdocs/sitemap.txt =================================================================== --- trunk/htdocs/sitemap.txt 2012-09-28 12:35:11 UTC (rev 23009) +++ trunk/htdocs/sitemap.txt 2012-09-28 12:56:39 UTC (rev 23010) @@ -1,4 +1,4 @@ -http://www.livejournal.com/abuse/index.bml +http://www.livejournal.com/abuse/index.bml http://www.livejournal.com/abuse/policy.bml http://www.livejournal.com/abuse/policy-russian-translation.bml http://www.livejournal.com/abuse/report.bml @@ -1127,250 +1127,250 @@ http://www.livejournal.com/sup/sms_tos.bml http://www.livejournal.com/support/encodings.bml http://www.livejournal.com/support/faq.bml -http://www.livejournal.com/support/faqbrowse.bml?faqcat=about -http://www.livejournal.com/support/faqbrowse.bml?faqcat=abuse -http://www.livejournal.com/support/faqbrowse.bml?faqcat=accounts -http://www.livejournal.com/support/faqbrowse.bml?faqcat=basic -http://www.livejournal.com/support/faqbrowse.bml?faqcat=clients -http://www.livejournal.com/support/faqbrowse.bml?faqcat=comments -http://www.livejournal.com/support/faqbrowse.bml?faqcat=comm-manage -http://www.livejournal.com/support/faqbrowse.bml?faqcat=community -http://www.livejournal.com/support/faqbrowse.bml?faqcat=cust-adv -http://www.livejournal.com/support/faqbrowse.bml?faqcat=customize -http://www.livejournal.com/support/faqbrowse.bml?faqcat=entries -http://www.livejournal.com/support/faqbrowse.bml?faqcat=ext_sites -http://www.livejournal.com/support/faqbrowse.bml?faqcat=levels -http://www.livejournal.com/support/faqbrowse.bml?faqcat=mobile -http://www.livejournal.com/support/faqbrowse.bml?faqcat=payments -http://www.livejournal.com/support/faqbrowse.bml?faqcat=s1 -http://www.livejournal.com/support/faqbrowse.bml?faqcat=scrapbook -http://www.livejournal.com/support/faqbrowse.bml?faqcat=security -http://www.livejournal.com/support/faqbrowse.bml?faqcat=site_nav -http://www.livejournal.com/support/faqbrowse.bml?faqcat=sup -http://www.livejournal.com/support/faqbrowse.bml?faqcat=syn -http://www.livejournal.com/support/faqbrowse.bml?faqcat=troubleshooting -http://www.livejournal.com/support/faqbrowse.bml?faqcat=userpics -http://www.livejournal.com/support/faqbrowse.bml?faqid=1 -http://www.livejournal.com/support/faqbrowse.bml?faqid=100 -http://www.livejournal.com/support/faqbrowse.bml?faqid=101 -http://www.livejournal.com/support/faqbrowse.bml?faqid=102 -http://www.livejournal.com/support/faqbrowse.bml?faqid=104 -http://www.livejournal.com/support/faqbrowse.bml?faqid=105 -http://www.livejournal.com/support/faqbrowse.bml?faqid=106 -http://www.livejournal.com/support/faqbrowse.bml?faqid=107 -http://www.livejournal.com/support/faqbrowse.bml?faqid=108 -http://www.livejournal.com/support/faqbrowse.bml?faqid=109 -http://www.livejournal.com/support/faqbrowse.bml?faqid=11 -http://www.livejournal.com/support/faqbrowse.bml?faqid=110 -http://www.livejournal.com/support/faqbrowse.bml?faqid=111 -http://www.livejournal.com/support/faqbrowse.bml?faqid=113 -http://www.livejournal.com/support/faqbrowse.bml?faqid=114 -http://www.livejournal.com/support/faqbrowse.bml?faqid=115 -http://www.livejournal.com/support/faqbrowse.bml?faqid=116 -http://www.livejournal.com/support/faqbrowse.bml?faqid=117 -http://www.livejournal.com/support/faqbrowse.bml?faqid=119 -http://www.livejournal.com/support/faqbrowse.bml?faqid=12 -http://www.livejournal.com/support/faqbrowse.bml?faqid=120 -http://www.livejournal.com/support/faqbrowse.bml?faqid=121 -http://www.livejournal.com/support/faqbrowse.bml?faqid=122 -http://www.livejournal.com/support/faqbrowse.bml?faqid=123 -http://www.livejournal.com/support/faqbrowse.bml?faqid=124 -http://www.livejournal.com/support/faqbrowse.bml?faqid=125 -http://www.livejournal.com/support/faqbrowse.bml?faqid=126 -http://www.livejournal.com/support/faqbrowse.bml?faqid=127 -http://www.livejournal.com/support/faqbrowse.bml?faqid=128 -http://www.livejournal.com/support/faqbrowse.bml?faqid=129 -http://www.livejournal.com/support/faqbrowse.bml?faqid=13 -http://www.livejournal.com/support/faqbrowse.bml?faqid=130 -http://www.livejournal.com/support/faqbrowse.bml?faqid=131 -http://www.livejournal.com/support/faqbrowse.bml?faqid=132 -http://www.livejournal.com/support/faqbrowse.bml?faqid=134 -http://www.livejournal.com/support/faqbrowse.bml?faqid=135 -http://www.livejournal.com/support/faqbrowse.bml?faqid=136 -http://www.livejournal.com/support/faqbrowse.bml?faqid=137 -http://www.livejournal.com/support/faqbrowse.bml?faqid=138 -http://www.livejournal.com/support/faqbrowse.bml?faqid=139 -http://www.livejournal.com/support/faqbrowse.bml?faqid=14 -http://www.livejournal.com/support/faqbrowse.bml?faqid=140 -http://www.livejournal.com/support/faqbrowse.bml?faqid=141 -http://www.livejournal.com/support/faqbrowse.bml?faqid=143 -http://www.livejournal.com/support/faqbrowse.bml?faqid=145 -http://www.livejournal.com/support/faqbrowse.bml?faqid=149 -http://www.livejournal.com/support/faqbrowse.bml?faqid=15 -http://www.livejournal.com/support/faqbrowse.bml?faqid=150 -http://www.livejournal.com/support/faqbrowse.bml?faqid=151 -http://www.livejournal.com/support/faqbrowse.bml?faqid=155 -http://www.livejournal.com/support/faqbrowse.bml?faqid=156 -http://www.livejournal.com/support/faqbrowse.bml?faqid=157 -http://www.livejournal.com/support/faqbrowse.bml?faqid=158 -http://www.livejournal.com/support/faqbrowse.bml?faqid=159 -http://www.livejournal.com/support/faqbrowse.bml?faqid=16 -http://www.livejournal.com/support/faqbrowse.bml?faqid=160 -http://www.livejournal.com/support/faqbrowse.bml?faqid=162 -http://www.livejournal.com/support/faqbrowse.bml?faqid=164 -http://www.livejournal.com/support/faqbrowse.bml?faqid=165 -http://www.livejournal.com/support/faqbrowse.bml?faqid=166 -http://www.livejournal.com/support/faqbrowse.bml?faqid=168 -http://www.livejournal.com/support/faqbrowse.bml?faqid=169 -http://www.livejournal.com/support/faqbrowse.bml?faqid=17 -http://www.livejournal.com/support/faqbrowse.bml?faqid=171 -http://www.livejournal.com/support/faqbrowse.bml?faqid=172 -http://www.livejournal.com/support/faqbrowse.bml?faqid=175 -http://www.livejournal.com/support/faqbrowse.bml?faqid=176 -http://www.livejournal.com/support/faqbrowse.bml?faqid=177 -http://www.livejournal.com/support/faqbrowse.bml?faqid=179 -http://www.livejournal.com/support/faqbrowse.bml?faqid=18 -http://www.livejournal.com/support/faqbrowse.bml?faqid=181 -http://www.livejournal.com/support/faqbrowse.bml?faqid=182 -http://www.livejournal.com/support/faqbrowse.bml?faqid=183 -http://www.livejournal.com/support/faqbrowse.bml?faqid=184 -http://www.livejournal.com/support/faqbrowse.bml?faqid=185 -http://www.livejournal.com/support/faqbrowse.bml?faqid=186 -http://www.livejournal.com/support/faqbrowse.bml?faqid=187 -http://www.livejournal.com/support/faqbrowse.bml?faqid=188 -http://www.livejournal.com/support/faqbrowse.bml?faqid=189 -http://www.livejournal.com/support/faqbrowse.bml?faqid=19 -http://www.livejournal.com/support/faqbrowse.bml?faqid=190 -http://www.livejournal.com/support/faqbrowse.bml?faqid=191 -http://www.livejournal.com/support/faqbrowse.bml?faqid=192 -http://www.livejournal.com/support/faqbrowse.bml?faqid=193 -http://www.livejournal.com/support/faqbrowse.bml?faqid=194 -http://www.livejournal.com/support/faqbrowse.bml?faqid=195 -http://www.livejournal.com/support/faqbrowse.bml?faqid=196 -http://www.livejournal.com/support/faqbrowse.bml?faqid=197 -http://www.livejournal.com/support/faqbrowse.bml?faqid=198 -http://www.livejournal.com/support/faqbrowse.bml?faqid=199 -http://www.livejournal.com/support/faqbrowse.bml?faqid=2 -http://www.livejournal.com/support/faqbrowse.bml?faqid=20 -http://www.livejournal.com/support/faqbrowse.bml?faqid=200 -http://www.livejournal.com/support/faqbrowse.bml?faqid=201 -http://www.livejournal.com/support/faqbrowse.bml?faqid=202 -http://www.livejournal.com/support/faqbrowse.bml?faqid=203 -http://www.livejournal.com/support/faqbrowse.bml?faqid=206 -http://www.livejournal.com/support/faqbrowse.bml?faqid=207 -http://www.livejournal.com/support/faqbrowse.bml?faqid=208 -http://www.livejournal.com/support/faqbrowse.bml?faqid=209 -http://www.livejournal.com/support/faqbrowse.bml?faqid=21 -http://www.livejournal.com/support/faqbrowse.bml?faqid=210 -http://www.livejournal.com/support/faqbrowse.bml?faqid=211 -http://www.livejournal.com/support/faqbrowse.bml?faqid=212 -http://www.livejournal.com/support/faqbrowse.bml?faqid=213 -http://www.livejournal.com/support/faqbrowse.bml?faqid=214 -http://www.livejournal.com/support/faqbrowse.bml?faqid=215 -http://www.livejournal.com/support/faqbrowse.bml?faqid=216 -http://www.livejournal.com/support/faqbrowse.bml?faqid=218 -http://www.livejournal.com/support/faqbrowse.bml?faqid=219 -http://www.livejournal.com/support/faqbrowse.bml?faqid=220 -http://www.livejournal.com/support/faqbrowse.bml?faqid=221 -http://www.livejournal.com/support/faqbrowse.bml?faqid=222 -http://www.livejournal.com/support/faqbrowse.bml?faqid=224 -http://www.livejournal.com/support/faqbrowse.bml?faqid=225 -http://www.livejournal.com/support/faqbrowse.bml?faqid=226 -http://www.livejournal.com/support/faqbrowse.bml?faqid=23 -http://www.livejournal.com/support/faqbrowse.bml?faqid=231 -http://www.livejournal.com/support/faqbrowse.bml?faqid=232 -http://www.livejournal.com/support/faqbrowse.bml?faqid=233 -http://www.livejournal.com/support/faqbrowse.bml?faqid=234 -http://www.livejournal.com/support/faqbrowse.bml?faqid=235 -http://www.livejournal.com/support/faqbrowse.bml?faqid=237 -http://www.livejournal.com/support/faqbrowse.bml?faqid=24 -http://www.livejournal.com/support/faqbrowse.bml?faqid=243 -http://www.livejournal.com/support/faqbrowse.bml?faqid=244 -http://www.livejournal.com/support/faqbrowse.bml?faqid=245 -http://www.livejournal.com/support/faqbrowse.bml?faqid=246 -http://www.livejournal.com/support/faqbrowse.bml?faqid=247 -http://www.livejournal.com/support/faqbrowse.bml?faqid=248 -http://www.livejournal.com/support/faqbrowse.bml?faqid=249 -http://www.livejournal.com/support/faqbrowse.bml?faqid=25 -http://www.livejournal.com/support/faqbrowse.bml?faqid=250 -http://www.livejournal.com/support/faqbrowse.bml?faqid=252 -http://www.livejournal.com/support/faqbrowse.bml?faqid=253 -http://www.livejournal.com/support/faqbrowse.bml?faqid=254 -http://www.livejournal.com/support/faqbrowse.bml?faqid=255 -http://www.livejournal.com/support/faqbrowse.bml?faqid=256 -http://www.livejournal.com/support/faqbrowse.bml?faqid=257 -http://www.livejournal.com/support/faqbrowse.bml?faqid=258 -http://www.livejournal.com/support/faqbrowse.bml?faqid=259 -http://www.livejournal.com/support/faqbrowse.bml?faqid=26 -http://www.livejournal.com/support/faqbrowse.bml?faqid=260 -http://www.livejournal.com/support/faqbrowse.bml?faqid=262 -http://www.livejournal.com/support/faqbrowse.bml?faqid=263 -http://www.livejournal.com/support/faqbrowse.bml?faqid=264 -http://www.livejournal.com/support/faqbrowse.bml?faqid=265 -http://www.livejournal.com/support/faqbrowse.bml?faqid=266 -http://www.livejournal.com/support/faqbrowse.bml?faqid=267 -http://www.livejournal.com/support/faqbrowse.bml?faqid=268 -http://www.livejournal.com/support/faqbrowse.bml?faqid=27 -http://www.livejournal.com/support/faqbrowse.bml?faqid=270 -http://www.livejournal.com/support/faqbrowse.bml?faqid=271 -http://www.livejournal.com/support/faqbrowse.bml?faqid=272 -http://www.livejournal.com/support/faqbrowse.bml?faqid=273 -http://www.livejournal.com/support/faqbrowse.bml?faqid=274 -http://www.livejournal.com/support/faqbrowse.bml?faqid=275 -http://www.livejournal.com/support/faqbrowse.bml?faqid=276 -http://www.livejournal.com/support/faqbrowse.bml?faqid=277 -http://www.livejournal.com/support/faqbrowse.bml?faqid=279 -http://www.livejournal.com/support/faqbrowse.bml?faqid=280 -http://www.livejournal.com/support/faqbrowse.bml?faqid=281 -http://www.livejournal.com/support/faqbrowse.bml?faqid=282 -http://www.livejournal.com/support/faqbrowse.bml?faqid=283 -http://www.livejournal.com/support/faqbrowse.bml?faqid=285 -http://www.livejournal.com/support/faqbrowse.bml?faqid=286 -http://www.livejournal.com/support/faqbrowse.bml?faqid=287 -http://www.livejournal.com/support/faqbrowse.bml?faqid=288 -http://www.livejournal.com/support/faqbrowse.bml?faqid=289 -http://www.livejournal.com/support/faqbrowse.bml?faqid=290 -http://www.livejournal.com/support/faqbrowse.bml?faqid=291 -http://www.livejournal.com/support/faqbrowse.bml?faqid=292 -http://www.livejournal.com/support/faqbrowse.bml?faqid=30 -http://www.livejournal.com/support/faqbrowse.bml?faqid=32 -http://www.livejournal.com/support/faqbrowse.bml?faqid=33 -http://www.livejournal.com/support/faqbrowse.bml?faqid=38 -http://www.livejournal.com/support/faqbrowse.bml?faqid=4 -http://www.livejournal.com/support/faqbrowse.bml?faqid=40 -http://www.livejournal.com/support/faqbrowse.bml?faqid=44 -http://www.livejournal.com/support/faqbrowse.bml?faqid=46 -http://www.livejournal.com/support/faqbrowse.bml?faqid=47 -http://www.livejournal.com/support/faqbrowse.bml?faqid=50 -http://www.livejournal.com/support/faqbrowse.bml?faqid=51 -http://www.livejournal.com/support/faqbrowse.bml?faqid=56 -http://www.livejournal.com/support/faqbrowse.bml?faqid=57 -http://www.livejournal.com/support/faqbrowse.bml?faqid=6 -http://www.livejournal.com/support/faqbrowse.bml?faqid=60 -http://www.livejournal.com/support/faqbrowse.bml?faqid=61 -http://www.livejournal.com/support/faqbrowse.bml?faqid=62 -http://www.livejournal.com/support/faqbrowse.bml?faqid=64 -http://www.livejournal.com/support/faqbrowse.bml?faqid=66 -http://www.livejournal.com/support/faqbrowse.bml?faqid=67 -http://www.livejournal.com/support/faqbrowse.bml?faqid=68 -http://www.livejournal.com/support/faqbrowse.bml?faqid=69 -http://www.livejournal.com/support/faqbrowse.bml?faqid=7 -http://www.livejournal.com/support/faqbrowse.bml?faqid=70 -http://www.livejournal.com/support/faqbrowse.bml?faqid=71 -http://www.livejournal.com/support/faqbrowse.bml?faqid=72 -http://www.livejournal.com/support/faqbrowse.bml?faqid=73 -http://www.livejournal.com/support/faqbrowse.bml?faqid=74 -http://www.livejournal.com/support/faqbrowse.bml?faqid=75 -http://www.livejournal.com/support/faqbrowse.bml?faqid=76 -http://www.livejournal.com/support/faqbrowse.bml?faqid=77 -http://www.livejournal.com/support/faqbrowse.bml?faqid=78 -http://www.livejournal.com/support/faqbrowse.bml?faqid=79 -http://www.livejournal.com/support/faqbrowse.bml?faqid=8 -http://www.livejournal.com/support/faqbrowse.bml?faqid=80 -http://www.livejournal.com/support/faqbrowse.bml?faqid=82 -http://www.livejournal.com/support/faqbrowse.bml?faqid=84 -http://www.livejournal.com/support/faqbrowse.bml?faqid=85 -http://www.livejournal.com/support/faqbrowse.bml?faqid=86 -http://www.livejournal.com/support/faqbrowse.bml?faqid=9 -http://www.livejournal.com/support/faqbrowse.bml?faqid=91 -http://www.livejournal.com/support/faqbrowse.bml?faqid=92 -http://www.livejournal.com/support/faqbrowse.bml?faqid=93 -http://www.livejournal.com/support/faqbrowse.bml?faqid=95 -http://www.livejournal.com/support/faqbrowse.bml?faqid=96 -http://www.livejournal.com/support/faqbrowse.bml?faqid=97 -http://www.livejournal.com/support/faqbrowse.bml?faqid=98 +http://www.livejournal.com/support/faq/cat/about.html +http://www.livejournal.com/support/faq/cat/abuse.html +http://www.livejournal.com/support/faq/cat/accounts.html +http://www.livejournal.com/support/faq/cat/basic.html +http://www.livejournal.com/support/faq/cat/clients.html +http://www.livejournal.com/support/faq/cat/comments.html +http://www.livejournal.com/support/faq/cat/comm-manage.html +http://www.livejournal.com/support/faq/cat/community.html +http://www.livejournal.com/support/faq/cat/cust-adv.html +http://www.livejournal.com/support/faq/cat/customize.html +http://www.livejournal.com/support/faq/cat/entries.html +http://www.livejournal.com/support/faq/cat/ext_sites.html +http://www.livejournal.com/support/faq/cat/levels.html +http://www.livejournal.com/support/faq/cat/mobile.html +http://www.livejournal.com/support/faq/cat/payments.html +http://www.livejournal.com/support/faq/cat/s1.html +http://www.livejournal.com/support/faq/cat/scrapbook.html +http://www.livejournal.com/support/faq/cat/security.html +http://www.livejournal.com/support/faq/cat/site_nav.html +http://www.livejournal.com/support/faq/cat/sup.html +http://www.livejournal.com/support/faq/cat/syn.html +http://www.livejournal.com/support/faq/cat/troubleshooting.html +http://www.livejournal.com/support/faq/cat/userpics.html +http://www.livejournal.com/support/faq/1.html +http://www.livejournal.com/support/faq/100.html +http://www.livejournal.com/support/faq/101.html +http://www.livejournal.com/support/faq/102.html +http://www.livejournal.com/support/faq/104.html +http://www.livejournal.com/support/faq/105.html +http://www.livejournal.com/support/faq/106.html +http://www.livejournal.com/support/faq/107.html +http://www.livejournal.com/support/faq/108.html +http://www.livejournal.com/support/faq/109.html +http://www.livejournal.com/support/faq/11.html +http://www.livejournal.com/support/faq/110.html +http://www.livejournal.com/support/faq/111.html +http://www.livejournal.com/support/faq/113.html +http://www.livejournal.com/support/faq/114.html +http://www.livejournal.com/support/faq/115.html +http://www.livejournal.com/support/faq/116.html +http://www.livejournal.com/support/faq/117.html +http://www.livejournal.com/support/faq/119.html +http://www.livejournal.com/support/faq/12.html +http://www.livejournal.com/support/faq/120.html +http://www.livejournal.com/support/faq/121.html +http://www.livejournal.com/support/faq/122.html +http://www.livejournal.com/support/faq/123.html +http://www.livejournal.com/support/faq/124.html +http://www.livejournal.com/support/faq/125.html +http://www.livejournal.com/support/faq/126.html +http://www.livejournal.com/support/faq/127.html +http://www.livejournal.com/support/faq/128.html +http://www.livejournal.com/support/faq/129.html +http://www.livejournal.com/support/faq/13.html +http://www.livejournal.com/support/faq/130.html +http://www.livejournal.com/support/faq/131.html +http://www.livejournal.com/support/faq/132.html +http://www.livejournal.com/support/faq/134.html +http://www.livejournal.com/support/faq/135.html +http://www.livejournal.com/support/faq/136.html +http://www.livejournal.com/support/faq/137.html +http://www.livejournal.com/support/faq/138.html +http://www.livejournal.com/support/faq/139.html +http://www.livejournal.com/support/faq/14.html +http://www.livejournal.com/support/faq/140.html +http://www.livejournal.com/support/faq/141.html +http://www.livejournal.com/support/faq/143.html +http://www.livejournal.com/support/faq/145.html +http://www.livejournal.com/support/faq/149.html +http://www.livejournal.com/support/faq/15.html +http://www.livejournal.com/support/faq/150.html +http://www.livejournal.com/support/faq/151.html +http://www.livejournal.com/support/faq/155.html +http://www.livejournal.com/support/faq/156.html +http://www.livejournal.com/support/faq/157.html +http://www.livejournal.com/support/faq/158.html +http://www.livejournal.com/support/faq/159.html +http://www.livejournal.com/support/faq/16.html +http://www.livejournal.com/support/faq/160.html +http://www.livejournal.com/support/faq/162.html +http://www.livejournal.com/support/faq/164.html +http://www.livejournal.com/support/faq/165.html +http://www.livejournal.com/support/faq/166.html +http://www.livejournal.com/support/faq/168.html +http://www.livejournal.com/support/faq/169.html +http://www.livejournal.com/support/faq/17.html +http://www.livejournal.com/support/faq/171.html +http://www.livejournal.com/support/faq/172.html +http://www.livejournal.com/support/faq/175.html +http://www.livejournal.com/support/faq/176.html +http://www.livejournal.com/support/faq/177.html +http://www.livejournal.com/support/faq/179.html +http://www.livejournal.com/support/faq/18.html +http://www.livejournal.com/support/faq/181.html +http://www.livejournal.com/support/faq/182.html +http://www.livejournal.com/support/faq/183.html +http://www.livejournal.com/support/faq/184.html +http://www.livejournal.com/support/faq/185.html +http://www.livejournal.com/support/faq/186.html +http://www.livejournal.com/support/faq/187.html +http://www.livejournal.com/support/faq/188.html +http://www.livejournal.com/support/faq/189.html +http://www.livejournal.com/support/faq/19.html +http://www.livejournal.com/support/faq/190.html +http://www.livejournal.com/support/faq/191.html +http://www.livejournal.com/support/faq/192.html +http://www.livejournal.com/support/faq/193.html +http://www.livejournal.com/support/faq/194.html +http://www.livejournal.com/support/faq/195.html +http://www.livejournal.com/support/faq/196.html +http://www.livejournal.com/support/faq/197.html +http://www.livejournal.com/support/faq/198.html +http://www.livejournal.com/support/faq/199.html +http://www.livejournal.com/support/faq/2.html +http://www.livejournal.com/support/faq/20.html +http://www.livejournal.com/support/faq/200.html +http://www.livejournal.com/support/faq/201.html +http://www.livejournal.com/support/faq/202.html +http://www.livejournal.com/support/faq/203.html +http://www.livejournal.com/support/faq/206.html +http://www.livejournal.com/support/faq/207.html +http://www.livejournal.com/support/faq/208.html +http://www.livejournal.com/support/faq/209.html +http://www.livejournal.com/support/faq/21.html +http://www.livejournal.com/support/faq/210.html +http://www.livejournal.com/support/faq/211.html +http://www.livejournal.com/support/faq/212.html +http://www.livejournal.com/support/faq/213.html +http://www.livejournal.com/support/faq/214.html +http://www.livejournal.com/support/faq/215.html +http://www.livejournal.com/support/faq/216.html +http://www.livejournal.com/support/faq/218.html +http://www.livejournal.com/support/faq/219.html +http://www.livejournal.com/support/faq/220.html +http://www.livejournal.com/support/faq/221.html +http://www.livejournal.com/support/faq/222.html +http://www.livejournal.com/support/faq/224.html +http://www.livejournal.com/support/faq/225.html +http://www.livejournal.com/support/faq/226.html +http://www.livejournal.com/support/faq/23.html +http://www.livejournal.com/support/faq/231.html +http://www.livejournal.com/support/faq/232.html +http://www.livejournal.com/support/faq/233.html +http://www.livejournal.com/support/faq/234.html +http://www.livejournal.com/support/faq/235.html +http://www.livejournal.com/support/faq/237.html +http://www.livejournal.com/support/faq/24.html +http://www.livejournal.com/support/faq/243.html +http://www.livejournal.com/support/faq/244.html +http://www.livejournal.com/support/faq/245.html +http://www.livejournal.com/support/faq/246.html +http://www.livejournal.com/support/faq/247.html +http://www.livejournal.com/support/faq/248.html +http://www.livejournal.com/support/faq/249.html +http://www.livejournal.com/support/faq/25.html +http://www.livejournal.com/support/faq/250.html +http://www.livejournal.com/support/faq/252.html +http://www.livejournal.com/support/faq/253.html +http://www.livejournal.com/support/faq/254.html +http://www.livejournal.com/support/faq/255.html +http://www.livejournal.com/support/faq/256.html +http://www.livejournal.com/support/faq/257.html +http://www.livejournal.com/support/faq/258.html +http://www.livejournal.com/support/faq/259.html +http://www.livejournal.com/support/faq/26.html +http://www.livejournal.com/support/faq/260.html +http://www.livejournal.com/support/faq/262.html +http://www.livejournal.com/support/faq/263.html +http://www.livejournal.com/support/faq/264.html +http://www.livejournal.com/support/faq/265.html +http://www.livejournal.com/support/faq/266.html +http://www.livejournal.com/support/faq/267.html +http://www.livejournal.com/support/faq/268.html +http://www.livejournal.com/support/faq/27.html +http://www.livejournal.com/support/faq/270.html +http://www.livejournal.com/support/faq/271.html +http://www.livejournal.com/support/faq/272.html +http://www.livejournal.com/support/faq/273.html +http://www.livejournal.com/support/faq/274.html +http://www.livejournal.com/support/faq/275.html +http://www.livejournal.com/support/faq/276.html +http://www.livejournal.com/support/faq/277.html +http://www.livejournal.com/support/faq/279.html +http://www.livejournal.com/support/faq/280.html +http://www.livejournal.com/support/faq/281.html +http://www.livejournal.com/support/faq/282.html +http://www.livejournal.com/support/faq/283.html +http://www.livejournal.com/support/faq/285.html +http://www.livejournal.com/support/faq/286.html +http://www.livejournal.com/support/faq/287.html +http://www.livejournal.com/support/faq/288.html +http://www.livejournal.com/support/faq/289.html +http://www.livejournal.com/support/faq/290.html +http://www.livejournal.com/support/faq/291.html +http://www.livejournal.com/support/faq/292.html +http://www.livejournal.com/support/faq/30.html +http://www.livejournal.com/support/faq/32.html +http://www.livejournal.com/support/faq/33.html +http://www.livejournal.com/support/faq/38.html +http://www.livejournal.com/support/faq/4.html +http://www.livejournal.com/support/faq/40.html +http://www.livejournal.com/support/faq/44.html +http://www.livejournal.com/support/faq/46.html +http://www.livejournal.com/support/faq/47.html +http://www.livejournal.com/support/faq/50.html +http://www.livejournal.com/support/faq/51.html +http://www.livejournal.com/support/faq/56.html +http://www.livejournal.com/support/faq/57.html +http://www.livejournal.com/support/faq/6.html +http://www.livejournal.com/support/faq/60.html +http://www.livejournal.com/support/faq/61.html +http://www.livejournal.com/support/faq/62.html +http://www.livejournal.com/support/faq/64.html +http://www.livejournal.com/support/faq/66.html +http://www.livejournal.com/support/faq/67.html +http://www.livejournal.com/support/faq/68.html +http://www.livejournal.com/support/faq/69.html +http://www.livejournal.com/support/faq/7.html +http://www.livejournal.com/support/faq/70.html +http://www.livejournal.com/support/faq/71.html +http://www.livejournal.com/support/faq/72.html +http://www.livejournal.com/support/faq/73.html +http://www.livejournal.com/support/faq/74.html +http://www.livejournal.com/support/faq/75.html +http://www.livejournal.com/support/faq/76.html +http://www.livejournal.com/support/faq/77.html +http://www.livejournal.com/support/faq/78.html +http://www.livejournal.com/support/faq/79.html +http://www.livejournal.com/support/faq/8.html +http://www.livejournal.com/support/faq/80.html +http://www.livejournal.com/support/faq/82.html +http://www.livejournal.com/support/faq/84.html +http://www.livejournal.com/support/faq/85.html +http://www.livejournal.com/support/faq/86.html +http://www.livejournal.com/support/faq/9.html +http://www.livejournal.com/support/faq/91.html +http://www.livejournal.com/support/faq/92.html +http://www.livejournal.com/support/faq/93.html +http://www.livejournal.com/support/faq/95.html +http://www.livejournal.com/support/faq/96.html +http://www.livejournal.com/support/faq/97.html +http://www.livejournal.com/support/faq/98.html http://www.livejournal.com/support/faqpop.bml -http://www.livejournal.com/support/faqsearch.bml +http://www.livejournal.com/support/faq/search.html http://www.livejournal.com/support/guide.bml http://www.livejournal.com/support/help.bml http://www.livejournal.com/support/highscores.bml Modified: trunk/htdocs/sitemap.xml =================================================================== --- trunk/htdocs/sitemap.xml 2012-09-28 12:35:11 UTC (rev 23009) +++ trunk/htdocs/sitemap.xml 2012-09-28 12:56:39 UTC (rev 23010) @@ -1,4 +1,4 @@ -<?xml version="1.0" encoding="UTF-8"?> +<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>http://www.livejournal.com/abuse/index.bml</loc> @@ -5641,1217 +5641,1217 @@ <priority>0.8</priority> </url> <url> - <loc>http://www.livejournal.com/support/faq.bml</loc> + <loc>http://www.livejournal.com/support/faq/</loc> <changefreq>monthly</changefreq> <priority>1</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqcat=about</loc> + <loc>http://www.livejournal.com/support/faq/cat/about.html</loc> <changefreq>monthly</changefreq> <priority>0.8</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqcat=abuse</loc> + <loc>http://www.livejournal.com/support/faq/cat/abuse.html</loc> <changefreq>monthly</changefreq> <priority>0.8</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqcat=accounts</loc> + <loc>http://www.livejournal.com/support/faq/cat/accounts.html</loc> <changefreq>monthly</changefreq> <priority>0.8</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqcat=basic</loc> + <loc>http://www.livejournal.com/support/faq/cat/basic.html</loc> <changefreq>monthly</changefreq> <priority>0.8</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqcat=clients</loc> + <loc>http://www.livejournal.com/support/faq/cat/clients.html</loc> <changefreq>monthly</changefreq> <priority>0.8</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqcat=comments</loc> + <loc>http://www.livejournal.com/support/faq/cat/comments.html</loc> <changefreq>monthly</changefreq> <priority>0.8</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqcat=comm-manage</loc> + <loc>http://www.livejournal.com/support/faq/cat/comm-manage.html</loc> <changefreq>monthly</changefreq> <priority>0.8</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqcat=community</loc> + <loc>http://www.livejournal.com/support/faq/cat/community.html</loc> <changefreq>monthly</changefreq> <priority>0.8</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqcat=cust-adv</loc> + <loc>http://www.livejournal.com/support/faq/cat/cust-adv.html</loc> <changefreq>monthly</changefreq> <priority>0.8</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqcat=customize</loc> + <loc>http://www.livejournal.com/support/faq/cat/customize.html</loc> <changefreq>monthly</changefreq> <priority>0.8</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqcat=entries</loc> + <loc>http://www.livejournal.com/support/faq/cat/entries.html</loc> <changefreq>monthly</changefreq> <priority>0.8</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqcat=ext_sites</loc> + <loc>http://www.livejournal.com/support/faq/cat/ext_sites.html</loc> <changefreq>monthly</changefreq> <priority>0.8</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqcat=levels</loc> + <loc>http://www.livejournal.com/support/faq/cat/levels.html</loc> <changefreq>monthly</changefreq> <priority>0.8</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqcat=mobile</loc> + <loc>http://www.livejournal.com/support/faq/cat/mobile.html</loc> <changefreq>monthly</changefreq> <priority>0.8</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqcat=payments</loc> + <loc>http://www.livejournal.com/support/faq/cat/payments.html</loc> <changefreq>monthly</changefreq> <priority>0.8</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqcat=s1</loc> + <loc>http://www.livejournal.com/support/faq/cat/s.html1</loc> <changefreq>monthly</changefreq> <priority>0.8</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqcat=scrapbook</loc> + <loc>http://www.livejournal.com/support/faq/cat/scrapbook.html</loc> <changefreq>monthly</changefreq> <priority>0.8</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqcat=security</loc> + <loc>http://www.livejournal.com/support/faq/cat/security.html</loc> <changefreq>monthly</changefreq> <priority>0.8</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqcat=site_nav</loc> + <loc>http://www.livejournal.com/support/faq/cat/site_nav.html</loc> <changefreq>monthly</changefreq> <priority>0.8</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqcat=sup</loc> + <loc>http://www.livejournal.com/support/faq/cat/sup.html</loc> <changefreq>monthly</changefreq> <priority>0.8</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqcat=syn</loc> + <loc>http://www.livejournal.com/support/faq/cat/syn.html</loc> <changefreq>monthly</changefreq> <priority>0.8</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqcat=troubleshooting</loc> + <loc>http://www.livejournal.com/support/faq/cat/troubleshooting.html</loc> <changefreq>monthly</changefreq> <priority>0.8</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqcat=userpics</loc> + <loc>http://www.livejournal.com/support/faq/cat/userpics.html</loc> <changefreq>monthly</changefreq> <priority>0.8</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqid=1</loc> + <loc>http://www.livejournal.com/support/faq/1.html</loc> <changefreq>monthly</changefreq> <priority>0.6</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqid=100</loc> + <loc>http://www.livejournal.com/support/faq/100.html</loc> <changefreq>monthly</changefreq> <priority>0.6</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqid=101</loc> + <loc>http://www.livejournal.com/support/faq/101.html</loc> <changefreq>monthly</changefreq> <priority>0.7</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqid=102</loc> + <loc>http://www.livejournal.com/support/faq/102.html</loc> <changefreq>monthly</changefreq> <priority>0.8</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqid=104</loc> + <loc>http://www.livejournal.com/support/faq/104.html</loc> <changefreq>monthly</changefreq> <priority>0.9</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqid=105</loc> + <loc>http://www.livejournal.com/support/faq/105.html</loc> <changefreq>monthly</changefreq> <priority>0.6</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqid=106</loc> + <loc>http://www.livejournal.com/support/faq/106.html</loc> <changefreq>monthly</changefreq> <priority>0.6</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqid=107</loc> + <loc>http://www.livejournal.com/support/faq/107.html</loc> <changefreq>monthly</changefreq> <priority>0.6</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqid=108</loc> + <loc>http://www.livejournal.com/support/faq/108.html</loc> <changefreq>monthly</changefreq> <priority>0.6</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqid=109</loc> + <loc>http://www.livejournal.com/support/faq/109.html</loc> <changefreq>monthly</changefreq> <priority>0.6</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqid=11</loc> + <loc>http://www.livejournal.com/support/faq/11.html</loc> <changefreq>monthly</changefreq> <priority>0.6</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqid=110</loc> + <loc>http://www.livejournal.com/support/faq/110.html</loc> <changefreq>monthly</changefreq> <priority>0.6</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqid=111</loc> + <loc>http://www.livejournal.com/support/faq/111.html</loc> <changefreq>monthly</changefreq> <priority>0.6</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqid=113</loc> + <loc>http://www.livejournal.com/support/faq/113.html</loc> <changefreq>monthly</changefreq> <priority>0.7</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqid=114</loc> + <loc>http://www.livejournal.com/support/faq/114.html</loc> <changefreq>monthly</changefreq> <priority>0.7</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqid=115</loc> + <loc>http://www.livejournal.com/support/faq/115.html</loc> <changefreq>monthly</changefreq> <priority>0.6</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqid=116</loc> + <loc>http://www.livejournal.com/support/faq/116.html</loc> <changefreq>monthly</changefreq> <priority>0.6</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqid=117</loc> + <loc>http://www.livejournal.com/support/faq/117.html</loc> <changefreq>monthly</changefreq> <priority>0.6</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqid=119</loc> + <loc>http://www.livejournal.com/support/faq/119.html</loc> <changefreq>monthly</changefreq> <priority>0.7</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqid=12</loc> + <loc>http://www.livejournal.com/support/faq/12.html</loc> <changefreq>monthly</changefreq> <priority>0.6</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqid=120</loc> + <loc>http://www.livejournal.com/support/faq/120.html</loc> <changefreq>monthly</changefreq> <priority>0.8</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqid=121</loc> + <loc>http://www.livejournal.com/support/faq/121.html</loc> <changefreq>monthly</changefreq> <priority>0.8</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqid=122</loc> + <loc>http://www.livejournal.com/support/faq/122.html</loc> <changefreq>monthly</changefreq> <priority>0.6</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqid=123</loc> + <loc>http://www.livejournal.com/support/faq/123.html</loc> <changefreq>monthly</changefreq> <priority>0.7</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqid=124</loc> + <loc>http://www.livejournal.com/support/faq/124.html</loc> <changefreq>monthly</changefreq> <priority>0.6</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqid=125</loc> + <loc>http://www.livejournal.com/support/faq/125.html</loc> <changefreq>monthly</changefreq> <priority>0.9</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqid=126</loc> + <loc>http://www.livejournal.com/support/faq/126.html</loc> <changefreq>monthly</changefreq> <priority>0.6</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqid=127</loc> + <loc>http://www.livejournal.com/support/faq/127.html</loc> <changefreq>monthly</changefreq> <priority>0.6</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqid=128</loc> + <loc>http://www.livejournal.com/support/faq/128.html</loc> <changefreq>monthly</changefreq> <priority>0.6</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqid=129</loc> + <loc>http://www.livejournal.com/support/faq/129.html</loc> <changefreq>monthly</changefreq> <priority>0.6</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqid=13</loc> + <loc>http://www.livejournal.com/support/faq/13.html</loc> <changefreq>monthly</changefreq> <priority>0.6</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqid=130</loc> + <loc>http://www.livejournal.com/support/faq/130.html</loc> <changefreq>monthly</changefreq> <priority>0.6</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqid=131</loc> + <loc>http://www.livejournal.com/support/faq/131.html</loc> <changefreq>monthly</changefreq> <priority>0.7</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqid=132</loc> + <loc>http://www.livejournal.com/support/faq/132.html</loc> <changefreq>monthly</changefreq> <priority>0.6</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqid=134</loc> + <loc>http://www.livejournal.com/support/faq/134.html</loc> <changefreq>monthly</changefreq> <priority>0.6</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqid=135</loc> + <loc>http://www.livejournal.com/support/faq/135.html</loc> <changefreq>monthly</changefreq> <priority>0.6</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqid=136</loc> + <loc>http://www.livejournal.com/support/faq/136.html</loc> <changefreq>monthly</changefreq> <priority>0.6</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqid=137</loc> + <loc>http://www.livejournal.com/support/faq/137.html</loc> <changefreq>monthly</changefreq> <priority>0.6</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqid=138</loc> + <loc>http://www.livejournal.com/support/faq/138.html</loc> <changefreq>monthly</changefreq> <priority>0.6</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqid=139</loc> + <loc>http://www.livejournal.com/support/faq/139.html</loc> <changefreq>monthly</changefreq> <priority>0.6</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqid=14</loc> + <loc>http://www.livejournal.com/support/faq/14.html</loc> <changefreq>monthly</changefreq> <priority>0.6</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqid=140</loc> + <loc>http://www.livejournal.com/support/faq/140.html</loc> <changefreq>monthly</changefreq> <priority>0.6</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqid=141</loc> + <loc>http://www.livejournal.com/support/faq/141.html</loc> <changefreq>monthly</changefreq> <priority>0.6</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqid=143</loc> + <loc>http://www.livejournal.com/support/faq/143.html</loc> <changefreq>monthly</changefreq> <priority>0.6</priority> </url> <url> - <loc>http://www.livejournal.com/support/faqbrowse.bml?faqid=145</loc... (truncated)