Blame src/mpi/romio/doc/makepubpage.sh

Packit Service c5cf8c
#!/bin/sh
Packit Service c5cf8c
Packit Service c5cf8c
# if you have bibtext2html installed (http://www.lri.fr/~filliatr/bibtex2html/
Packit Service c5cf8c
# but I know there are other packages by that name), then you can re-generate
Packit Service c5cf8c
# the "ROMIO publication page"
Packit Service c5cf8c
# (http://www.mcs.anl.gov/research/projects/romio/pubs.html)
Packit Service c5cf8c
Packit Service c5cf8c
# If you update the command below, please be sure to retain the link to the
Packit Service c5cf8c
# older papers
Packit Service c5cf8c
Packit Service c5cf8c
WEB_HOST=login3.mcs.anl.gov
Packit Service c5cf8c
WEB_DIR=/mcs/web/research/projects/romio
Packit Service c5cf8c
Packit Service c5cf8c
bibtex2html -t "Papers using ROMIO" \
Packit Service c5cf8c
	--header "Please help us keep this list up to date. Contact mpich-discuss@mcs.anl.gov for any corrections or additions. 

Last updated at $(date).

Recent publications

" \

Packit Service c5cf8c
	--footer "

Other publications

Packit Service c5cf8c
	
    Packit Service c5cf8c
    	
  • Northwestern University CUCIS group
  • Packit Service c5cf8c
    	
  • Weikuan Yu
  • Packit Service c5cf8c
    	
  • Phillip Dickens
  • Packit Service c5cf8c
    	
  • Older ROMIO papers" \
  • Packit Service c5cf8c
    	-r -d -both pubs.bib
    Packit Service c5cf8c
    Packit Service c5cf8c
    if [ $? -eq 0 ] ; then
    Packit Service c5cf8c
    	scp pubs* ${WEB_HOST}:${WEB_DIR}
    Packit Service c5cf8c
    else
    Packit Service c5cf8c
    	echo "error running bibtex2html.  website not updated"
    Packit Service c5cf8c
    fi