From 8fce6c7d3d5a661b87ed21fe9f3ed6675ba74eb5 Mon Sep 17 00:00:00 2001 From: Igor Date: Mon, 8 Nov 2010 23:23:51 +0300 Subject: Added method to export sorted BiBTeX --- README | 4 ---- bibtex.php | 31 +++++++++++++++++++++++++++++++ test.php | 11 +++-------- 3 files changed, 34 insertions(+), 12 deletions(-) diff --git a/README b/README index 23f95fd..5ab9e1b 100644 --- a/README +++ b/README @@ -9,10 +9,6 @@ It introduces two syntax extentions for Dokuwiki: Raw BiBTeX data -1.1 Notes - -For final output to be valid XHTML -no empty line are allowed before diff --git a/bibtex.php b/bibtex.php index 13796e9..7f36063 100644 --- a/bibtex.php +++ b/bibtex.php @@ -185,6 +185,37 @@ class BibtexParser } + /* + * Export sorted BiBTeX. + * Do not use after $this->expand_years() + * + */ + public function export() + { + $res = ''; + $this->sort(); + foreach ($this->STRINGS as $key => $value) + { + $res .= '@STRING (' . $key . '="' . $value . '")' . "\n"; + } + + $res .= "\n\n"; + + foreach ($this->ENTRIES as $ent) + { + $res .= '@' . mb_strtoupper($ent['entry']) . ' {' . $ent['id'] . ",\n"; + $fields = array(); + foreach($ent as $key => $value) + { + // Skip our special fields + if (!in_array($key, array('id', 'entry'))) + $fields[] = mb_strtoupper($key) . '=' . $value; + } + $res .= implode(",\n", $fields); + $res .= "\n}\n\n"; + } + return $res; + } } diff --git a/test.php b/test.php index f6d51f7..9ef35df 100644 --- a/test.php +++ b/test.php @@ -1,15 +1,10 @@ read_file('example.bib'); -$bibtex->select(array( - 'author' => '/pashev/', - )); +$bibtex = new BibtexParserTeam(); +$bibtex->read_file('1.bib'); +print $bibtex->export(); -print_r($bibtex->STRINGS); -print_r($bibtex->SELECTION); - ?> -- cgit v1.2.3