sfeed

Simple RSS and Atom feed parser
git clone https://git.sinitax.com/codemadness/sfeed
Log | Files | Refs | README | LICENSE | Upstream | sfeed.txt

sfeed_frames.1 (1505B)


      1.Dd July 31, 2021
      2.Dt SFEED_FRAMES 1
      3.Os
      4.Sh NAME
      5.Nm sfeed_frames
      6.Nd format feed data to HTML with frames
      7.Sh SYNOPSIS
      8.Nm
      9.Op Ar
     10.Sh DESCRIPTION
     11.Nm
     12formats feed data (TSV) from
     13.Xr sfeed 1
     14from stdin or for each
     15.Ar file
     16to HTML.
     17It writes HTML files for the frameset to the current directory.
     18If no
     19.Ar file
     20arguments are specified and so the data is read from stdin then the menu.html
     21file is not written.
     22.Pp
     23Items with a timestamp from the last day compared to the system time at the
     24time of formatting are counted and marked as new.
     25Items are marked as new using a bold markup.
     26This value might be overridden through environment variables.
     27.Pp
     28There is an example style.css stylesheet file included in the distribution.
     29.Sh FILES WRITTEN
     30.Bl -tag -width 13n
     31.It index.html
     32The main HTML file referencing the files for the frames: items.html and
     33menu.html.
     34.It items.html
     35The HTML file of the items frame which contains all the item links to the
     36feeds.
     37.It menu.html
     38The HTML file of the menu frame which contains navigation "anchor" links (like
     39"#feedname") to the feed names in items.html.
     40.El
     41.Sh ENVIRONMENT VARIABLES
     42.Bl -tag -width Ds
     43.It Ev SFEED_NEW_AGE
     44Overwrite the maximum age in seconds to mark feeds as new.
     45By default this is 86400, which equals one day.
     46.El
     47.Sh EXIT STATUS
     48.Ex -std
     49.Sh EXAMPLES
     50.Bd -literal
     51sfeed_frames ~/.sfeed/feeds/*
     52.Ed
     53.Sh SEE ALSO
     54.Xr sfeed 1 ,
     55.Xr sfeed_html 1 ,
     56.Xr sfeed_plain 1 ,
     57.Xr sfeed 5
     58.Sh AUTHORS
     59.An Hiltjo Posthuma Aq Mt hiltjo@codemadness.org