Gossamer Forum
Home : Products : Links 2.0 : Customization :

Re: Where to find?

Quote Reply
Re: Where to find? In reply to
Do you mean a 'bookmark' sidebar on your main Links index page, rather than going to portal.cgi to view the links? If so, than it's quite simple...

off the top of my head...

add a parameter to the top of the script...
Code:
if (param('ssi') { &ssi(); }
Then add this:
Code:
sub ssi {
my $max = 5;
my @links = split /\|/, $old;
my (@display, $output);
open (LINKS, "$db_lib_path/data/links.db") or die $!;
while () {
chomp (my $record = $_);
foreach (@links) {
$record =~ /^$_\|/ or next;
my @values = split /\|/, $record;
push @display, [ @values ];
}
}
close (LINKS);
my $saved = $#display + 1;
my $links = '';
my $i = 0;
foreach (sort { ${$a}[$db_title] cmp ${$b}[$db_title] } @display) {
my %rec = &array_to_hash(0, @{$_});
$links .= &load_template ("bookmark_link.html", { %rec, %globals });
$i++;
last if ($i = $max);
}
print header();
print &load_template("bookmark_home.html", {
'saved' => $saved,
'links' => $links,
%globals
});
}
That should display the first 5 saved links, alphabeticly. The code could be a little off because I've been reworking 1.0 a lot.

--Drew
Free, hot camel soup for Links hackers...
http://www.camelsoup.com
Subject Author Views Date
Thread Where to find? GUYc 18137 May 6, 2001, 5:24 AM
Post Re: Where to find?
Paul 17056 May 6, 2001, 6:27 AM
Thread Re: Where to find?
Stealth 17355 May 6, 2001, 8:35 AM
Thread Re: Where to find?
GUYc 17066 May 7, 2001, 6:30 AM
Thread Re: Where to find?
glennu 17070 May 7, 2001, 6:36 AM
Thread Re: Where to find?
Alfred 17122 May 7, 2001, 7:10 AM
Thread Re: Where to find?
Stealth 17124 May 7, 2001, 7:17 AM
Thread Re: Where to find?
GUYc 17090 May 7, 2001, 8:02 AM
Thread Re: Where to find?
GUYc 17146 May 7, 2001, 8:07 AM
Post Re: Where to find?
glennu 17133 May 7, 2001, 8:43 AM
Thread Re: Where to find?
Stealth 17020 May 7, 2001, 8:43 AM
Thread Re: Where to find?
Thomas. 17042 May 7, 2001, 9:15 AM
Thread Re: Where to find?
sponge 17292 May 7, 2001, 10:26 AM
Post Re: Where to find?
GUYc 17044 May 9, 2001, 12:48 AM
Thread Re: Where to find?
Andy 17006 May 9, 2001, 4:02 AM
Thread Re: Where to find?
sponge 16995 May 9, 2001, 11:28 AM
Thread Re: Where to find?
Andy 16906 May 10, 2001, 4:53 AM
Thread Re: Where to find?
sponge 16830 May 10, 2001, 10:09 AM
Thread Re: Where to find?
Alfred 16901 May 11, 2001, 4:49 PM
Thread Re: Where to find?
sponge 16884 May 12, 2001, 1:42 AM
Thread Re: Where to find?
GUYc 16851 May 12, 2001, 8:19 AM
Post Re: Where to find?
sponge 16782 May 12, 2001, 8:45 AM
Thread Re: Where to find?
stone 16848 May 12, 2001, 8:49 AM
Thread Re: Where to find?
sponge 16918 May 12, 2001, 9:09 AM
Post Re: Where to find?
stone 16706 May 12, 2001, 9:12 AM
Thread Re: Where to find?
stone 11461 May 12, 2001, 10:13 AM
Thread Re: Where to find?
Stealth 11406 May 12, 2001, 10:17 AM
Post Re: Where to find?
stone 11316 May 12, 2001, 11:28 AM
Thread Re: Where to find?
Alfred 11408 May 12, 2001, 3:38 PM
Thread Re: Where to find?
GUYc 11384 May 12, 2001, 11:17 PM
Thread Re: Where to find?
sponge 11466 May 13, 2001, 12:39 AM
Thread Re: Where to find?
GUYc 11333 May 13, 2001, 7:00 AM
Thread Re: Where to find?
GUYc 11511 May 13, 2001, 7:02 AM
Post Re: Where to find?
glennu 11282 May 13, 2001, 8:32 AM
Thread Re: Where to find?
sponge 11168 May 13, 2001, 9:18 PM
Thread Re: Where to find?
GUYc 11063 May 18, 2001, 10:04 AM
Thread Re: Where to find?
sponge 11139 May 18, 2001, 11:14 AM
Post Re: Where to find?
Alfred 11116 May 18, 2001, 2:39 PM
Thread Re: Where to find?
GUYc 11040 May 18, 2001, 11:40 PM
Thread Re: Where to find?
sponge 11065 May 18, 2001, 11:58 PM
Thread Re: Where to find?
GUYc 11039 May 19, 2001, 6:18 AM
Thread Re: Where to find?
GUYc 10951 May 22, 2001, 7:40 AM
Thread Re: Where to find?
sponge 11049 May 22, 2001, 8:22 AM
Thread Re: Where to find?
GUYc 11149 May 22, 2001, 11:01 PM
Thread Re: Where to find?
sponge 10952 May 23, 2001, 7:04 AM
Thread Re: Where to find?
GUYc 10941 May 23, 2001, 10:39 AM
Post Re: Where to find?
Paul 10850 May 23, 2001, 1:46 PM
Thread Re: Where to find?
sponge 11103 May 23, 2001, 1:55 PM
Post Re: Where to find?
GUYc 10890 May 23, 2001, 9:28 PM
Thread Re: Where to find?
GUYc 8085 May 24, 2001, 9:54 PM
Thread Re: Where to find?
sponge 7925 May 25, 2001, 9:19 AM
Post Re: Where to find?
GUYc 7830 May 30, 2001, 11:44 AM
Post Re: [sponge] Where to find?
jigme 7460 Sep 23, 2003, 3:15 AM
Post Suggestion...
Stealth 11306 May 12, 2001, 11:46 AM
Thread Re: [King Junko II] Where to find?
rexxx 7732 Jan 24, 2002, 10:48 AM
Thread Re: [rexxx] Where to find?
sponge 7672 Jan 24, 2002, 1:08 PM
Thread Re: [King Junko II] Where to find?
rexxx 7727 Jan 24, 2002, 1:23 PM
Thread Re: [rexxx] Where to find?
rexxx 7872 Jan 26, 2002, 7:30 AM
Post Re: [rexxx] Where to find?
sponge 7685 Jan 26, 2002, 8:53 AM
Thread Re: [sponge] Where to find?
jigme 7595 Aug 24, 2003, 11:53 AM
Thread Re: [jigme] Where to find?
sponge 7707 Aug 24, 2003, 8:44 PM
Thread Re: [sponge] Where to find?
jigme 7547 Aug 25, 2003, 4:12 AM
Thread Re: [jigme] Where to find?
fuzzy logic 7518 Aug 25, 2003, 6:12 AM
Post Re: [fuzzy logic] Where to find?
jigme 7556 Aug 25, 2003, 1:50 PM
Thread Re: [sponge] Where to find?
jigme 7514 Aug 27, 2003, 4:59 AM
Post Re: [jigme] Where to find?
fuzzy logic 7490 Aug 27, 2003, 11:59 PM