Wiki: DebugInfo: FallingCow


Detailed view of a page, which is probably more useful for debugging than anything else.

Querying backend directly for 'FallingCow'

get_pagedata('FallingCow')
 _cached_html 
transformedtext Object
(
    [_type] => pagetype_wikitext Object
        (
        )

    [_basepage] => FallingCow
    [_content] => Array
        (
            [0] => <div class="wikitext"><p class="tightenable top">I use vim for all my coding needs (perl, HTML, VB, proprietary). I can usually be found in the channel weekdays, Central Time(US).</p>
<p class="tightenable bottom">One of my favorite functions/maps:
&amp;lt;verbatim&amp;gt;
&quot; SelectAIQuote(ai, qtype) - Visually selects a/i quotes and double quotes
&quot; Much of this written by 
            [1] => cached_wikilink Object
                (
                    [_page] => Tofer
                )

            [2] => 
function! &amp;lt;Sid&amp;gt;SelectAIQuote(ai, qtype)</p>
<blockquote class="tightenable top bottom"><p class="tightenable top bottom">let re = a:qtype . '\(\(\\.\|[^' . a:qtype . '\\]\)*\)' . a:qtype
let txt = getline(&quot;.&quot;)
let pos = col(&quot;.&quot;)
let me = 0
while me &amp;gt; -1 &amp;amp;&amp;amp; me &amp;lt; pos</p>
<blockquote class="tightenable top bottom"><p class="tightenable top bottom">let mb = me
let me = matchend(txt,re,mb)</p>
</blockquote>
<p class="tightenable top bottom">endwhile
let mb = match(txt,re,mb)
if me &amp;gt; -1 &amp;amp;&amp;amp; mb &amp;lt; pos</p>
<blockquote class="tightenable top bottom"><p class="tightenable top bottom">call cursor(line(&quot;.&quot;),mb+2)
exec(&quot;norm v&quot;)
call cursor(line(&quot;.&quot;),me-1)
if a:ai == &quot;a&quot;</p>
<blockquote class="tightenable top bottom"><p class="tightenable top bottom">normal loho</p>
</blockquote>
<p class="tightenable top bottom">endif</p>
</blockquote>
<p class="tightenable top bottom">else</p>
<blockquote class="tightenable top bottom"><p class="tightenable top bottom">exec(&quot;norm v&quot;)</p>
</blockquote>
<p class="tightenable top bottom">endif</p>
</blockquote>
<p class="tightenable top">endfunction
nnoremap vi&quot; :call &amp;lt;Sid&amp;gt;SelectAIQuote('i','&quot;')&amp;lt;Cr&amp;gt;
nnoremap va&quot; :call &amp;lt;Sid&amp;gt;SelectAIQuote('a','&quot;')&amp;lt;Cr&amp;gt;
nnoremap vi' :call &amp;lt;Sid&amp;gt;SelectAIQuote('i',&quot;'&quot;)&amp;lt;Cr&amp;gt;
nnoremap va' :call &amp;lt;Sid&amp;gt;SelectAIQuote('a',&quot;'&quot;)&amp;lt;Cr&amp;gt;
nnoremap yi&quot; :call &amp;lt;Sid&amp;gt;SelectAIQuote('i','&quot;')&amp;lt;Cr&amp;gt;y
nnoremap ya&quot; :call &amp;lt;Sid&amp;gt;SelectAIQuote('a','&quot;')&amp;lt;Cr&amp;gt;y
nnoremap yi' :call &amp;lt;Sid&amp;gt;SelectAIQuote('i',&quot;'&quot;)&amp;lt;Cr&amp;gt;y
nnoremap ya' :call &amp;lt;Sid&amp;gt;SelectAIQuote('a',&quot;'&quot;)&amp;lt;Cr&amp;gt;y
nnoremap ci&quot; :call &amp;lt;Sid&amp;gt;SelectAIQuote('i','&quot;')&amp;lt;Cr&amp;gt;c
nnoremap ca&quot; :call &amp;lt;Sid&amp;gt;SelectAIQuote('a','&quot;')&amp;lt;Cr&amp;gt;c
nnoremap ci' :call &amp;lt;Sid&amp;gt;SelectAIQuote('i',&quot;'&quot;)&amp;lt;Cr&amp;gt;c
nnoremap ca' :call &amp;lt;Sid&amp;gt;SelectAIQuote('a',&quot;'&quot;)&amp;lt;Cr&amp;gt;c
&amp;lt;/verbatim&amp;gt;
&amp;lt;verbatim&amp;gt;
&quot; These maps enable commenting and uncommenting code with ,c+ and ,c-
&quot; They use &amp;amp;commentstring to determine comment type
&quot; Basically, it puts the line in the place of the %s.
autocmd FileType * exe &quot;nmap &amp;lt;buffer&amp;gt; ,c- :&amp;lt;Home&amp;gt;let oldslash=@/&amp;lt;Bar&amp;gt;let oldlz=&amp;amp;lz&amp;lt;Bar&amp;gt;set lz&amp;lt;Bar&amp;gt;&amp;lt;End&amp;gt;s/^&quot; . substitute(escape(&amp;amp;cms,&quot;\\()*/&quot;), &quot;%s&quot;, &quot;\\\\(.*\\\\)&quot;, ) . &quot;/\\1/e&quot; . &quot;&amp;lt;Bar&amp;gt;noh&amp;lt;Bar&amp;gt;let @/=oldslash&amp;lt;Bar&amp;gt;let &amp;amp;lz=oldlz&amp;lt;Cr&amp;gt;&quot;
autocmd FileType * exe &quot;nmap &amp;lt;buffer&amp;gt; ,c+ :&amp;lt;Home&amp;gt;let oldslash=@/&amp;lt;Bar&amp;gt;let oldlz=&amp;amp;lz&amp;lt;Bar&amp;gt;set lz&amp;lt;Bar&amp;gt;&amp;lt;End&amp;gt;s/^\\(.*\\)$/&quot; . substitute(escape(&amp;amp;cms,'\/'), &quot;%s&quot;, '\&amp;amp;', ) . &quot;/e&quot;         . &quot;&amp;lt;Bar&amp;gt;noh&amp;lt;Bar&amp;gt;let @/=oldslash&amp;lt;Bar&amp;gt;let &amp;amp;lz=oldlz&amp;lt;Cr&amp;gt;&quot;
autocmd FileType * exe &quot;vmap &amp;lt;buffer&amp;gt; ,c- :&amp;lt;Home&amp;gt;let oldslash=@/&amp;lt;Bar&amp;gt;let oldlz=&amp;amp;lz&amp;lt;Bar&amp;gt;set lz&amp;lt;Bar&amp;gt;&amp;lt;End&amp;gt;s/^&quot; . substitute(escape(&amp;amp;cms,&quot;\\()*/&quot;), &quot;%s&quot;, &quot;\\\\(.*\\\\)&quot;, ) . &quot;/\\1/e&quot; . &quot;&amp;lt;Bar&amp;gt;noh&amp;lt;Bar&amp;gt;let @/=oldslash&amp;lt;Bar&amp;gt;let &amp;amp;lz=oldlz&amp;lt;Cr&amp;gt;&quot;
autocmd FileType * exe &quot;vmap &amp;lt;buffer&amp;gt; ,c+ :&amp;lt;Home&amp;gt;let oldslash=@/&amp;lt;Bar&amp;gt;let oldlz=&amp;amp;lz&amp;lt;Bar&amp;gt;set lz&amp;lt;Bar&amp;gt;&amp;lt;End&amp;gt;s/^\\(.*\\)$/&quot; . substitute(escape(&amp;amp;cms,'\/'), &quot;%s&quot;, '\&amp;amp;', ) . &quot;/e&quot;         . &quot;&amp;lt;Bar&amp;gt;noh&amp;lt;Bar&amp;gt;let @/=oldslash&amp;lt;Bar&amp;gt;let &amp;amp;lz=oldlz&amp;lt;Cr&amp;gt;&quot;</p>
<p class="tightenable">&amp;lt;/verbatim&amp;gt;</p>
<p class="tightenable">&lt;small&gt;
            [3] => cached_wikilink Object
                (
                    [_page] => P
                )

            [4] => 
