Differences between revisions 11 and 12
Revision 11 as of 2012-01-12 10:36:10
Size: 1303
Editor: GötzWaschk
Comment: SL6
Revision 12 as of 2014-06-11 16:00:47
Size: 1402
Editor: GötzWaschk
Comment: sl7
Deletions are marked like this. Additions are marked like this.
Line 30: Line 30:
   * on SL7, use this:
   {{{
elinks -dump -no-numbering -no-references name.html > name.txt}}}

2005-09-12: howto unix minutes

As from now we put our unix minutes onto wiki in the following way:

  • The links to the ten recent unix minutes apear on the page UnixMinutes (restricted to DvGroup)

  • All are visible on UnixMinutes/All

  • Use the ProtokollTemplate for new minutes

  • to send the minutes to it-protokolle run
    1. go to the minutes page and click to "print" version
    2. save as html file with option "Web Page, complete "
    3. create a text file with:
      • if your mail reader uses UTF-8 for sending:
        lynx -dump -nolist name.html > name.txt
      • if your mail reader expects ISO-8859-1 when sending:
        lynx -dump -nolist name.html | iconv --from-code=utf-8 --to-code=iso-8859-1 > name.txt
      • slightly better results are obtainend using (e)links without and with Character conversion:
        links -dump -no-references -no-numbering name.html > name.txt
        links -dump -no-references -no-numbering -dump-charset ISO8859-1 name.html > name.txt
      • on SL6, this works:
        links -dump -codepage ISO8859-1 name.html > name.txt
      • on SL7, use this:
        elinks -dump -no-numbering -no-references name.html > name.txt

News/2005-09-12:_how_to_put_unix_minutes_onto_dvinfo (last edited 2014-06-11 16:00:47 by GötzWaschk)