bibtexbrowser screenshot =====Features===== * **New (10/2009)** bibtexbrowser is able to generate RSS feeds for all queries (simply add &rss at the end of the link)! People can subscribe to the publication feed of an individual or a group so as to being kept up-to-date. * **New (10/2009)** bibtexbrowser is able to generate a bibtex file containing only the selected entries (simply add &astext at the end of the link) * **New (10/2009)** bibtexbrowser is now independent of the configuration of register_globals * **New (02/2009)** bibtexbrowser can display all entries for an author with an academic style [[http://www.monperrus.net/martin/bibtexbrowser.php?bib=metrics.bib&academic=Ducasse|demo]] * **New (01/2009)** bibtexbrowser allows multi criteria search, e.g. [[http://www.monperrus.net/martin/bibtexbrowser.php?bib=metrics.bib&type=inproceedings&year=2004|demo]] * **New (05/2008)**: bibtexbrowser can be used to include your publication list into your home page [[http://www.monperrus.net/martin/|demo]] * bibtexbrowser can display the menu and all entries without filtering from the file name passed as parameter [[http://www.monperrus.net/martin/bibtexbrowser.php?bib=metrics.bib|demo]] * bibtexbrowser can display all entries out of a bibtex file [[http://www.monperrus.net/martin/bibtexbrowser.php?bib=metrics.bib&all|demo]] * bibtexbrowser can display all entries for a given year [[http://www.monperrus.net/martin/bibtexbrowser.php?bib=metrics.bib&year=2004|demo]] * bibtexbrowser can display a single entry [[http://www.monperrus.net/martin/bibtexbrowser.php?bib=metrics.bib&key=monperrus08d|demo]] * bibtexbrowser can display found entries with a search word (it can be in any bib field) [[http://www.monperrus.net/martin/bibtexbrowser.php?bib=metrics.bib&search=ocl|demo]] * bibtexbrowser can display all entries with a bib keyword * bibtexbrowser outputs valid XHTML 1.0 Transitional * bibtexbrowser is designed to be search engine friendly. * bibtexbrowser can display all entries for an author [[http://www.monperrus.net/martin/bibtexbrowser.php?bib=metrics.bib&author=Barbara+A.+Kitchenham|demo]] * bibtexbrowser can be used with different encodings (change the default iso-8859-1 encoding if your bib file is in utf-8 ''define('ENCODING','utf-8')'' ) =====Standalone publication lists===== 1) Create a bib file with the publication records (e.g. csgroup2008.bib) * Use the link ''bibtexbrowser.php?bib=csgroup2008.bib'' (frameset based view) * Use the link ''bibtexbrowser.php?bib=csgroup2008.bib&all'' (pub list sorted by year) * Use the link ''bibtexbrowser.php?bib=csgroup2008.bib&all&academic'' (pub list sorted by publication type, then by year) =====How to include your publication list in your home page=====
Sorted by year Sorted by publication type
For a group/team/lab <?php $_GET['bib']='csgroup2008.bib'; $_GET['all']=1; include('bibtexbrowser.php'); ?> <?php $_GET['bib']='csgroup2008.bib'; $_GET['all']=1; $_GET['academic']=''; include('bibtexbrowser.php'); ?>
For an individual <?php $_GET['bib']='mybib.bib'; $_GET['author']='Martin Monperrus'; include('bibtexbrowser.php'); ?> <?php $_GET['bib']='mybib.bib'; $_GET['author']='Martin Monperrus'; $_GET['academic']=''; include('bibtexbrowser.php'); ?>
And tailor it with a CSS style, for example: <style> .date { background-color: blue; } .rheader { font-size: large } .bibline { padding:3px; padding-left:15px; vertical-align:top;} </style> =====Adding links to the slides ===== You can simply fill the ''comment'' field of the bib entry with an HTML link: @inproceedings{foo, author="Jean Dupont", title="Bibtexbrowser", year=2009, booktitle="Proceedings of the BIB conference", comment={<a href="myslides.pdf">slides</a>} } =====Tailoring===== There are two ways to tailor bibtexbrowser: 1/ change the embedded CSS style 2/ change the parameters ENCODING, PAGE_SIZE and co at the end of this documentation ~ line 120 =====Related_tools===== [[http://www.monperrus.net/martin/bibtex2latex|bibtex2latex is a layer on top of bibtexbrowser that generates publication lists in latex.]] Old-fashioned: [[http://nxg.me.uk/dist/bibhtml/|bibhtml]], [[http://www.litech.org/~wkiri/bib2html/|bib2html]], [[http://ilab.usc.edu/bibTOhtml/|bibtohtml]], [[http://people.csail.mit.edu/rahimi/bibtex/|bibtextohtml]], [[http://www.lri.fr/~filliatr/bibtex2html/|bibtex2html]], [[http://people.csail.mit.edu/mernst/software/bibtex2web.html |bibtex2web]], [[http://strategoxt.org/Stratego/BibtexTools|stratego bibtex module]] Unlike them, **bibtexbrowser is dynamic**.i.e.; generates the HTML pages on the fly. Thus, you do not need to regenerate the static HTML files each time the bib file is changed. Furthermore you can search any string in it. Heavyweight: [[http://www.rennes.supelec.fr/ren/perso/etotel/PhpBibtexDbMng/|PHP BibTeX Database Manager]], [[http://gforge.inria.fr/projects/bibadmin/|bibadmin]], [[http://artis.imag.fr/Software/Basilic/|basilic]], [[http://phpbibman.sourceforge.net/|phpbibman]], [[http://www.aigaion.nl/|aigaion]], [[http://www.refbase.net/|refbase]], [[http://wikindx.sourceforge.net/|wikindx]] Unlike them, **bibtexbrowser does not need a MySQL database** and does not need a tedious import step each time the bib file is changed. Main competitors: [[http://code.google.com/p/simplybibtex/|SimplyBibtex]] has the same spirit and makes different architectural and presentation choices => **bibtexbrowser is much more lightweight** (just one file!). [[http://www.cs.toronto.edu/~fritz/bibbase/|BibBase]] is a nice and very similar script, but written in Perl => **bibtexbrowser does not require a CGI/Perl compliant webserver** . Misc: [[http://www.sat.ltu.se/publications/publications.m|This matlab ;-) script is similar ]] =====Copyright===== This script is a fork from an excellent script of the University of Texas at El Paso. (C) 2006-2007-2008-2009 Martin Monperrus (C) 2005-2006 The University of Texas at El Paso / Joel Garcia, Leonardo Ruiz, and Yoonsik Cheon This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. */ // *************** CONFIGURATION // there is no encoding transformation from the bibtex file to the html file // if your bibtex file contains 8 bits characters in utf-8 // change the following parameter define('ENCODING','iso-8859-1');//define('ENCODING','utf-8'); // number of bib items per page define('PAGE_SIZE',isset($_GET['nopage'])?10000:25); // do have authors in a comma separated form? define('COMMA_NAMES',false); // for the menu frame define('YEAR_SIZE',10); // number of years per table define('TAGS_SIZE',20); // number of keywords per table define('AUTHORS_SIZE',20); // number of authors per table // *************** END CONFIGURATION define('READLINE_LIMIT',1024); define('Q_YEAR', 'year'); define('Q_YEAR_PAGE', 'year_page'); define('Q_FILE', 'bib'); define('Q_AUTHOR', 'author'); define('Q_AUTHOR_PAGE', 'author_page'); define('Q_TAG', 'keywords'); define('Q_TAG_PAGE', 'keywords_page'); define('Q_TYPE', 'type'); define('Q_TYPE_PAGE', 'type_page'); define('Q_ALL', 'all'); define('Q_ENTRY', 'entry'); define('Q_KEY', 'key'); define('Q_SEARCH', 'search'); define('Q_EXCLUDE', 'exclude'); define('Q_RESULT', 'result'); define('Q_ACADEMIC', 'academic'); define('Q_DB', 'bibdb'); define('AUTHOR', 'author'); define('EDITOR', 'editor'); define('SCHOOL', 'school'); define('TITLE', 'title'); define('BOOKTITLE', 'booktitle'); define('YEAR', 'year'); // for clean search engine links // we disable url rewriting // ... and hope that your php configuration will accept one of these @ini_set("session.use_only_cookies",1); @ini_set("session.use_trans_sid",0); @ini_set("url_rewriter.tags",""); // we ensure that the pages won't get polluted // if future versions of PHP change warning mechanisms... @error_reporting(E_ERROR); // default bib file, if no file is specified in the query string. if (!isset($_GET[Q_FILE])) { header('HTTP/1.1 404 Not found'); header('Content-type: text/plain');// to be validated by W3 die('No bibtex file passed as parameter (e.g. bibtexbrowser.php?bib=mybib.php)'); } if (!file_exists($_GET[Q_FILE])) { // to automate dectection of faulty links with tools such as webcheck header('HTTP/1.1 404 Not found'); die('the bib file '.$_GET[Q_FILE].' does not exist !'); } // PHP version // 20091010: bibtexbrowser is again PHP4 compatible :-) /*if (ereg('^4',phpversion())) { ?> You are using PHP v
bibtexbrowser requires a version of PHP >= 5 (PHP5)
QuickFix: you can try to add in .htaccess of the containing directory: SetEnv PHP_VER 5 filemtime($_GET[Q_FILE]))) { header("HTTP/1.1 304 Not Modified"); exit; } // for sake of performance, once the bibtex file is parsed // we try to save a "compiled" in a txt file $compiledbib = $_GET[Q_FILE].'.txt'; // do we have a compiled version ? if (is_file($compiledbib) && is_readable($compiledbib)) { // is it up to date ? if (filemtime($_GET[Q_FILE])>filemtime($compiledbib)) { // no, then reparse $db = new BibDataBase(); $db->load($_GET[Q_FILE]); $_GET[Q_DB]=$db; } else { // yes then take it $_GET[Q_DB] = unserialize(file_get_contents($compiledbib)); } } // we don't have a compiled version else { // then parsing the file $db = new BibDataBase(); $db->load($_GET[Q_FILE]); $_GET[Q_DB]=$db; // are we able to save the compiled version ? if ((!is_file($compiledbib) && is_writable(dirname($compiledbib))) || (is_file($compiledbib) && is_writable($compiledbib)) ) { // we can use file_put_contents // but don't do it for compatibility with PHP 4.3 $f = fopen($compiledbib,'w'); fwrite($f,serialize($_GET[Q_DB])); fclose($f); } } //////////////////////////////////////////////////////// /** This class is a generic parser of bibtex files * It has no dependencies, i.e. it can be used outside of bibtexbrowser * To use it, simply instantiate it and pass it an object that will receive semantic events * The delegate is expected to have some methods * see classes BibDBBuilder and XMLPrettyPrinter */ class StateBasedBibtexParser { function StateBasedBibtexParser($bibfilename, &$delegate) { // STATE DEFINITIONS @define('NOTHING',1); @define('GETTYPE',2); @define('GETKEY',3); @define('GETVALUE',4); @define('GETVALUEDELIMITEDBYQUOTES',5); @define('GETVALUEDELIMITEDBYQUOTES_ESCAPED',6); @define('GETVALUEDELIMITEDBYCURLYBRACKETS',7); @define('GETVALUEDELIMITEDBYCURLYBRACKETS_ESCAPED',8); @define('GETVALUEDELIMITEDBYCURLYBRACKETS_1NESTEDLEVEL',9); @define('GETVALUEDELIMITEDBYCURLYBRACKETS_1NESTEDLEVEL_ESCAPED',10); @define('GETVALUEDELIMITEDBYCURLYBRACKETS_2NESTEDLEVEL',11); @define('GETVALUEDELIMITEDBYCURLYBRACKETS_2NESTEDLEVEL_ESCAPED',12); @define('GETVALUEDELIMITEDBYCURLYBRACKETS_3NESTEDLEVEL',11); @define('GETVALUEDELIMITEDBYCURLYBRACKETS_3NESTEDLEVEL_ESCAPED',12); $state=NOTHING; $entrytype=''; $entrykey=''; $entryvalue=''; $finalkey=''; $entrysource=''; // metastate $isinentry = false; $delegate->beginFile(); $handle = fopen($bibfilename, "r"); // if you encounter this errir "Allowed memory size of xxxxx bytes exhausted" // then decrease the size of the temp buffer below $bufsize=min(filesize($bibfilename),100000); while (!feof($handle)) { $sread=fread($handle,$bufsize); //foreach(str_split($sread) as $s) { for ( $i=0; $i < strlen( $sread ); $i++) { $s=$sread[$i]; if ($isinentry) $entrysource.=$s; if ($state==NOTHING) { // this is the beginning of an entry if ($s=='@') { $delegate->beginEntry(); $state = GETTYPE; $isinentry = true; $entrysource='@'; } } else if ($state==GETTYPE) { // this is the beginning of a key if ($s=='{') { $state = GETKEY; $delegate->setEntryType($entrytype); $entrytype=''; } else $entrytype=$entrytype.$s; } else if ($state==GETKEY) { // now we get the value if ($s=='=') { $state = GETVALUE; $finalkey=$entrykey; $entrykey='';} // oups we only have the key :-) anyway else if ($s=='}') { $state = NOTHING;$isinentry = false;$delegate->endEntry($entrysource); $entrykey=''; } // OK now we look for values else if ($s==',') { $state=GETKEY; $delegate->setEntryKey($entrykey); $entrykey='';} else { $entrykey=$entrykey.$s; } } // we just got a =, we can now receive the value, but we don't now whether the value // is delimited by curly brackets, double quotes or nothing else if ($state==GETVALUE) { // the value is delimited by double quotes if ($s=='"') { $state = GETVALUEDELIMITEDBYQUOTES; $entryvalue='';} // the value is delimited by curly brackets else if ($s=='{') { $state = GETVALUEDELIMITEDBYCURLYBRACKETS; $entryvalue='';} // the end of the key and no value found: it is the bibtex key e.g. \cite{Descartes1637} else if ($s==',') { $state = GETKEY; $delegate->setEntryField(trim($finalkey),$entryvalue); $entryvalue='';} // this is the end of the value AND of the entry else if ($s=='}') { $state = NOTHING;$isinentry = false; $delegate->setEntryField(trim($finalkey),$entryvalue); $delegate->endEntry($entrysource); $entryvalue='';} else { $entryvalue=$entryvalue.$s;} } /* GETVALUEDELIMITEDBYCURLYBRACKETS* handle entries delimited by curly brackets and the possible nested curly brackets */ else if ($state==GETVALUEDELIMITEDBYCURLYBRACKETS) { if ($s=='\\') { $state = GETVALUEDELIMITEDBYCURLYBRACKETS_ESCAPED; $entryvalue=$entryvalue.$s;} else if ($s=='{') { $state = GETVALUEDELIMITEDBYCURLYBRACKETS_1NESTEDLEVEL;} else if ($s=='}') { $state = GETVALUE;} else { $entryvalue=$entryvalue.$s;} } // handle anti-slashed brackets else if ($state==GETVALUEDELIMITEDBYCURLYBRACKETS_ESCAPED) { $state = GETVALUEDELIMITEDBYCURLYBRACKETS; $entryvalue=$entryvalue.$s; } // in first level of curly bracket else if ($state==GETVALUEDELIMITEDBYCURLYBRACKETS_1NESTEDLEVEL) { if ($s=='\\') { $state = GETVALUEDELIMITEDBYCURLYBRACKETS_1NESTEDLEVEL_ESCAPED; $entryvalue=$entryvalue.$s;} else if ($s=='{') { $state = GETVALUEDELIMITEDBYCURLYBRACKETS_2NESTEDLEVEL;} else if ($s=='}') { $state = GETVALUEDELIMITEDBYCURLYBRACKETS;} else { $entryvalue=$entryvalue.$s;} } // handle anti-slashed brackets else if ($state==GETVALUEDELIMITEDBYCURLYBRACKETS_1NESTEDLEVEL_ESCAPED) { $state = GETVALUEDELIMITEDBYCURLYBRACKETS_1NESTEDLEVEL; $entryvalue=$entryvalue.$s; } // in second level of curly bracket else if ($state==GETVALUEDELIMITEDBYCURLYBRACKETS_2NESTEDLEVEL) { if ($s=='\\') { $state = GETVALUEDELIMITEDBYCURLYBRACKETS_2NESTEDLEVEL_ESCAPED; $entryvalue=$entryvalue.$s;} else if ($s=='{') { $state = GETVALUEDELIMITEDBYCURLYBRACKETS_3NESTEDLEVEL;} else if ($s=='}') { $state = GETVALUEDELIMITEDBYCURLYBRACKETS_1NESTEDLEVEL;} else { $entryvalue=$entryvalue.$s;} } // handle anti-slashed brackets else if ($state==GETVALUEDELIMITEDBYCURLYBRACKETS_2NESTEDLEVEL_ESCAPED) { $state = GETVALUEDELIMITEDBYCURLYBRACKETS_2NESTEDLEVEL; $entryvalue=$entryvalue.$s; } // in third level of curly bracket else if ($state==GETVALUEDELIMITEDBYCURLYBRACKETS_3NESTEDLEVEL) { if ($s=='\\') { $state = GETVALUEDELIMITEDBYCURLYBRACKETS_3NESTEDLEVEL_ESCAPED; $entryvalue=$entryvalue.$s;} else if ($s=='}') { $state = GETVALUEDELIMITEDBYCURLYBRACKETS_2NESTEDLEVEL;} else { $entryvalue=$entryvalue.$s;} } // handle anti-slashed brackets else if ($state==GETVALUEDELIMITEDBYCURLYBRACKETS_3NESTEDLEVEL_ESCAPED) { $state = GETVALUEDELIMITEDBYCURLYBRACKETS_3NESTEDLEVEL; $entryvalue=$inentryvaluedelimitedA0.$s; } /* handles entries delimited by double quotes */ else if ($state==GETVALUEDELIMITEDBYQUOTES) { if ($s=='\\') { $state = GETVALUEDELIMITEDBYQUOTES_ESCAPED; $inentryvaluedelimitedB=$inentryvaluedelimitedB.$s;} else if ($s=='"') { $state = GETVALUE; $entryvalue=$entryvalue.$inentryvaluedelimitedB; $inentryvaluedelimitedB='';} else { $inentryvaluedelimitedB=$inentryvaluedelimitedB.$s;} } // handle anti-double quotes else if ($state==GETVALUEDELIMITEDBYQUOTES_ESCAPED) { $state = GETVALUEDELIMITEDBYQUOTES; $inentryvaluedelimitedB=$inentryvaluedelimitedB.$s; } } // end for } // end while $delegate->endFile(); fclose($handle); } // end function } // end class /** This class can be used together with StateBasedBibParser */ class XMLPrettyPrinter { function beginFile() { header('Content-type: text/xml;'); print ''; print ''; } function endFile() { print ''; } function setEntryField($finalkey,$entryvalue) { print "\n".$finalkey."\n".$entryvalue."\n\n"; } function setEntryType($entrytype) { print ''.$entrytype.''; } function setEntryKey($entrykey) { print ''.$entrykey.''; } function beginEntry() { print "\n"; } function endEntry($entrysource) { print "\n"; } } // end class XMLPrettyPrinter /** This class can be used together with StateBasedBibParser */ class BibDBBuilder { /** A hashtable from keys to bib entries (BibEntry). */ var $builtdb; var $currentEntry; function BibDBBuilder($filename) { new StateBasedBibtexParser($filename, $this); } function beginFile() { $builtdb = array(); } function endFile() { //nothing } function setEntryField($finalkey,$entryvalue) { if ($finalkey!='url') $formatedvalue = xtrim(latex2html($entryvalue)); else $formatedvalue = trim($entryvalue); $this->currentEntry->setField(strtolower($finalkey),$formatedvalue); } function setEntryType($entrytype) { $this->currentEntry->setType($entrytype); } function setEntryKey($entrykey) { //echo "new entry:".$entrykey."\n"; $this->currentEntry->setField('key',$entrykey); } function beginEntry() { $this->currentEntry = new BibEntry(); } function endEntry($entrysource) { $this->currentEntry->text = $entrysource; // ignoring string entries and jabref comments if (($this->currentEntry->getType()!='comment') && ($this->currentEntry->getType()!='string')) { $this->builtdb[$this->currentEntry->getKey()] = $this->currentEntry; } } } // end class BibDBBuilder /** extended version of the trim function * removes linebreks, tabs, etc. */ function xtrim($line) { $line = trim($line); // we remove the unneeded line breaks // this is *required* to correctly split author lists into names $line = str_replace("\n\r",' ', $line);//windows like $line = str_replace("\n",' ', $line);//unix-like // we also replace tabs $line = str_replace("\t",' ', $line); // remove superfluous spaces e.g. John+++Bar $line = ereg_replace(' {2,}',' ', $line); return $line; } /** encapsulates the conversion of a single latex chars to the corresponding HTML entity * this works thanks to the regularity of html entities * it expects a **lower** char */ function char2html($line,$latexmodifier,$char,$entitiyfragment) { $line = str_replace('\\'.$latexmodifier.$char,'&'.$char.''.$entitiyfragment.';', $line); $line = str_replace('\\'.$latexmodifier.'{'.$char.'}','&'.$char.''.$entitiyfragment.';', $line); $line = str_replace('\\'.$latexmodifier.strtoupper($char),'&'.strtoupper($char).''.$entitiyfragment.';', $line); $line = str_replace('\\'.$latexmodifier.'{'.strtoupper($char).'}','&'.strtoupper($char).''.$entitiyfragment.';', $line); return $line; } /** converts latex chars to HTML entities * it uses a naive algortihm * I still look for a comprehensive translation table from late chars to html * just have this http://isdc.unige.ch/Newsletter/help.html */ function latex2html($line) { // performance increases with this test if (strpos($line,'\\')===false) return $line; $chars="abcdefghijklmnopqrstuvwxyz"; for($i=0;$i value) of this bib entry. */ var $fields; /** The verbatim copy (i.e., whole text) of this bib entry. */ var $text; /** Creates an empty new bib entry. Each bib entry is assigned a unique * identification number. */ function BibEntry() { static $id = 0; $this->id = $id++; $this->fields = array(); $this->text =''; } /** Returns the type of this bib entry. */ function getType() { // strtolower is important to be case-insensitive return strtolower($this->getField(Q_TYPE)); } /** Sets a field of this bib entry. */ function setField($name, $value) { $this->fields[$name] = $value; } /** Sets a type of this bib entry. */ function setType($value) { $this->fields[Q_TYPE] = $value; } /** Tries to build a good URL for this entry */ function getURL() { if ($this->hasField('url')) return $this->getField('url'); else return "http://".$_SERVER['HTTP_HOST'].dirname($_SERVER['SCRIPT_NAME']).'/'.basename(__FILE__).'?bib='.$_GET[Q_FILE].'&key='.$this->getKey(); } /** Reruns the abstract */ function getAbstract() { if ($this->hasField('abstract')) return $this->getField('abstract'); else return ''; } /** Has this entry the given field? */ function hasField($name) { return array_key_exists(strtolower($name), $this->fields); } /** Returns the authors of this entry. If no author field exists, * returns the editors. If none of authors and editors exists, * return a string 'Unknown'. */ function getAuthor() { if (array_key_exists(AUTHOR, $this->fields)) { return $this->fields[AUTHOR]; } if (array_key_exists(EDITOR, $this->fields)) { return $this->fields[EDITOR]; } return 'Unknown'; } /** Returns the key of this entry */ function getKey() { return $this->getField('key'); } /** Returns the title of this entry? */ function getTitle() { return $this->getField('title'); } /** Returns the publisher of this entry * It encodes a specific logic * */ function getPublisher() { // citation_publisher if ($this->hasField("publisher")) { return $this->getField("publisher"); } if ($this->getType()=="phdthesis") { return $this->getField(SCHOOL); } if ($this->getType()=="mastersthesis") { return $this->getField(SCHOOL); } if ($this->getType()=="techreport") { return $this->getField("institution"); } // then we don't know return ''; } /** Returns the authors of this entry as an array */ function getRawAuthors() { $authors = array(); foreach (explode(' and ', $this->getAuthor()) as $author) { $authors[]=$author; } return $authors; } /** Returns the authors of this entry as an array */ function getFormattedAuthors() { $authors = array(); foreach (explode(' and ', $this->getAuthor()) as $author) { $authors[]=formatAuthor($author); } return $authors; } /** Returns the authors of this entry as an array in a canonical form */ function getCanonicalAuthors() { $authors = array(); foreach (explode(' and ', $this->getAuthor()) as $author) { $authors[]=formatAuthorCanonical($author); } return $authors; } /** Returns the authors of this entry as an array in a comma-separated form */ function getCommaSeparatedAuthors() { $authors = array(); foreach (explode(' and ', $this->getAuthor()) as $author) { $authors[]=formatAuthorCommaSeparated($author); } return $authors; } /** Returns the authors of a string separated by a comma */ function formattedAuthors() { if (COMMA_NAMES) return implode('; ',$this->getFormattedAuthors()); else return implode(', ',$this->getFormattedAuthors()); } /** Returns the editors of this entry as an arry */ function getEditors() { $editors = array(); foreach (explode(' and ', $this->getField(EDITOR)) as $editor) { $editors[]=$editor; } return $editors; } /** * Returns a compacted string form of author names by throwing away * all author names except for the first one and appending ", et al." */ function getCompactedAuthors($author){ $authors = $this->getAuthors(); $etal = count($authors) > 1 ? ', et al.' : ''; return formatAuthor($authors[0]) . $etal; } /** Returns the year of this entry? */ function getYear() { return $this->getField('year'); } /** Returns the value of the given field? */ function getField($name) { if ($this->hasField($name)) {return $this->fields[strtolower($name)];} else return 'missing '.$name; } /** Returns the fields */ function getFields() { return $this->fields; } /** Returns the identification number. */ function getId() { return $this->id; } function getText() { /** Returns the verbatim text of this bib entry. */ return $this->text; } /** Returns true if this bib entry contains the given phrase * in the given field. if $field is null, all fields are considered. * Note that this method is NOT case sensitive */ function hasPhrase($phrase, $field = null) { if (!$field) { return eregi($phrase,$this->getText()); //return stripos($this->getText(), $phrase) !== false; } if ($this->hasField($field) && (eregi($phrase,$this->getField($field)) ) ) { //if ($this->hasField($field) && (stripos($this->getField($field), $phrase) !== false) ) { return true; } return false; } /** Outputs an HTML line ()with two TDS inside */ function toTR() { echo ''; echo '['.$this->getId().'] '; echo ''; echo $this->toString(); $href = 'href="'.basename(__FILE__).'?'.createQueryString(array(Q_KEY => urlencode($this->getKey()))).'"'; echo " [bib]"; if ($this->hasField('url')) { echo ' [pdf]'; } if ($this->hasField('doi')) { echo ' [doi]'; } echo "\n"; } /** Outputs an coins URL: see http://ocoins.info/cobg.html * Used by Zotero, mendeley, etc. */ function toCoins() { $url_parts=array(); $url_parts[]='ctx_ver=Z39.88-2004'; $type = $this->getType(); if ($type=="book") { $url_parts[]='rft_val_fmt='.s3988('info:ofi/fmt:kev:mtx:book'); $url_parts[]='rft.btitle='.s3988($this->getTitle()); $url_parts[]='rft.genre=book'; } else if ($type=="inproceedings") { $url_parts[]='rft_val_fmt='.s3988('info:ofi/fmt:kev:mtx:book'); $url_parts[]='rft.atitle='.s3988($this->getTitle()); $url_parts[]='rft.btitle='.s3988($this->getField(BOOKTITLE)); // zotero does not support with this proceeding and conference // they give the wrong title //$url_parts[]='rft.genre=proceeding'; //$url_parts[]='rft.genre=conference'; $url_parts[]='rft.genre=bookitem'; } else if ($type=="incollection" ) { $url_parts[]='rft_val_fmt='.s3988('info:ofi/fmt:kev:mtx:book'); $url_parts[]='rft.btitle='.s3988($this->getField(BOOKTITLE)); $url_parts[]='rft.atitle='.s3988($this->getTitle()); $url_parts[]='rft.genre=bookitem'; } else if ($type=="article") { $url_parts[]='rft_val_fmt='.s3988('info:ofi/fmt:kev:mtx:journal'); $url_parts[]='rft.atitle='.s3988($this->getTitle()); $url_parts[]='rft.jtitle='.s3988($this->getField("journal")); $url_parts[]='rft.volume='.s3988($this->getField("volume")); $url_parts[]='rft.issue='.s3988($this->getField("issue")); } else { // techreport, phdthesis $url_parts[]='rft_val_fmt='.s3988('info:ofi/fmt:kev:mtx:book'); $url_parts[]='rft.btitle='.s3988($this->getTitle()); $url_parts[]='rft.genre=report'; } $url_parts[]='rft.pub='.s3988($this->getPublisher()); // referent if ($this->hasField('url')) { $url_parts[]='rft_id='.s3988($this->getField("url")); } else if ($this->hasField('doi')) { $url_parts[]='rft_id='.s3988('info:doi/'.$this->getField("doi")); } // referrer, the id pf a collection of objects // see also http://www.openurl.info/registry/docs/pdf/info-sid.pdf $url_parts[]='rfr_id='.s3988('info:sid/'.$_SERVER['HTTP_HOST'].':'.$_GET[Q_FILE]); $url_parts[]='rft.date='.s3988($this->getYear()); foreach ($this->getFormattedAuthors() as $au) $url_parts[]='rft.au='.s3988($au); return implode('&',$url_parts); } /** Outputs an HTML string */ function toString() { $title = $this->getTitle(); $type = $this->getType(); $entry=array(); // title $title = ''.$title.''; if ($this->hasField('url')) $title = ' '.$title.''; $entry[] = $title; // author if ($this->hasField('author')) { $entry[0] .= ' ('.$this->formattedAuthors().')'; } // now the origin of the publication is in italic $booktitle = ''; if (($type=="misc") && $this->hasField("note")) { $booktitle = $this->getField("note"); } if ($type=="inproceedings") { $booktitle = 'In '.$this->getField(BOOKTITLE); } if ($type=="incollection") { $booktitle = 'Chapter in '.$this->getField(BOOKTITLE); } if ($type=="article") { $booktitle = 'In '.$this->getField("journal"); } //// ******* EDITOR $editor=''; if ($this->hasField(EDITOR)) { $editors = array(); foreach ($this->getEditors() as $ed) { $editors[]=formatAuthor($ed); } $editor = implode(', ',$editors).', '.(count($editors)>1?'eds.':'ed.'); } if ($booktitle!='') { if ($editor!='') $booktitle .=' ('.$editor.')'; $entry[] = ''.$booktitle.''; } $publisher=''; if ($type=="phdthesis") { $publisher = 'PhD thesis, '.$this->getField(SCHOOL); } if ($type=="mastersthesis") { $publisher = 'Master\'s thesis, '.$this->getField(SCHOOL); } if ($type=="techreport") { $publisher = 'Technical report, '.$this->getField("institution"); } if ($this->hasField("publisher")) { $publisher = $this->getField("publisher"); } if ($publisher!='') $entry[] = $publisher; if ($this->hasField('volume')) $entry[] = "volume ".$this->getField("volume"); if ($this->hasField(YEAR)) $entry[] = $this->getYear(); $result = implode(", ",$entry).'.'; // some comments (e.g. acceptance rate)? if ($this->hasField('comment')) { $result .= " (".$this->getField("comment").")"; } // add the Coin URL $result .= "\n".''; return $result; } /** * Displays a unformated (verbatim) text of the given bib entry. * The text is displayed in
tag. * The object may be mutated to read the rest of the fields. */ function toEntryUnformatted() { $text =$this->getText(); // Note this is exactly the initial formatting thanks to the PRE tag ?>
$val) { $array_param[$key]=$key .'='. $val; } return $qstring.implode("&",$array_param); } /** * Given a query, an array of key value pairs, returns a href string * of the form: href="?bib=testing.bib&search=JML. */ function makeHref($query = NULL) { return 'href="?'. createQueryString($query) .'"'; } /** * Returns the last name of an author name. */ function getLastName($author){ list($firstname, $lastname) = splitFullName($author); return $lastname; } /** * Returns the splitted name of an author name. The argument is assumed to be * or . */ function splitFullName($author){ $author = trim($author); // the author format is "Joe Dupont" if (strpos($author,',')===false) { $parts=explode(' ', $author); // get the last name $lastname = array_pop($parts); $firstname = implode(" ", $parts); } // the author format is "Dupont, J." else { $parts=explode(',', $author); // get the last name $lastname = array_shift($parts); $firstname = implode(" ", $parts); } return array(trim($firstname), trim($lastname)); } /** * Returns the formated author name w.r.t to the user preference encoded in COMMA_NAMES */ function formatAuthor($author){ if (COMMA_NAMES) { return formatAuthorCommaSeparated($author); } else return formatAuthorCanonical($author); } /** * Returns the formated author name as "FirstName LastName". */ function formatAuthorCanonical($author){ list($firstname, $lastname) = splitFullName($author); if ($firstname!='') return $firstname.' '.$lastname; else return $lastname; } /** * Returns the formated author name as "LastName, FirstName". */ function formatAuthorCommaSeparated($author){ list($firstname, $lastname) = splitFullName($author); if ($firstname!='') return $lastname.', '.$firstname; else return $lastname; } /** * A class providing GUI controllers in a frame. */ class MenuManager extends BibtexBrowserDisplay { /** The bibliographic database, an instance of class BibDataBase. */ var $db; /** Creates a new display manager that uses the given bib database. */ function MenuManager(&$db) { $this->db =$db; new HTMLWrapper($this,array('robots'=>'noindex')); } /** function called back by HTMLWrapper */ function display() { echo $this->searchView().'
'; echo $this->typeVC().'
'; echo $this->yearVC().'
'; echo $this->authorVC().'
'; echo $this->tagVC().'
'; } /** Displays the title in a table. */ function titleView() { ?>
Generated from

db->getTypes() as $type) { $types[$type] = $type; } // retreive or calculate page number to display if (isset($_GET[Q_TYPE_PAGE])) { $page = $_GET[Q_TYPE_PAGE]; } else $page = 1; $this->displayMenu('Types', $types, $page, 10, Q_TYPE_PAGE, Q_TYPE); } /** Displays and controls the authors menu in a table. */ function authorVC() { // retrieve authors list to display $authors = $this->db->authorIndex(); // determine the authors page to display if (isset($_GET[Q_AUTHOR_PAGE])) { $page = $_GET[Q_AUTHOR_PAGE]; } else $page = 1; $this->displayMenu('Authors', $authors, $page, AUTHORS_SIZE, Q_AUTHOR_PAGE, Q_AUTHOR); } /** Displays and controls the tag menu in a table. */ function tagVC() { // retrieve authors list to display $tags = $this->db->tagIndex(); // determine the authors page to display if (isset($_GET[Q_TAG_PAGE])) { $page = $_GET[Q_TAG_PAGE]; } else $page = 1; $this->displayMenu('Keywords', $tags, $page, TAGS_SIZE, Q_TAG_PAGE, Q_TAG); } /** Displays and controls the tag menu in a table. */ function yearVC() { // retrieve authors list to display $years = $this->db->yearIndex(); // determine the authors page to display if (isset($_GET[Q_YEAR_PAGE])) { $page = $_GET[Q_YEAR_PAGE]; } else $page = 1; $this->displayMenu('Years', $years, $page, YEAR_SIZE, Q_YEAR_PAGE, Q_YEAR); } /** Displays the main contents . */ function mainVC() { $this->display->display(); } /** Displays a list menu in a table. * * $title: title of the menu (string) * $list: list of menu items (string) * $page: page number to display (number) * $pageSize: size of each page * $pageKey: URL query name to send the page number to the server * $targetKey: URL query name to send the target of the menu item */ function displayMenu($title, $list, $page, $pageSize, $pageKey, $targetKey) { $numEntries = count($list); $startIndex = ($page - 1) * $pageSize; $endIndex = $startIndex + $pageSize; ?> 0) { $href = makeHref(array($queryKey => $page - 2,'menu'=>'')); $result .= '«\n"; } // (1 page) reverse (<) if ($start > 0) { $href = makeHref(array($queryKey => $page - 1,'menu'=>'')); $result .= '<\n"; } // (1 page) forward (>) if ($end < $numEntries) { $href = makeHref(array($queryKey => $page + 1,'menu'=>'')); $result .= '>\n"; } // fast (2 pages) forward (>>) if (($end + $pageSize) < $numEntries) { $href = makeHref(array($queryKey => $page + 2,'menu'=>'')); $result .= '»\n"; } return $result; } /** * Displays menu items (anchors) from the start index (inclusive) to * the end index (exclusive). For each menu, the following form of * string is printed: * * * Cheon, Yoonsik *
*/ function displayMenuItems($items, $startIndex, $endIndex, $queryKey) { $index = 0; foreach ($items as $key => $item) { if ($index >= $startIndex && $index < $endIndex) { $href = makeHref(array($queryKey => urlencode($key))); echo ''. $item ."\n"; echo "
\n"; } $index++; } } } /** Class to encapsulates the header formating and the powered bw footer */ class BibtexBrowserDisplay { /** the title */ var $title; function getTitle() { return $this->title; } function display() { /* unimplemented */ } /** returns the url of this display (e.g. base on the query)*/ function getURL() { return '';} /** returns the url of the RSS */ function getRSS() { return '';} /** Returns the powered by part */ function poweredby() { $poweredby = "\n".'
'; $poweredby .= ''; $poweredby .= 'Powered by bibtexbrowser'; $poweredby .= '
'."\n"; return $poweredby; } function formatedHeader() { return "
{$this->title}
\n";} } /** transforms an array representing a query into a formatted string */ function query2title(&$query) { $headers = array(); foreach($query as $k=>$v) $headers[$k] = ucwords($k).': '.ucwords($v); // special cases if (isset($headers[Q_ALL])) $headers[Q_ALL] = 'Publications in '.$_GET[Q_FILE]; if (isset($headers[Q_AUTHOR])) $headers[Q_AUTHOR] = 'Publications of '.$_GET[Q_AUTHOR]; return join(' & ',$headers); } /** Class to display a result as a set of pages. */ class PagedDisplay extends BibtexBrowserDisplay { /** the bib entries to display. */ var $result; /** the page number to display. */ var $page; /** the total number of pages to display. */ var $noPages; /** the start index to display. */ var $startIndex; /** the end index to display. */ var $endIndex; /** the content strategy (cf. pattern strategy) */ var $contentStrategy; /** the query to reinject in links to different pages */ var $filter; /** Creates an instance with the given entries and header. */ function PagedDisplay(&$result, $filter) { $this->result = $result; $this->filter = $filter; // requesting a different page of the result view? if (isset($_GET[Q_RESULT])) { $this->setPage($_GET[Q_RESULT]); } else $this->page = 1; $this->setTitle(); $this->contentStrategy = new DefaultContentStrategy(); } /** sets the $this->title of BibtexBrowserDisplay based on the $filter */ function setTitle() { $this->title = query2title($this->filter); if ($this->page>1) $this->title.=' - page '.$this->page; } /** Sets the page number to display. */ function setPage($page) { $this->page = $page; } /** overrides */ function formatedHeader() { return '
'.$this->title.' [rss]
';} /** overrides */ function getURL() { return '?'.createQueryString($this->filter);} /** overrides */ function getRSS() { return basename(__FILE__).'?'.createQueryString($this->filter).'&rss';} /** Displays the entries preceded with the header. */ function display() { $page = $this->page; // print error message if no entry. if (empty($this->result)) { echo "No match found!\n"; return; } $this->noPages = ceil(count($this->result) / PAGE_SIZE); /** Displays the header stringg. */ echo $this->formatedHeader(); if ($this->noPages>1) $this->displayPageBar($this->noPages, $page); $this->startIndex = ($page - 1) * PAGE_SIZE; $this->endIndex =$this->startIndex + PAGE_SIZE; $this->contentStrategy->display($this); if ($this->noPages>1) $this->displayPageBar($this->noPages, $page); echo $this->poweredby(); } function isDisplayed($index) { if ($index >= $this->startIndex && $index < $this->endIndex) return true; return false; } /** Displays a page bar consisting of clickable page numbers. */ function displayPageBar($noPages, $page) { $barSize = 10; // *2 $start = ($page - $barSize) > 0 ? $page - $barSize : 1; $end = min($noPages, $start + $barSize * 2); echo ''; } } /** * Displays the summary information of each bib entries of the * current page. For each entry, this method displays the author, * title; the bib entries are displayed grouped by the * publication years. If the bib list is empty, an error message is * displayed. */ class DefaultContentStrategy { /** $display: an instance of PagedDisplay */ function display(&$display) { // create a year -> entries map to display by years $years = array(); foreach ($display->result as $e) { $y = trim($e->getField(YEAR)); $years[$y][$e->getKey()] = $e; } krsort($years); ?> result)-(($display->page-1)*PAGE_SIZE); foreach ($years as $year => $entries) { if ($display->isDisplayed($index)) { ?> isDisplayed($index)) { $bib->id = $refnum--; $bib->toTR(); } $index++; } // end foreach } ?>
Sorry, this bib entry does not exist. Back to bibtexbrowser db=new BibDataBase(); $this->db->bibdb = $entries; $this->title = query2title($query); } function display() { echo $this->formatedHeader(); // Books $entries = $this->db->multisearch(array(Q_TYPE=>'book')); if (count($entries)>0) { echo "\n".'
Books
'."\n"; echo ''."\n"; foreach ($entries as $bib) { $bib->id = $bib->getYear(); $bib->toTR(); } // end foreach echo '
'; } // Journal / Bookchapters $entries = $this->db->multisearch(array(Q_TYPE=>'article|incollection')); if (count($entries)>0) { echo "\n".'
Refereed Articles and Book Chapters
'."\n"; echo ''."\n"; foreach ($entries as $bib) { $bib->id = $bib->getYear(); $bib->toTR(); } // end foreach echo '
'; } // conference papers $entries = $this->db->multisearch(array(Q_TYPE=>'inproceedings',Q_EXCLUDE=>'workshop')); if (count($entries)>0) { echo "\n".'
Refereed Conference Papers
'."\n"; echo ''."\n"; foreach ($entries as $bib) { $bib->id = $bib->getYear(); $bib->toTR(); } // end foreach echo '
'; } // workshop papers $entries = $this->db->multisearch(array(Q_TYPE=>'inproceedings',Q_SEARCH=>'workshop')); if (count($entries)>0) { echo "\n".'
Refereed Workshop Papers
'."\n"; echo ''."\n"; foreach ($entries as $bib) { $bib->id = $bib->getYear(); $bib->toTR(); } // end foreach echo '
'; } // misc and thesis $entries = $this->db->multisearch(array(Q_TYPE=>'misc|phdthesis|mastersthesis|techreport')); if (count($entries)>0) { echo "\n".'
Other Publications
'."\n"; echo ''."\n"; foreach ($entries as $bib) { $bib->id = $bib->getYear(); $bib->toTR(); } // end foreach echo '
'; } echo $this->poweredby(); } } /** Class to display a single bib entry. * This view is optimized for Google Scholar * */ class BibEntryDisplay extends BibtexBrowserDisplay { /** the bib entry to display */ var $bib; /** Creates an instance with the given bib entry and header. * It the object is an instance of BibIndexEntry, it may be * mutated to read the rest of the fields. */ function BibEntryDisplay(&$bibentry) { $this->bib = $bibentry; $this->title = $this->bib->getTitle().' (bibtex bibliographic entry)'; } function display() { echo $this->formatedHeader(); echo ''; echo $this->bib->toEntryUnformatted(); //echo $this->bib->toString(); echo $this->poweredby(); } /** Creates metadata for Google Scholar * See http://www.monperrus.net/martin/accurate+bibliographic+metadata+and+google+scholar * */ function metadata() { $result=array(); $result['citation_title']=$this->bib->getTitle(); $result['citation_authors']=implode('; ',$this->bib->getCommaSeparatedAuthors()); $result['citation_date']=$this->bib->getYear(); // citation_publisher $result['citation_publisher']=$this->bib->getPublisher(); // BOOKTITLE: JOURNAL NAME OR PROCEEDINGS if ($this->bib->getType()=="article") { // journal article $result['citation_journal_title']=$this->bib->getField("journal"); $result['citation_volume']=$this->bib->getField("volume"); if ($this->bib->hasField("issue")) $result['citation_issue']=$this->bib->getField("issue"); } else if ($this->bib->hasField(BOOKTITLE)) { // this is like cat.inist.fr // but this is not at all documented on the web //$result['citation_conference']=$this->bib->getField(BOOKTITLE); // this is like bibtex // but this is not at all documented on the web // $result['citation_booktitle']=$this->bib->getField(BOOKTITLE); // according to the advanced search view of Google Scholar // There is a single metadata for the containing entity (journal or proceedings) // that's why we use it $result['citation_journal_title']=$this->bib->getField(BOOKTITLE); } // generic if ($this->bib->hasField("doi")) { $result['citation_doi']=$this->bib->getField("doi"); } if ($this->bib->hasField("url")) { $result['citation_pdf_url']=$this->bib->getField("url"); } return $result; } } // ---------------------------------------------------------------------- // DATABASE MANAGEMENT // ---------------------------------------------------------------------- /** * Abstraction of bibliographic database to contain a set of * bibliographic entries and maintain them. */ class BibDataBase { /** A hash table from keys (e.g. Goody1994) to bib entries (BibEntry instances). */ var $bibdb; /** Creates a new database by parsing bib entries from the given * file. */ function load($filename) { $db = new BibDBBuilder($filename); //print_r($parser); $this->bibdb =$db->builtdb; } /** Creates a new empty database */ function BibDataBase() { $this->bibdb = array(); } /** Returns all entries as an array. Each entry is an instance of * class BibEntry. */ function getEntries() { return $this->bibdb; } /** tests wheter the database contains a bib entry with $key */ function contains($key) { return isset($this->bibdb[$key]); } /** Returns all entries categorized by types. The returned value is * a hashtable from types to arrays of bib entries. */ function getEntriesByTypes() { $result = array(); foreach ($this->bibdb as $b) { $result[$b->getType()][] = $b; } return $result; } /** Returns an array containing all the bib types (strings). */ function getTypes() { $result = array(); foreach ($this->bibdb as $b) { $result[$b->getType()] = 1; } $result = array_keys($result); return $result; } /** Generates and returns an array consisting of all authors. * The returned array is a hash table with keys * and values . */ function authorIndex(){ $result = array(); foreach ($this->bibdb as $bib) { foreach($bib->getRawAuthors() as $a){ //we use an array because several authors can have the same lastname @$result[getLastName($a)][$a]++; } } ksort($result); // now authors are sorted by last name // we rebuild a new array for having good keys in author page $realresult = array(); foreach($result as $x) { ksort($x); foreach($x as $v => $tmp) $realresult[$v] = formatAuthor($v); } return $realresult; } /** Generates and returns an array consisting of all tags. */ function tagIndex(){ $result = array(); foreach ($this->bibdb as $bib) { $tags =explode(' and ', $bib->getField("keywords")); foreach($tags as $a){ $ta = trim($a); $result[$ta] = $ta; } } asort($result); return $result; } /** Generates and returns an array consisting of all years. */ function yearIndex(){ $result = array(); foreach ($this->bibdb as $bib) { $year = $bib->getField("year"); $result[$year] = $year; } arsort($result); return $result; } /** Given its ID, return the bib entry. */ function getEntry($id){ foreach($this->bibdb as $bib) { if($bib->getId() == $id) return $bib; } return null; } /** Given its key, return the bib entry. */ function getEntryByKey($key) { return $this->bibdb[$key]; } /** * Returns an array containing all bib entries matching the given * type. */ function searchType($type){ $result = array(); foreach($this->bibdb as $bib) { if($bib->getType() == $type) $result[] = $bib; } return $result; } /** Returns an array of bib entries (BibEntry) that satisfy the query * $query is an hash with entry type as key and searched fragment as value * the returned array is sorted by year */ function multisearch($query) { if (count($query)<1) {return array();} if (isset($query[Q_ALL])) return array_values($this->bibdb); $result = array(); foreach ($this->bibdb as $bib) { $entryisselected = true; foreach ($query as $field => $fragment) { if ($field==Q_SEARCH) { // we search in the whole bib entry if (!$bib->hasPhrase($fragment)) { $entryisselected = false; } } else if ($field==Q_EXCLUDE) { if ($bib->hasPhrase($fragment)) { $entryisselected = false; } } else { if (!$bib->hasPhrase($fragment, $field)) { $entryisselected = false; } } } if ($entryisselected) $result[$bib->getYear().$bib->getKey()] = $bib; } krsort($result); return $result; } } // end class /** A class to wrap contents in an HTML page withe and TITLE */ class HTMLWrapper { /** * $content: an object with a display() method * $title: title of the page */ function HTMLWrapper(&$content,$metatags=array()/* an array name=>value*/) { ?> getRSS()!='') echo ''; ?> $value) echo ''."\n"; ?> <?php echo $content->getTitle(); ?> display();?> display(); } } /** is used to create an subset of a bibtex file */ class BibtexDisplay { /** an array of BibEbtry */ var $results; /** the initial query to get the results */ var $query; function BibtexDisplay(&$results, &$query) { $this->results=$results; $this->query=$query; } function display() { header('Content-type: text/plain; charset='.ENCODING); echo '% '.query2title($this->query)."\n"; echo '% Encoding: '.ENCODING."\n"; foreach($this->results as $bibentry) { echo $bibentry->getText()."\n"; } exit; } } /** is used to create an RSS feed */ class RSSDisplay { /** an array of BibEbtry */ var $results; /** the initial query to get the results */ var $query; function RSSDisplay(&$results, &$query) { $this->results=$results; $this->query=$query; $this->title = query2title($query); } function display() { header('Content-type: application/rss+xml'); echo ''; // ?> <?=$this->title?> http:// bibtexbrowser v20091027 results as $bibentry) { ?> <?=$bibentry->getTitle()?> getURL())?> toString())?> getAbstract())?> getKey()?> wrapper='NoWrapper'; // first pass, we will exit if we encounter key or menu or academic // other wise we just create the $this->query foreach($_GET as $keyword=>$value) { if (method_exists($this,$keyword)) $this->$keyword(); } $this->selectedEntries = $_GET[Q_DB]->multisearch($this->query); //print_r($query);echo count($this->selectedEntries); if (count($this->query)>0) { // required for PHP4 to have this intermediate variable $x = new $this->displayer($this->selectedEntries,$this->query); new $this->wrapper($x); } else $this->frameset(); } function all() { $this->query[Q_ALL]=1; } function rss() { $this->displayer='RSSDisplay'; $this->wrapper='NoWrapper'; } function astext() { $this->displayer='BibtexDisplay'; $this->wrapper='NoWrapper'; } function search() { $this->query[Q_SEARCH]=$_GET[Q_SEARCH]; } function exclude() { $this->query[Q_EXCLUDE]=$_GET[Q_EXCLUDE]; } function year() { $this->query[Q_YEAR]=$_GET[Q_YEAR]; } function keywords() { $this->query[Q_TAG]=$_GET[Q_TAG]; } function author() { $this->query[Q_AUTHOR]=$_GET[Q_AUTHOR]; } function type() { $this->query[Q_TYPE]=$_GET[Q_TYPE]; } function menu() { new MenuManager($_GET[Q_DB]); } /** the academic keyword in URLs switch from a year based viey to a publication type based view */ function academic() { $this->displayer='AcademicDisplay'; // backward compatibility if($_GET[Q_ACADEMIC]!='') { $_GET[Q_AUTHOR]=$_GET[Q_ACADEMIC]; $this->query[Q_AUTHOR]=$_GET[Q_ACADEMIC]; } } function key() { if ($_GET[Q_DB]->contains($_GET[Q_KEY])) { $bibdisplay = new BibEntryDisplay($_GET[Q_DB]->getEntryByKey($_GET[Q_KEY])); new $this->wrapper($bibdisplay,$bibdisplay->metadata()); } else { new NonExistentBibEntryError(); } } /** is used to remotely analyzed a situation */ function diagnosis() { header('Content-type: text/plain'); echo "php version: ".phpversion()."\n"; echo "bibtexbrowser version: 20091027\n"; echo "dir: ".decoct(fileperms(dirname(__FILE__)))."\n"; echo "bibtex file: ".decoct(fileperms($_GET[Q_FILE]))."\n"; exit; } function frameset() { ?> You are browsing <?php echo $_GET[Q_FILE]; ?> with bibtexbrowser