ebooksgratis.com

See also ebooksgratis.com: no banners, no cookies, totally FREE.

CLASSICISTRANIERI HOME PAGE - YOUTUBE CHANNEL
Privacy Policy Cookie Policy Terms and Conditions
User:Lupin/histdump.sh - Wikipedia, the free encyclopedia

User:Lupin/histdump.sh

From Wikipedia, the free encyclopedia

[edit] histdump.sh

Dump history of a page.

#!/bin/bash
# Usage: histdump.sh [-r] 'Title of wiki page'
# -r: download in chronological order instead of most recent first
# FIXME: deal with more than 500 entries
if [ "$1" = "-r" ]; then mung=tac; shift; else mung=cat; fi
page=$(echo "$1" | sed -e 's/ /_/g')
outputdir="$page"
mkdir "$outputdir"
sitebase='http://en.wikipedia.org'
histpage="${sitebase}/w/index.php?title=${page}&limit=500&action=history"
hist="$(wget -q -O- $histpage|grep '^<li>')"
numedits=$(echo "$hist"|wc -l)
i=0
echo "$hist" | "$mung" | while read line; do
    url=${sitebase}$(echo $line|sed -e 's/.*a href="\([^"]*oldid=[0-9]*\)" title="[^"]*">[0-9].*/\1/' -e 's/[&]amp;/\&/g')
    time=$(echo $line|sed -e 's/.*a href="\([^"]*oldid=[0-9]*\)" title="[^"]*">\([0-9][^<]*\).*/\2/'|sed -e 's/,//g')
    oldid=$(echo $url|sed -e 's/.*oldid=\([0-9]*\).*/\1/')
    user=$(echo $line|sed -e 's/.*class=.history-user[^>]*>[^<]*<a[^>]*>\([^<]*\).*/\1/')
    comment=$(echo $line|sed -e 's/.*class=.comment.>[(]\([^<]*\)[)].*/\1/')
    if [ "$comment" = "$line" ]; then comment=''; fi
    outputfile="$outputdir"/"$oldid";
    i=$((i+1));
    echo -e "Edit ${i} of ${numedits} by ${user}, oldid ${oldid}, time ${time}"
    (echo Page: "$page"; echo Editor: "$user"; echo Time: "$time"; echo Edit summary: "$comment") > "$outputfile"
    wget -q -O- "${sitebase}/w/index.php?title=${page}&action=raw&oldid=${oldid}" >> "$outputfile"
    touch --date="${time}" "$outputfile"
done 

[edit] diffgen.sh

Generate diffs from a set of dumped revisions. Usage: diffgen.sh rev1 rev2 ...

Uses the timestamps on the revision files to sort them.

#!/bin/bash
files=$(ls -Srt "$@")
DIFF="diff -u"
oldfile=
for newfile in $files ; do
    if [ ! -z "$oldfile" ]; then 
        $DIFF "$oldfile" "$newfile"
    fi
    oldfile=$newfile
done


aa - ab - af - ak - als - am - an - ang - ar - arc - as - ast - av - ay - az - ba - bar - bat_smg - bcl - be - be_x_old - bg - bh - bi - bm - bn - bo - bpy - br - bs - bug - bxr - ca - cbk_zam - cdo - ce - ceb - ch - cho - chr - chy - co - cr - crh - cs - csb - cu - cv - cy - da - de - diq - dsb - dv - dz - ee - el - eml - en - eo - es - et - eu - ext - fa - ff - fi - fiu_vro - fj - fo - fr - frp - fur - fy - ga - gan - gd - gl - glk - gn - got - gu - gv - ha - hak - haw - he - hi - hif - ho - hr - hsb - ht - hu - hy - hz - ia - id - ie - ig - ii - ik - ilo - io - is - it - iu - ja - jbo - jv - ka - kaa - kab - kg - ki - kj - kk - kl - km - kn - ko - kr - ks - ksh - ku - kv - kw - ky - la - lad - lb - lbe - lg - li - lij - lmo - ln - lo - lt - lv - map_bms - mdf - mg - mh - mi - mk - ml - mn - mo - mr - mt - mus - my - myv - mzn - na - nah - nap - nds - nds_nl - ne - new - ng - nl - nn - no - nov - nrm - nv - ny - oc - om - or - os - pa - pag - pam - pap - pdc - pi - pih - pl - pms - ps - pt - qu - quality - rm - rmy - rn - ro - roa_rup - roa_tara - ru - rw - sa - sah - sc - scn - sco - sd - se - sg - sh - si - simple - sk - sl - sm - sn - so - sr - srn - ss - st - stq - su - sv - sw - szl - ta - te - tet - tg - th - ti - tk - tl - tlh - tn - to - tpi - tr - ts - tt - tum - tw - ty - udm - ug - uk - ur - uz - ve - vec - vi - vls - vo - wa - war - wo - wuu - xal - xh - yi - yo - za - zea - zh - zh_classical - zh_min_nan - zh_yue - zu -