12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- #!/bin/bash
- #(c) Copyright Barry Kauler 2009, puppylinux.com.
- #2009 Lesser GPL licence v2 (http://www.fsf.org/licensing/licenses/lgpl.html)
- #generates index.html master help page. called from petget, rc.update,
- # /usr/local/petget/installpreview.sh, 3builddistro (in Woof).
- #w012 commented-out drop-down for all installed pkgs as too big in Ubuntu-Puppy.
- #w016 support/find_homepages (in Woof) used to manually update HOMEPAGEDB variable.
- #w019 now have /root/.packages/PKGS_HOMEPAGES
- #w464 reintroduce dropdown help for all builtin packages.
- #v423 file PKGS_HOMEPAGES is now a db of all known pkgs, not just in puppy.
- #120225 copy from raw doc files.
- export LANG=C
- . /etc/DISTRO_SPECS #has DISTRO_BINARY_COMPAT, DISTRO_COMPAT_VERSION, DISTRO_PUPPYDATE
- . /root/.packages/DISTRO_PKGS_SPECS
- WKGDIR="`pwd`"
- #120225 this is done in Woof by rootfs-skeleton/pinstall.sh, but do need to do it
- #here to support language translations (see /usr/share/sss/doc_strings)...
- if [ -f /usr/share/doc/index.html.top-raw ];then #see Woof rootfs-skeleton/pinstall.sh, also /usr/share/sss/doc_strings
- cp -f /usr/share/doc/index.html.top-raw /usr/share/doc/index.html.top
- cp -f /usr/share/doc/index.html.bottom-raw /usr/share/doc/index.html.bottom
- cp -f /usr/share/doc/home-raw.htm /usr/share/doc/home.htm
- cutDISTRONAME="`echo -n "$DISTRO_NAME" | cut -f 1 -d ' '`"
- cPATTERN="s/cutDISTRONAME/${cutDISTRONAME}/g"
- RIGHTVER="$DISTRO_VERSION"
- dPATTERN="s/PUPPYDATE/${DISTRO_PUPPYDATE}/g"
- PATTERN1="s/RIGHTVER/${RIGHTVER}/g"
- PATTERN2="s/DISTRO_VERSION/${DISTRO_VERSION}/g"
- nPATTERN="s/DISTRO_NAME/${DISTRO_NAME}/g"
-
- sed -i -e "$PATTERN1" -e "$PATTERN2" -e "$nPATTERN" -e "$dPATTERN" -e "$cPATTERN" /usr/share/doc/index.html.top
- sed -i -e "$PATTERN1" -e "$PATTERN2" -e "$nPATTERN" -e "$dPATTERN" /usr/share/doc/index.html.bottom
- #...note, /usr/sbin/indexgen.sh puts these together as index.html (normally via rc.update and 3builddistro).
-
- sed -i -e "$nPATTERN" /usr/share/doc/home.htm
- fi
- #search for installed pkgs with descriptions...
- #search .desktop files...
- PKGINFO1="`ls -1 /usr/share/applications | sed -e 's%^%/usr/share/applications/%' | xargs cat - | grep '^Name=' | cut -f 2 -d '='`"
- #...normal format of each entry is 'name description', ex: 'Geany text editor'.
- EXCLLISTsd=" 0rootfs_skeleton autologin bootflash burniso2cd cd/dvd check configure desktop format network pupdvdtool wallpaper pbackup pburn pcdripper pdict pdisk pdvdrsab pmetatagger pschedule pstopwatch prename pprocess pmirror pfind pcdripper pmount puppy pupctorrent pupscan pupx pwireless set text "
- cp -f /usr/share/doc/index.html.top /tmp/newinfoindex.xml
- #dropdown menu for apps in menu...
- echo '<p>Applications available in the desktop menu:</p>' >>/tmp/newinfoindex.xml
- echo '<center>
- <form name="form">
- <select name="site" size="1" onchange="javascript:formHandler()">
- ' >>/tmp/newinfoindex.xml
- echo "$PKGINFO1" |
- while read ONEINFO
- do
- NAMEONLY="`echo "$ONEINFO" | cut -f 1 -d ' ' | tr [A-Z] [a-z]`"
- EXPATTERN=" $NAMEONLY "
- nEXPATTERN="^$NAMEONLY "
- [ "`echo "$EXCLLISTsd" | grep -i "$EXPATTERN"`" != "" ] && continue
- HOMESITE="http://en.wikipedia.org/wiki/${NAMEONLY}"
- REALHOME="`cat /root/.packages/PKGS_HOMEPAGES | grep -i "$nEXPATTERN" | head -n 1 | cut -f 2 -d ' '`"
- [ "$REALHOME" != "" ] && HOMESITE="$REALHOME"
- echo "<option value=\"${HOMESITE}\">${ONEINFO}" >> /tmp/newinfoindex.xml
- done
- echo '</select>
- </form>
- </center>
- ' >> /tmp/newinfoindex.xml
- #w464 dropdown list of all builtin pkgs...
- echo '<p>Complete list of packages (in Puppy or not):</p>' >>/tmp/newinfoindex.xml
- echo '<center>
- <form name="form2">
- <select name="site2" size="1" onchange="javascript:formHandler2()">
- ' >>/tmp/newinfoindex.xml
- sed -e 's% %|%' -e 's%$%|%' /root/.packages/PKGS_HOMEPAGES > /tmp/pkgs_homepages_mod
- printcols /tmp/pkgs_homepages_mod 2 1 | sed -e 's%^%<option value="%' -e 's%|$%#%' -e 's%|%">%' -e 's%#$%%' >> /tmp/newinfoindex.xml
- sync
- echo '</select>
- </form>
- </center>
- ' >> /tmp/newinfoindex.xml
- #now complete the index.html file...
- cat /usr/share/doc/index.html.bottom >> /tmp/newinfoindex.xml
- mv -f /tmp/newinfoindex.xml /usr/share/doc/index.html
- ###END###
|