*+JMJ_---^---------^---------^---------^---------^---------^---------^-- * atom10 - Atom 1.0 feed generation utilities * Copyright 2014 David Meyer * Copying and distribution of this file, with or without * modification, are permitted in any medium without royalty * provided the copyright notice and this notice are preserved. * This file is offered as-is, without any warranty. * atmhd - Output Atom feed header subroutine atmhd (outu, title, basurl, atmfil, author, email) integer outu character*(*) title, basurl, atmfil, author, email write(outu, 10) title, basurl, atmfil, author, email, basurl 10 format(''/ +'',a,''/ +''/ +'',a,'',a,''/ +'',a,'') return end * atment - Output Atom feed entry subroutine atment (outu, entttl, enturi, entupd, entsum) integer outu character*(*) entttl, enturi, entupd, entsum(4) write(outu, 10) entttl, enturi, entupd, entsum 10 format('',a,''/'',a,'', +'',a,''/a/a/a/a/'') return end * atmft - Output Atom feed footer subroutine atmft (outu) integer outu write(outu, 10) 10 format('') return end