Browse Source

removed page title from embedded mode, the resulting code is cleaner

replace/c24a8d1de403113542ba0936e844151de2785013
Martin Monperrus 14 years ago
parent
commit
bd0cc260a4
  1. 12
      bibtexbrowser.php

12
bibtexbrowser.php

@ -1872,9 +1872,6 @@ class PagedDisplay extends BibtexBrowserDisplay {
$this->noPages = ceil(count($this->result) / PAGE_SIZE); $this->noPages = ceil(count($this->result) / PAGE_SIZE);
/** Displays the header stringg. */
echo $this->formatedHeader();
if ($this->noPages>1) $this->displayPageBar($this->noPages, $page); if ($this->noPages>1) $this->displayPageBar($this->noPages, $page);
$this->startIndex = ($page - 1) * PAGE_SIZE; $this->startIndex = ($page - 1) * PAGE_SIZE;
@ -2072,7 +2069,6 @@ class AcademicDisplay extends BibtexBrowserDisplay {
} }
function display() { function display() {
echo $this->formatedHeader();
foreach (_DefaultBibliographySections() as $section) { foreach (_DefaultBibliographySections() as $section) {
$this->search2html($section['query'],$section['title']); $this->search2html($section['query'],$section['title']);
} }
@ -2113,7 +2109,6 @@ class BibEntryDisplay extends BibtexBrowserDisplay {
// we encapsulate everything so that the output of display() is still valid XHTML // we encapsulate everything so that the output of display() is still valid XHTML
echo '<div>'; echo '<div>';
echo $this->bib->toCoins(); echo $this->bib->toCoins();
echo $this->formatedHeader();
echo $this->bib->toEntryUnformatted(); echo $this->bib->toEntryUnformatted();
//echo $this->bib->getUrlLink(); //echo $this->bib->getUrlLink();
echo $this->poweredby(); echo $this->poweredby();
@ -2579,7 +2574,11 @@ function bibtexbrowserDefaultCSS() {
withe <HTML><BODY> and TITLE */ withe <HTML><BODY> and TITLE */
class HTMLWrapper { class HTMLWrapper {
/** /**
* $content: an object with a display() method
* $content: an object with methods
display()
getRSS()
formatedHeader()
getTitle()
* $title: title of the page * $title: title of the page
*/ */
function HTMLWrapper(&$content,$metatags=array()/* an array name=>value*/) { function HTMLWrapper(&$content,$metatags=array()/* an array name=>value*/) {
@ -2618,6 +2617,7 @@ echo "\n".' --></style>';
?> ?>
</head> </head>
<body> <body>
<?php echo $content->formatedHeader();?>
<?php $content->display();?> <?php $content->display();?>
</body> </body>
</html> </html>

Loading…
Cancel
Save