Fork of bibtexbrowser for static publications lists on the website of the ZRD Saar
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
426 B

  1. <?php
  2. // a command line interface for bibtexbrowser
  3. // example: php bibtexbrowser-cli.php test_cli.bib --id classical --set-title "a new title"
  4. $_GET['library']=1;
  5. function createBibEntry() { $x = new RawBibEntry(); return $x;}
  6. require('bibtexbrowser.php');
  7. bibtexbrowser_configure('BIBTEXBROWSER_BIBTEX_VIEW','reconstructed');
  8. bibtexbrowser_configure('BIBTEXBROWSER_BIBTEX_VIEW_FILTEREDOUT','');
  9. bibtexbrowser_cli($argv);
  10. ?>