hairy bush pussy hairy wife hairy wife hairy women sites 
            [5] => cached_externallink Object
                (
                    [_url] => http://web.archive.org/web/20060131191100/http://www.network54.com/index/56718
                    [_label] => atk gallery
                )

            [6] =>  the atk galleria</p>
<p class="tightenable">latina blow job blow job sex video the best blow job latina blow job 
            [7] => cached_externallink Object
                (
                    [_url] => http://web.archive.org/web/20060207000251/http://www.network54.com/index/56754
                    [_label] => blow job picture
                )

            [8] =>  rate blow job</p>
<p class="tightenable">schemale chicks with huge dicks tranny schemale 
            [9] => cached_externallink Object
                (
                    [_url] => http://web.archive.org/web/20060205100853/http://www.network54.com/index/56730
                    [_label] => blowjobs
                )

            [10] =>  cunts</p>
<p class="tightenable">kinky clothes hot kinky sex kink club kappers 
            [11] => cached_externallink Object
                (
                    [_url] => http://web.archive.org/web/20060708154956/http://www.bfu.bg/site/files/?cla6/bdsmkinky
                    [_label] => kinky phone sex
                )

            [12] =>  kinky slut</p>
<p class="tightenable">lesbiens black lesbiens black lesbiens black lesbiens 
            [13] => cached_externallink Object
                (
                    [_url] => http://web.archive.org/web/20060202095343/http://www.network54.com/index/56741
                    [_label] => hot lesbiens
                )

            [14] =>  rencontre lesbien</p>
