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 18372 May 6, 2001, 5:24 AM
Post Re: Where to find?
Paul 17291 May 6, 2001, 6:27 AM
Thread Re: Where to find?
Stealth 17589 May 6, 2001, 8:35 AM
Thread Re: Where to find?
GUYc 17300 May 7, 2001, 6:30 AM
Thread Re: Where to find?
glennu 17304 May 7, 2001, 6:36 AM
Thread Re: Where to find?
Alfred 17356 May 7, 2001, 7:10 AM
Thread Re: Where to find?
Stealth 17358 May 7, 2001, 7:17 AM
Thread Re: Where to find?
GUYc 17324 May 7, 2001, 8:02 AM
Thread Re: Where to find?
GUYc 17380 May 7, 2001, 8:07 AM
Post Re: Where to find?
glennu 17367 May 7, 2001, 8:43 AM
Thread Re: Where to find?
Stealth 17254 May 7, 2001, 8:43 AM
Thread Re: Where to find?
Thomas. 17276 May 7, 2001, 9:15 AM
Thread Re: Where to find?
sponge 17526 May 7, 2001, 10:26 AM
Post Re: Where to find?
GUYc 17278 May 9, 2001, 12:48 AM
Thread Re: Where to find?
Andy 17242 May 9, 2001, 4:02 AM
Thread Re: Where to find?
sponge 17229 May 9, 2001, 11:28 AM
Thread Re: Where to find?
Andy 17140 May 10, 2001, 4:53 AM
Thread Re: Where to find?
sponge 17064 May 10, 2001, 10:09 AM
Thread Re: Where to find?
Alfred 17136 May 11, 2001, 4:49 PM
Thread Re: Where to find?
sponge 17119 May 12, 2001, 1:42 AM
Thread Re: Where to find?
GUYc 17085 May 12, 2001, 8:19 AM
Post Re: Where to find?
sponge 17016 May 12, 2001, 8:45 AM
Thread Re: Where to find?
stone 17082 May 12, 2001, 8:49 AM
Thread Re: Where to find?
sponge 17152 May 12, 2001, 9:09 AM
Post Re: Where to find?
stone 16940 May 12, 2001, 9:12 AM
Thread Re: Where to find?
stone 11652 May 12, 2001, 10:13 AM
Thread Re: Where to find?
Stealth 11597 May 12, 2001, 10:17 AM
Post Re: Where to find?
stone 11507 May 12, 2001, 11:28 AM
Thread Re: Where to find?
Alfred 11599 May 12, 2001, 3:38 PM
Thread Re: Where to find?
GUYc 11575 May 12, 2001, 11:17 PM
Thread Re: Where to find?
sponge 11657 May 13, 2001, 12:39 AM
Thread Re: Where to find?
GUYc 11524 May 13, 2001, 7:00 AM
Thread Re: Where to find?
GUYc 11702 May 13, 2001, 7:02 AM
Post Re: Where to find?
glennu 11473 May 13, 2001, 8:32 AM
Thread Re: Where to find?
sponge 11359 May 13, 2001, 9:18 PM
Thread Re: Where to find?
GUYc 11254 May 18, 2001, 10:04 AM
Thread Re: Where to find?
sponge 11330 May 18, 2001, 11:14 AM
Post Re: Where to find?
Alfred 11307 May 18, 2001, 2:39 PM
Thread Re: Where to find?
GUYc 11231 May 18, 2001, 11:40 PM
Thread Re: Where to find?
sponge 11256 May 18, 2001, 11:58 PM
Thread Re: Where to find?
GUYc 11230 May 19, 2001, 6:18 AM
Thread Re: Where to find?
GUYc 11142 May 22, 2001, 7:40 AM
Thread Re: Where to find?
sponge 11240 May 22, 2001, 8:22 AM
Thread Re: Where to find?
GUYc 11341 May 22, 2001, 11:01 PM
Thread Re: Where to find?
sponge 11143 May 23, 2001, 7:04 AM
Thread Re: Where to find?
GUYc 11132 May 23, 2001, 10:39 AM
Post Re: Where to find?
Paul 11042 May 23, 2001, 1:46 PM
Thread Re: Where to find?
sponge 11294 May 23, 2001, 1:55 PM
Post Re: Where to find?
GUYc 11081 May 23, 2001, 9:28 PM
Thread Re: Where to find?
GUYc 8186 May 24, 2001, 9:54 PM
Thread Re: Where to find?
sponge 8024 May 25, 2001, 9:19 AM
Post Re: Where to find?
GUYc 7929 May 30, 2001, 11:44 AM
Post Re: [sponge] Where to find?
jigme 7559 Sep 23, 2003, 3:15 AM
Post Suggestion...
Stealth 11497 May 12, 2001, 11:46 AM
Thread Re: [King Junko II] Where to find?
rexxx 7831 Jan 24, 2002, 10:48 AM
Thread Re: [rexxx] Where to find?
sponge 7771 Jan 24, 2002, 1:08 PM
Thread Re: [King Junko II] Where to find?
rexxx 7826 Jan 24, 2002, 1:23 PM
Thread Re: [rexxx] Where to find?
rexxx 7971 Jan 26, 2002, 7:30 AM
Post Re: [rexxx] Where to find?
sponge 7784 Jan 26, 2002, 8:53 AM
Thread Re: [sponge] Where to find?
jigme 7695 Aug 24, 2003, 11:53 AM
Thread Re: [jigme] Where to find?
sponge 7806 Aug 24, 2003, 8:44 PM
Thread Re: [sponge] Where to find?
jigme 7646 Aug 25, 2003, 4:12 AM
Thread Re: [jigme] Where to find?
fuzzy logic 7617 Aug 25, 2003, 6:12 AM
Post Re: [fuzzy logic] Where to find?
jigme 7656 Aug 25, 2003, 1:50 PM
Thread Re: [sponge] Where to find?
jigme 7614 Aug 27, 2003, 4:59 AM
Post Re: [jigme] Where to find?
fuzzy logic 7589 Aug 27, 2003, 11:59 PM