$feed->creator($host);
$feed->update_ts(gmtime_ISO8601());
- $feed->link(rss => $base . "/rss2/$id" => 'application/rss+xml');
- $feed->link(alternate => $base . "/atom/$id" => 'application/atom+xml');
- $feed->link(html => $base . "/html/$id" => 'text/html');
+ $feed->link(rss => $base . "/rss2-full/$id" => 'application/rss+xml');
+ $feed->link(alternate => $base . "/atom-full/$id" => 'application/atom+xml');
+ $feed->link(html => $base . "/html-full/$id" => 'text/html');
$feed->link(unapi => $unapi);
$feed->link(
$feed->creator($host);
$feed->update_ts(gmtime_ISO8601());
- $feed->link(rss => $base . "/rss2/$rtype/$axis/$limit/$date" => 'application/rss+xml');
- $feed->link(alternate => $base . "/atom/$rtype/$axis/$limit/$date" => 'application/atom+xml');
- $feed->link(html => $base . "/html/$rtype/$axis/$limit/$date" => 'text/html');
+ $feed->link(rss => $base . "/rss2-full/$rtype/$axis/$limit/$date" => 'application/rss+xml');
+ $feed->link(alternate => $base . "/atom-full/$rtype/$axis/$limit/$date" => 'application/atom+xml');
+ $feed->link(html => $base . "/html-full/$rtype/$axis/$limit/$date" => 'text/html');
$feed->link(unapi => $unapi);
$feed->link(
<Description>Search the $lib OPAC by $class.</Description>
<Tags>$lib book library</Tags>
<Url type="application/rss+xml"
- template="$base/1.1/$lib/rss2/$class/?searchTerms={searchTerms}&startPage={startPage?}&startIndex={startIndex?}&count={count?}&searchLang={language?}"/>
+ template="$base/1.1/$lib/rss2-full/$class/?searchTerms={searchTerms}&startPage={startPage?}&startIndex={startIndex?}&count={count?}&searchLang={language?}"/>
<Url type="application/atom+xml"
- template="$base/1.1/$lib/atom/$class/?searchTerms={searchTerms}&startPage={startPage?}&startIndex={startIndex?}&count={count?}&searchLang={language?}"/>
+ template="$base/1.1/$lib/atom-full/$class/?searchTerms={searchTerms}&startPage={startPage?}&startIndex={startIndex?}&count={count?}&searchLang={language?}"/>
<Url type="application/x-mods3+xml"
template="$base/1.1/$lib/mods3/$class/?searchTerms={searchTerms}&startPage={startPage?}&startIndex={startIndex?}&count={count?}&searchLang={language?}"/>
<Url type="application/x-mods+xml"
if( isTrue(cont.pub()) ) {
unHideMe($n(row, 'myopac_bb_published_yes'));
var link = $n(row, 'myopac_bb_published_view');
- link.setAttribute('href', buildExtrasLink( 'feed/bookbag/html/'+cont.id(), false));
+ link.setAttribute('href', buildExtrasLink( 'feed/bookbag/html-full/'+cont.id(), false));
link.setAttribute('target', '_blank' );
unHideMe(link);
link = $n(row, 'myopac_bb_published_atom');
- link.setAttribute('href', buildExtrasLink( 'feed/bookbag/rss2/'+cont.id(), false));
+ link.setAttribute('href', buildExtrasLink( 'feed/bookbag/atom-full/'+cont.id(), false));
link.setAttribute('target', '_blank' );
unHideMe(link);