<p class="tightenable">tgp bdsm bdsm master fesrouge s&amp;m 
            [15] => cached_externallink Object
                (
                    [_url] => http://web.archive.org/web/20060131190211/http://www.network54.com/index/56666
                    [_label] => sm chat
                )

            [16] =>  bondage paper</p>
<p class="tightenable">fucking grandmother granny xxx movies granny old pussy granny old pussy 
            [17] => cached_externallink Object
                (
                    [_url] => http://web.archive.org/web/20060708155616/http://www.bfu.bg/site/files/?cla6/maturegranny
                    [_label] => grannies pics
                )

            [18] =>  grandmothers house</p>
<p class="tightenable">henti xxx manga hentay hentai images hentai images 
            [19] => cached_externallink Object
                (
                    [_url] => http://web.archive.org/web/20060705140051/http://www.bfu.bg/site/files/?cla6/hentaihentai
                    [_label] => hentai cumshot
                )

            [20] =>  one piece hentay</p>
<p class="tightenable">tgp bdsm bdsm master fesrouge s&amp;m 
            [21] => cached_externallink Object
                (
                    [_url] => http://web.archive.org/web/20060706170841/http://www.bfu.bg/site/files/?cla6/bdsmbdsm
                    [_label] => sm chat
                )

            [22] =>  bondage paper</p>
<p class="tightenable bottom">&lt;/small&gt;</p>
</div>

        )

    [_description] => I use vim for all my coding needs (perl, HTML, VB, proprietary). I can usually be found in the channel weekdays, Central Time(US).
)
 hits  3644
get_versiondata('FallingCow',38)
 %content  I use vim for all my coding needs (perl, ...
 author  WikiWord
 author_id  WikiWord
 is_minor_edit   
 markup  2
 mtime  1186735406
 pagetype  wikitext
get_versiondata('FallingCow',37)
 %content  I use vim for all my coding needs (perl, ...
 _supplanted  1186735406
 author  WikiWord
 author_id  WikiWord
 is_minor_edit   
 markup  2
 mtime  1186732433
 pagetype  wikitext
get_versiondata('FallingCow',36)
 %content  I use vim for all my coding needs (perl, ...
 _supplanted  1186732433
 author  WikiWord
 author_id  WikiWord
 is_minor_edit   
 markup  2
 mtime  1184000060
 pagetype  wikitext
get_versiondata('FallingCow',35)
 %content  I use vim for all my coding needs (perl, ...
 _supplanted  1184000060
 author  WikiWord
 author_id  WikiWord
 is_minor_edit   
 markup  2
 mtime  1183048606
 pagetype  wikitext
get_versiondata('FallingCow',34)
 %content  I use vim for all my coding needs (perl, ...
 _supplanted  1183048606
 author  82.146.53.20
 author_id  82.146.53.20
 is_minor_edit   
 markup  2
 mtime  1154895295
 pagetype  wikitext

Copyright © 2007 RobertMelton.com