Le 23/11/2011 20:00, Darrell Anderson a écrit :
there are still tutorials for kde3 development at http://techbase.kde.org/Development/Tutorials/KDE3
- they do not cover kdevelop, though.
maybe it is also a good idea to archive these somewhere on the TDE webspace, as they are marked for deletion at the original site.
How do we do that? Recursive wget?
I downloaded a lot of things with this script:
------------------------------------- #!/bin/bash ADRESSES=" http://techbase.kde.org/Development/Tutorials/KNewStuffSecure/ http://techbase.kde.org/Development/Tutorials/Introduction_to_Get_Hot_New_St... http://techbase.kde.org/Development/Tutorials/KDE3/ http://techbase.kde.org/Development/Architecture/KDE3/ http://techbase.kde.org/Getting_Started/Build/Historic/KDE_3.5/ http://techbase.kde.org/Development/Architecture/DCOP/ " DIR=techbase-kde3 OPTIONS="-r --force-directories --execute robots=off --timestamping \ --page-requisites --convert-links --backup-converted \ -P $DIR -a $DIR/$DIR.log --wait=6 --random-wait --user-agent=firefox" mkdir -v $DIR touch $DIR/$DIR.log for x in $ADRESSES ; do wget $OPTIONS --no-parent $x # wget $OPTIONS --level=2 $x # too much things done -------------------------------------
There is also useful tarballs here: http://api.kde.org/3.5-api/
Does the original KDE3 web site exist anywhere? Cached/archived? Wayback? There is a lot of material we might be able to use.
I downloaded some pages about kio slaves from wayback with:
------------------------------------- #!/bin/bash
DIR=kioslaves URL=http://web.archive.org/web/20081222233709/http://developer.kde.org/documenta... OPTIONS="-r --force-directories --execute robots=off --timestamping \ --page-requisites --convert-links --backup-converted \ -P $DIR -a $DIR/$DIR.log --wait=6 --random-wait --user-agent=firefox" mkdir -v $DIR touch $DIR/$DIR.log wget $OPTIONS --level=2 --no-parent $URL -------------------------------------
Hope it helps.