Diff -- /var/www/vhosts/webstls.com/httpdocs/tour.cgi
Diff

/var/www/vhosts/webstls.com/httpdocs/tour.cgi

added on WebSTLs (webstls.com) at 2026-07-01 22:27:08

Added
+9
lines
Removed
-0
lines
Context
0
unchanged
Blobs
from
to 897fc8d4fd22
Restore this content →
Unified diff
Naive LCS-based line diff. Additions in emerald, deletions in rose. Both sides decompressed live from BLOB_STORE.
1#!/usr/bin/perl
2use strict; use warnings;
3use lib '/var/www/vhosts/webstls.com/httpdocs';
4use CGI; use MODS::Template; use MODS::Login; use MODS::WebSTLs::Wrapper;
5my $auth = MODS::Login->new; my $wrap = MODS::WebSTLs::Wrapper->new; my $tfile = MODS::Template->new;
6$|=1; my $userinfo = $auth->login_verify();
7print "Content-Type: text/html; charset=utf-8\nCache-Control: no-store, no-cache, must-revalidate, max-age=0\nPragma: no-cache\nExpires: 0\n\n";
8my $body = join('', $tfile->template('webstls_tour.html', {}, $userinfo));
9$wrap->render({ userinfo => $userinfo, title => 'Product tour', body => $body });
Keyboard: j next diff k previous diff g top G bottom r restore c compile-check ? help