checked in the Claude retraining examples in case I need to start yet another new conversation
This commit is contained in:
@@ -0,0 +1,202 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>My Front Page - Venice Test</title>
|
||||
<link rel="icon" href="http://necrovenice:8080/venice/images/venice-icon.png" type="image/png">
|
||||
<link rel="shortcut icon" href="http://necrovenice:8080/venice/images/venice-favicon.ico">
|
||||
<meta http-equiv="refresh" content="300">
|
||||
<script src="https://cdn.tailwindcss.com"></script>
|
||||
</head>
|
||||
|
||||
<body class="bg-blue-400 font-sans">
|
||||
<!-- PAGE HEADER -->
|
||||
<div class="bg-blue-600 w-full">
|
||||
<div class="flex items-center justify-between px-2 py-2">
|
||||
<!-- Site Logo -->
|
||||
<div class="w-1/5">
|
||||
<a href="http://venice.sourceforge.net/">
|
||||
<img src="./venice-frontpage_files/powered-by-venice.gif"
|
||||
alt="Venice Test"
|
||||
class="w-35 h-20 mx-2 my-2">
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<!-- Navigation Links -->
|
||||
<div class="w-2/5 text-center">
|
||||
<div class="text-white font-bold text-base mb-2">
|
||||
<a href="http://necrovenice:8080/venice/top.js.vs" class="text-yellow-300 hover:text-yellow-400">
|
||||
Front Page
|
||||
</a>
|
||||
</div>
|
||||
<div class="text-white font-bold text-base">
|
||||
<a href="http://necrovenice:8080/TODO" class="text-yellow-300 hover:text-yellow-400">Help</a>
|
||||
<span class="mx-2">|</span>
|
||||
<a href="http://necrovenice:8080/venice/find.js.vs" class="text-yellow-300 hover:text-yellow-400">Find</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Banner Ad -->
|
||||
<div class="w-2/5 flex justify-end">
|
||||
<img src="./venice-frontpage_files/midler.gif"
|
||||
alt=""
|
||||
class="w-96 h-15 mx-2 my-2">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Login Section -->
|
||||
<div class="bg-blue-600 text-center py-2">
|
||||
<span class="text-white text-base">
|
||||
You are not logged in
|
||||
<span class="mx-2">-</span>
|
||||
<a href="http://necrovenice:8080/venice/login.js.vs?tgt=top.js.vs"
|
||||
class="text-yellow-300 hover:text-yellow-400">Log In</a>
|
||||
<span class="mx-2">|</span>
|
||||
<a href="http://necrovenice:8080/venice/new_account.js.vs?tgt=top.js.vs"
|
||||
class="text-yellow-300 hover:text-yellow-400">Create Account</a>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- MAIN CONTENT AREA -->
|
||||
<div class="flex">
|
||||
<!-- LEFT SIDEBAR -->
|
||||
<div class="w-32 bg-blue-400 p-2">
|
||||
<div class="mb-4">
|
||||
<div class="text-black text-sm">
|
||||
<div class="font-bold mb-1">Front Page</div>
|
||||
<div class="text-gray-500 mb-1">Calendar</div>
|
||||
<div class="text-gray-500">Chat</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="mt-4">
|
||||
<div class="text-black text-sm">
|
||||
<div class="font-bold mb-1">About This Site</div>
|
||||
<div class="text-gray-500 mb-1">Documentation</div>
|
||||
<a href="http://necrovenice:8080/venice/frame/about-venice.html"
|
||||
class="text-blue-700 hover:text-blue-900">About Venice</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- MAIN CONTENT -->
|
||||
<div class="flex-1 bg-white">
|
||||
<div class="flex">
|
||||
<!-- Content Area -->
|
||||
<div class="flex-1 p-4">
|
||||
<!-- Welcome Section -->
|
||||
<div class="mb-8">
|
||||
<h1 class="text-blue-800 text-4xl font-bold mb-2">Welcome to Venice</h1>
|
||||
<hr class="border-2 border-gray-400 w-4/5 mb-4">
|
||||
<p class="text-black text-sm mb-4">
|
||||
Welcome to the <strong>Venice Web Communities System</strong>. To get the most out of this site, you should log in or create an account, using one of the links above.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<!-- Venice Currents Section -->
|
||||
<div>
|
||||
<h2 class="text-blue-800 text-4xl font-bold mb-2">Venice Currents</h2>
|
||||
<hr class="border-2 border-gray-400 w-4/5 mb-4">
|
||||
|
||||
<div class="text-black text-sm">
|
||||
<div class="mb-2">
|
||||
<strong>Amy, formerly Eric</strong>
|
||||
(<em>
|
||||
<a href="http://necrovenice:8080/venice/user/Administrator"
|
||||
target="_blank"
|
||||
class="text-blue-700 hover:text-blue-900">Administrator</a>,
|
||||
Sep 8, 2025 5:17:02 PM
|
||||
</em>)
|
||||
</div>
|
||||
<pre class="mb-4 whitespace-pre-wrap">This is a test.
|
||||
This is only a test.
|
||||
If this had been an <em>actual</em> emergency, we would all be
|
||||
dead by now.</pre>
|
||||
<div class="text-xs italic">
|
||||
(From the topic: <a href="http://necrovenice:8080/venice/go/Piazza!General.1"
|
||||
class="text-blue-700 hover:text-blue-900">It Works Again!</a>)
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- RIGHT SIDEBAR -->
|
||||
<div class="w-52 p-4">
|
||||
<!-- Featured Communities -->
|
||||
<div class="mb-4">
|
||||
<div class="bg-blue-600 px-2 py-1 rounded-t">
|
||||
<h3 class="text-white font-bold text-base">Featured Communities:</h3>
|
||||
</div>
|
||||
<div class="bg-blue-400 px-2 py-2 rounded-b">
|
||||
<div class="flex items-center">
|
||||
<span class="mr-2">🟣</span>
|
||||
<a href="http://necrovenice:8080/venice/community/Piazza"
|
||||
class="text-blue-700 hover:text-blue-900 font-bold text-sm">La Piazza</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Featured Conferences -->
|
||||
<div class="mb-4">
|
||||
<div class="bg-blue-600 px-2 py-1 rounded-t">
|
||||
<h3 class="text-white font-bold text-base">Featured Conferences:</h3>
|
||||
</div>
|
||||
<div class="bg-blue-400 px-2 py-2 rounded-b">
|
||||
<div class="flex items-center">
|
||||
<span class="mr-2">🟣</span>
|
||||
<div class="text-sm">
|
||||
<a href="http://necrovenice:8080/venice/conf/topics.js.vs?sig=2&conf=2"
|
||||
class="text-blue-700 hover:text-blue-900 font-bold">General Discussion</a>
|
||||
<span class="text-black"> (La Piazza)</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Users Online -->
|
||||
<div class="mb-4">
|
||||
<div class="bg-blue-600 px-2 py-1 rounded-t">
|
||||
<h3 class="text-white font-bold text-base">Users Online:</h3>
|
||||
</div>
|
||||
<div class="bg-blue-400 px-2 py-2 rounded-b">
|
||||
<div class="text-black text-sm font-bold mb-2">1 total (max 1)</div>
|
||||
<div class="flex items-center">
|
||||
<span class="mr-2">🟣</span>
|
||||
<span class="text-black text-sm">Not logged in (1)</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- FOOTER -->
|
||||
<div class="flex">
|
||||
<div class="w-32 bg-blue-400"> </div>
|
||||
<div class="flex-1 bg-white p-4">
|
||||
<hr class="border-gray-400 w-4/5 mx-auto mb-4">
|
||||
<div class="flex justify-center items-start gap-6">
|
||||
<div class="text-right text-xs text-black leading-relaxed">
|
||||
All trademarks and copyrights on this page are owned by their respective companies.<br>
|
||||
All messages posted by users on this page are owned by those users.<br>
|
||||
The rest: Copyright © 2001-2006
|
||||
<a href="http://www.silverwrist.com/" class="text-blue-700 hover:text-blue-900">Silverwrist Design Studios</a>,
|
||||
All Rights Reserved.<br>
|
||||
See our <a href="http://necrovenice:8080/TODO" class="text-blue-700 hover:text-blue-900">Policy Page</a>
|
||||
for our copyright and privacy policies.
|
||||
</div>
|
||||
<div class="flex-shrink-0">
|
||||
<a href="http://venice.users.sf.net/" target="_blank">
|
||||
<img src="./venice-frontpage_files/powered-by-venice.gif"
|
||||
alt="Powered By Venice"
|
||||
class="w-32 h-26">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,188 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- saved from url=(0084)http://necrovenice:8080/venice/top.js.vs;jsessionid=4370F96FEE2DF6F1C995ABED5305D971 -->
|
||||
<html><head><meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
|
||||
<title>My Front Page - Venice Test</title>
|
||||
<basefont face="Arial, Helvetica" size="3">
|
||||
<link rel="stylesheet" href="./venice-frontpage_files/stylesheet" type="text/css">
|
||||
<link rel="icon" href="http://necrovenice:8080/venice/images/venice-icon.png" type="image/png">
|
||||
<link rel="SHORTCUT ICON" href="http://necrovenice:8080/venice/images/venice-favicon.ico">
|
||||
<meta name="MSSmartTagsPreventParsing" content="TRUE">
|
||||
<meta http-equiv="refresh" content="300">
|
||||
</head>
|
||||
|
||||
|
||||
<body bgcolor="#9999FF">
|
||||
<!-- BEGIN PAGE HEADER -->
|
||||
<table class="tbar" border="0" bgcolor="#6666CC" width="100%" cellpadding="2" cellspacing="0">
|
||||
<tbody><tr valign="middle">
|
||||
<td align="left" width="20%" cellpadding="2" class="tbar">
|
||||
<!-- Site logo -->
|
||||
<a href="http://venice.sourceforge.net/"><img src="./venice-frontpage_files/powered-by-venice.gif" alt="Venice Test" width="140" height="80" hspace="2" vspace="2" border="0"></a>
|
||||
</td>
|
||||
|
||||
<td align="center" width="30%" cellpadding="2" class="tbar"><font face="Arial, Helvetica" color="white" size="3"><b>
|
||||
<!-- Links to Front Page, Help, Find -->
|
||||
<a class="tbar" href="http://necrovenice:8080/venice/top.js.vs"><font face="Arial, Helvetica" color="yellow">Front Page</font>
|
||||
</a></b></font><p><font face="Arial, Helvetica" color="white" size="3"><b>
|
||||
<a class="tbar" href="http://necrovenice:8080/TODO"><font face="Arial, Helvetica" color="yellow">Help</font></a>
|
||||
|
|
||||
<a class="tbar" href="http://necrovenice:8080/venice/find.js.vs"><font face="Arial, Helvetica" color="yellow">Find</font></a>
|
||||
</b></font></p></td>
|
||||
|
||||
<td align="right" width="50%" cellpadding="2" class="tbar">
|
||||
<!-- Banner Ad -->
|
||||
<img src="./venice-frontpage_files/midler.gif" alt="" title="" align="right" width="468" height="60" hspace="2" vspace="2" border="0">
|
||||
</td>
|
||||
</tr>
|
||||
<!-- Login reminders -->
|
||||
<tr valign="middle"><td align="center" colspan="3" class="tbar"><font face="Arial, Helvetica" color="white" size="3">
|
||||
|
||||
|
||||
You are not logged in
|
||||
|
||||
-
|
||||
<a class="tbar" href="http://necrovenice:8080/venice/login.js.vs?tgt=top.js.vs"><font face="Arial, Helvetica" color="yellow">Log In</font></a>
|
||||
|
|
||||
<a class="tbar" href="http://necrovenice:8080/venice/new_account.js.vs?tgt=top.js.vs"><font face="Arial, Helvetica" color="yellow">Create Account</font></a>
|
||||
|
||||
|
||||
</font></td></tr>
|
||||
</tbody></table>
|
||||
<!-- END PAGE HEADER -->
|
||||
|
||||
<table border="0" width="100%" cellpadding="2" cellspacing="0">
|
||||
<tbody><tr valign="top">
|
||||
<td align="left" width="120" class="lbar" bgcolor="#9999FF">
|
||||
<table align="left" width="120" cellpadding="0" cellspacing="0">
|
||||
<!-- BEGIN LEFT SIDEBAR -->
|
||||
<tbody><tr valign="top"><td align="left" class="lbar"><font face="Arial, Helvetica" color="black" size="2">
|
||||
<!-- variable menu -->
|
||||
<b>Front Page</b><br><font color="silver">Calendar</font><br><font color="silver">Chat</font><br>
|
||||
</font></td></tr>
|
||||
|
||||
<tr valign="top"><td align="left"> </td></tr>
|
||||
<tr valign="top"><td align="left" class="lbar"><font face="Arial, Helvetica" color="black" size="2">
|
||||
<!-- fixed menu -->
|
||||
<b>About This Site</b><br><font color="silver">Documentation</font><br><a href="http://necrovenice:8080/venice/frame/about-venice.html" class="lbar"><font color="blue">About Venice</font></a><br>
|
||||
</font></td></tr>
|
||||
|
||||
<!-- END LEFT SIDEBAR -->
|
||||
|
||||
</tbody></table>
|
||||
</td>
|
||||
|
||||
<td align="left" width="100%" bgcolor="white" class="content">
|
||||
<!-- BEGIN PAGE CONTENT -->
|
||||
<table border="0" align="center" width="100%" cellpadding="4" cellspacing="0">
|
||||
<tbody><tr valign="top"><td align="left">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- Top Content Panel -->
|
||||
|
||||
|
||||
|
||||
<span class="chead1"><font face="Arial, Helvetica" color="#3333AA" size="5"><b>Welcome to Venice</b></font></span><hr align="left" size="2" width="90%" noshade="noshade">
|
||||
|
||||
<font face="Arial, Helvetica" color="black" size="2">Welcome to the <b>Venice Web Communities System</b>. To get the most out of this site, you should log in
|
||||
or create an account, using one of the links above.</font><p>
|
||||
|
||||
|
||||
|
||||
<span class="chead1"><font face="Arial, Helvetica" color="#3333AA" size="5"><b>Venice Currents</b></font></span></p><hr align="left" size="2" width="90%" noshade="noshade">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<font face="Arial, Helvetica" color="black" size="2">
|
||||
<b>Amy, formerly Eric</b>
|
||||
(<em>
|
||||
<a href="http://necrovenice:8080/venice/user/Administrator" target="_blank">Administrator</a>,
|
||||
Sep 8, 2025 5:17:02 PM
|
||||
</em>)
|
||||
<p>
|
||||
</p><pre>This is a test.
|
||||
This is only a test.
|
||||
If this had been an <i>actual</i> emergency, we would all be
|
||||
dead by now.</pre>
|
||||
</font><p><font face="Arial, Helvetica" color="black" size="2">
|
||||
<font size="-1"><em>(From the topic: <a href="http://necrovenice:8080/venice/go/Piazza!General.1">It Works Again!</a>)</em></font><br>
|
||||
</font>
|
||||
|
||||
|
||||
|
||||
|
||||
</p></td>
|
||||
<td align="center" width="210"><table border="0" cellpadding="0" cellspacing="0">
|
||||
<tbody><tr valign="top"><td align="center"><table align="center" width="200" border="0" cellpadding="2" cellspacing="0">
|
||||
<tbody><tr valign="middle" bgcolor="#6666CC"><td align="left" class="sideboxtop"><font face="Arial, Helvetica" color="white" size="3"><b>Featured Communities:</b></font></td></tr>
|
||||
<tr valign="top" bgcolor="#9999FF"><td align="left" class="sidebox">
|
||||
<table align="CENTER" border="0" cellpadding="0" cellspacing="2">
|
||||
<tbody><tr valign="MIDDLE">
|
||||
<td align="CENTER" width="14"><img src="./venice-frontpage_files/purple-ball.gif" alt="*" width="14" height="14" border="0"></td>
|
||||
<td align="LEFT" class="sidebox">
|
||||
<a class="sidebox" href="http://necrovenice:8080/venice/community/Piazza"><font face="Arial, Helvetica" color="blue" size="2"><b>La Piazza</b></font></a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody></table>
|
||||
</td></tr></tbody></table></td></tr><tr><td> </td></tr>
|
||||
<tr valign="top"><td align="center"><table align="center" width="200" border="0" cellpadding="2" cellspacing="0">
|
||||
<tbody><tr valign="middle" bgcolor="#6666CC"><td align="left" class="sideboxtop"><font face="Arial, Helvetica" color="white" size="3"><b>Featured Conferences:</b></font></td></tr>
|
||||
<tr valign="top" bgcolor="#9999FF"><td align="left" class="sidebox">
|
||||
<table align="CENTER" border="0" cellpadding="0" cellspacing="2">
|
||||
<tbody><tr valign="MIDDLE">
|
||||
<td align="CENTER" width="14"><img src="./venice-frontpage_files/purple-ball.gif" alt="*" width="14" height="14" border="0"></td>
|
||||
<td align="LEFT" class="sidebox">
|
||||
<font face="Arial, Helvetica" color="black" size="2"><b><a class="sidebox" href="http://necrovenice:8080/venice/conf/topics.js.vs?sig=2&conf=2"><font face="Arial, Helvetica" color="blue" size="2">General Discussion</font></a></b> (La Piazza)</font>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody></table>
|
||||
</td></tr></tbody></table></td></tr><tr><td> </td></tr>
|
||||
<tr valign="top"><td align="center"><table align="center" width="200" border="0" cellpadding="2" cellspacing="0">
|
||||
<tbody><tr valign="middle" bgcolor="#6666CC"><td align="left" class="sideboxtop"><font face="Arial, Helvetica" color="white" size="3"><b>Users Online:</b></font></td></tr>
|
||||
<tr valign="top" bgcolor="#9999FF"><td align="left" class="sidebox">
|
||||
<table align="left" border="0" cellpadding="0" cellspacing="2"><tbody><tr valign="middle"><td align="left" class="sidebox" colspan="2"><font face="Arial, Helvetica" color="black" size="2"><b>1 total (max 1)</b></font></td></tr><tr valign="middle"><td align="center" width="14"><img src="./venice-frontpage_files/purple-ball.gif" alt="*" width="14" height="14" border="0"></td><td align="left" class="sidebox"><font face="Arial, Helvetica" color="black" size="2">Not logged in (1)</font></td></tr></tbody></table>
|
||||
</td></tr></tbody></table></td></tr><tr><td> </td></tr>
|
||||
</tbody></table></td>
|
||||
</tr></tbody></table>
|
||||
<!-- END PAGE CONTENT -->
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr valign="top">
|
||||
<td align="left" width="120" class="lbar" bgcolor="#9999FF"> </td>
|
||||
<td align="left" width="100%" bgcolor="white" class="footer">
|
||||
<!-- PAGE FOOTER -->
|
||||
<hr width="80%">
|
||||
<table align="center" border="0" cellpadding="0" cellspacing="6">
|
||||
<tbody><tr valign="top">
|
||||
<td align="right" class="footer">
|
||||
<font face="Arial, Helvetica" color="black" size="1">All trademarks and copyrights on this page are owned by their respective companies.<br>
|
||||
All messages posted by users on this page are owned by those users.<br>
|
||||
The rest: Copyright © 2001-2006 <a href="http://www.silverwrist.com/">Silverwrist Design Studios</a>,
|
||||
All Rights Reserved.<br>
|
||||
See our <a href="http://necrovenice:8080/TODO">Policy Page</a> for our copyright and privacy policies.</font>
|
||||
</td>
|
||||
<td rowspan="2" align="left" class="footer"><a href="http://venice.users.sf.net/" target="_blank"><img src="./venice-frontpage_files/powered-by-venice.gif" alt="Powered By Venice" width="129" height="103" border="0" hspace="0" vspace="0"></a></td>
|
||||
</tr>
|
||||
|
||||
<tr valign="top"><td align="right" class="footer">
|
||||
<!-- HITCOUNTER FOR QID "top" -->
|
||||
|
||||
</td></tr>
|
||||
|
||||
</tbody></table>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
</tbody></table>
|
||||
|
||||
|
||||
</body></html>
|
||||
@@ -0,0 +1,288 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Topics in General Discussion - Venice Test</title>
|
||||
<link rel="icon" href="http://necrovenice:8080/venice/images/venice-icon.png" type="image/png">
|
||||
<link rel="shortcut icon" href="http://necrovenice:8080/venice/images/venice-favicon.ico">
|
||||
<script src="https://cdn.tailwindcss.com"></script>
|
||||
</head>
|
||||
|
||||
<body class="bg-blue-400 font-sans">
|
||||
<!-- PAGE HEADER -->
|
||||
<div class="bg-blue-600 w-full">
|
||||
<div class="flex items-center justify-between px-2 py-2">
|
||||
<!-- Site Logo -->
|
||||
<div class="w-1/5">
|
||||
<a href="http://venice.sourceforge.net/">
|
||||
<img src="./Topics in General Discussion - Venice Test_files/powered-by-venice.gif"
|
||||
alt="Venice Test"
|
||||
class="w-35 h-20 mx-2 my-2">
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<!-- Navigation Links -->
|
||||
<div class="w-2/5 text-center">
|
||||
<div class="text-white font-bold text-base mb-2">
|
||||
<a href="http://necrovenice:8080/venice/top.js.vs" class="text-yellow-300 hover:text-yellow-400">
|
||||
Front Page
|
||||
</a>
|
||||
</div>
|
||||
<div class="text-white font-bold text-base">
|
||||
<a href="http://necrovenice:8080/TODO" class="text-yellow-300 hover:text-yellow-400">Help</a>
|
||||
<span class="mx-2">|</span>
|
||||
<a href="http://necrovenice:8080/venice/find.js.vs" class="text-yellow-300 hover:text-yellow-400">Find</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Banner Ad -->
|
||||
<div class="w-2/5 flex justify-end">
|
||||
<img src="./Topics in General Discussion - Venice Test_files/deadpoets.gif"
|
||||
alt=""
|
||||
class="w-96 h-15 mx-2 my-2">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- User Status Section -->
|
||||
<div class="bg-blue-600 text-center py-2">
|
||||
<span class="text-white text-base">
|
||||
You are logged in as <strong>Administrator</strong>
|
||||
<span class="mx-2">-</span>
|
||||
<a href="http://necrovenice:8080/venice/logout.js.vs?tgt=conf%2Ftopics.js.vs%3Fcc%3D2%26conf%3D2"
|
||||
class="text-yellow-300 hover:text-yellow-400">Log Out</a>
|
||||
<span class="mx-2">|</span>
|
||||
<a href="http://necrovenice:8080/venice/profile.js.vs?tgt=conf%2Ftopics.js.vs%3Fcc%3D2%26conf%3D2"
|
||||
class="text-yellow-300 hover:text-yellow-400">Profile</a>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- MAIN CONTENT AREA -->
|
||||
<div class="flex">
|
||||
<!-- LEFT SIDEBAR -->
|
||||
<div class="w-32 bg-blue-400 p-2">
|
||||
<!-- Community Section -->
|
||||
<div class="mb-4">
|
||||
<div class="text-black text-sm">
|
||||
<div class="mb-2">
|
||||
<img src="./Topics in General Discussion - Venice Test_files/sig_other.jpg"
|
||||
alt="La Piazza"
|
||||
class="w-28 h-16 rounded">
|
||||
</div>
|
||||
<div class="font-bold mb-2">La Piazza</div>
|
||||
<div class="space-y-1">
|
||||
<a href="http://necrovenice:8080/venice/conf/conferences.js.vs?cc=2"
|
||||
class="block text-blue-700 hover:text-blue-900 text-xs">Conferences</a>
|
||||
<a href="http://necrovenice:8080/venice/comm/members.js.vs?cc=2"
|
||||
class="block text-blue-700 hover:text-blue-900 text-xs">Members</a>
|
||||
<a href="http://necrovenice:8080/venice/comm/show.js.vs?cc=2"
|
||||
class="block text-blue-700 hover:text-blue-900 text-xs">Profile</a>
|
||||
<a href="http://necrovenice:8080/venice/comm/admin_menu.js.vs?cc=2"
|
||||
class="block text-blue-700 hover:text-blue-900 text-xs">Administration</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- About This Site Section -->
|
||||
<div class="mt-4">
|
||||
<div class="text-black text-sm">
|
||||
<div class="font-bold mb-1">About This Site</div>
|
||||
<div class="text-gray-500 mb-1 text-xs">Documentation</div>
|
||||
<a href="http://necrovenice:8080/venice/frame/about-venice.html"
|
||||
class="text-blue-700 hover:text-blue-900 text-xs">About Venice</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- MAIN CONTENT -->
|
||||
<div class="flex-1 bg-white p-4">
|
||||
<!-- Page Title -->
|
||||
<div class="mb-6">
|
||||
<h1 class="text-blue-800 text-4xl font-bold mb-2">Topics in General Discussion</h1>
|
||||
<hr class="border-2 border-gray-400 w-4/5 mb-6">
|
||||
</div>
|
||||
|
||||
<!-- Action Buttons -->
|
||||
<div class="max-w-6xl mb-6">
|
||||
<div class="flex gap-2 flex-wrap mb-4">
|
||||
<a href="http://necrovenice:8080/venice/conf/conferences.js.vs?cc=2&conf=2"
|
||||
class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded text-sm font-medium transition-colors">
|
||||
Conference List
|
||||
</a>
|
||||
<a href="http://necrovenice:8080/venice/conf/new_topic.js.vs?cc=2&conf=2"
|
||||
class="bg-green-600 hover:bg-green-700 text-white px-4 py-2 rounded text-sm font-medium transition-colors">
|
||||
Add Topic
|
||||
</a>
|
||||
<a href="http://necrovenice:8080/venice/conf/find.js.vs?cc=2&conf=2"
|
||||
class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded text-sm font-medium transition-colors">
|
||||
Find
|
||||
</a>
|
||||
<a href="http://necrovenice:8080/venice/conf/manage_conf.js.vs?cc=2&conf=2"
|
||||
class="bg-gray-600 hover:bg-gray-700 text-white px-4 py-2 rounded text-sm font-medium transition-colors">
|
||||
Manage
|
||||
</a>
|
||||
</div>
|
||||
<div class="text-xs text-gray-600">
|
||||
<a href="http://necrovenice:8080/venice/go/Piazza!General"
|
||||
class="text-blue-700 hover:text-blue-900">
|
||||
[Permalink to this conference]
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Topics Table -->
|
||||
<div class="max-w-6xl">
|
||||
<div class="bg-white border border-gray-300 rounded-lg overflow-hidden">
|
||||
<table class="w-full">
|
||||
<thead class="bg-gray-100 border-b border-gray-300">
|
||||
<tr>
|
||||
<th class="px-4 py-3 text-left text-xs font-bold text-gray-700 uppercase tracking-wider">
|
||||
<a href="http://necrovenice:8080/venice/conf/topics.js.vs?cc=2&conf=2&sort=-1"
|
||||
class="text-blue-700 hover:text-blue-900">#</a>
|
||||
</th>
|
||||
<th class="px-4 py-3 text-left text-xs font-bold text-gray-700 uppercase tracking-wider">
|
||||
<a href="http://necrovenice:8080/venice/conf/topics.js.vs?cc=2&conf=2&sort=2"
|
||||
class="text-blue-700 hover:text-blue-900">Topic Name</a>
|
||||
</th>
|
||||
<th class="px-4 py-3 text-right text-xs font-bold text-gray-700 uppercase tracking-wider">
|
||||
<a href="http://necrovenice:8080/venice/conf/topics.js.vs?cc=2&conf=2&sort=3"
|
||||
class="text-blue-700 hover:text-blue-900">New</a>
|
||||
</th>
|
||||
<th class="px-4 py-3 text-right text-xs font-bold text-gray-700 uppercase tracking-wider">
|
||||
<a href="http://necrovenice:8080/venice/conf/topics.js.vs?cc=2&conf=2&sort=4"
|
||||
class="text-blue-700 hover:text-blue-900">Total</a>
|
||||
</th>
|
||||
<th class="px-4 py-3 text-left text-xs font-bold text-gray-700 uppercase tracking-wider">
|
||||
<a href="http://necrovenice:8080/venice/conf/topics.js.vs?cc=2&conf=2&sort=5"
|
||||
class="text-blue-700 hover:text-blue-900">Last Response</a>
|
||||
</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody class="divide-y divide-gray-200">
|
||||
<!-- Topic 1 -->
|
||||
<tr class="hover:bg-gray-50">
|
||||
<td class="px-4 py-3 whitespace-nowrap text-sm">
|
||||
<a href="http://necrovenice:8080/venice/conf/posts.js.vs?cc=2&conf=2&top=1&rnm=1"
|
||||
class="text-blue-700 hover:text-blue-900 font-medium">1</a>
|
||||
</td>
|
||||
<td class="px-4 py-3 text-sm">
|
||||
<a href="http://necrovenice:8080/venice/conf/posts.js.vs?cc=2&conf=2&top=1&rnm=1"
|
||||
class="text-blue-700 hover:text-blue-900 font-medium">It Works Again!</a>
|
||||
</td>
|
||||
<td class="px-4 py-3 whitespace-nowrap text-sm text-right">
|
||||
<a href="http://necrovenice:8080/venice/conf/posts.js.vs?cc=2&conf=2&top=1&rnm=1"
|
||||
class="text-blue-700 hover:text-blue-900">0</a>
|
||||
</td>
|
||||
<td class="px-4 py-3 whitespace-nowrap text-sm text-right">
|
||||
<a href="http://necrovenice:8080/venice/conf/posts.js.vs?cc=2&conf=2&top=1&p1=0&p2=-1"
|
||||
class="text-blue-700 hover:text-blue-900">2</a>
|
||||
</td>
|
||||
<td class="px-4 py-3 whitespace-nowrap text-sm">
|
||||
<a href="http://necrovenice:8080/venice/conf/posts.js.vs?cc=2&conf=2&top=1&rnm=1"
|
||||
class="text-blue-700 hover:text-blue-900">Sep 8, 2025 11:18:04 AM</a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<!-- Topic 2 -->
|
||||
<tr class="hover:bg-gray-50">
|
||||
<td class="px-4 py-3 whitespace-nowrap text-sm">
|
||||
<a href="http://necrovenice:8080/venice/conf/posts.js.vs?cc=2&conf=2&top=2&rnm=1"
|
||||
class="text-blue-700 hover:text-blue-900 font-medium">2</a>
|
||||
</td>
|
||||
<td class="px-4 py-3 text-sm">
|
||||
<a href="http://necrovenice:8080/venice/conf/posts.js.vs?cc=2&conf=2&top=2&rnm=1"
|
||||
class="text-blue-700 hover:text-blue-900 font-medium">Planes, Trains, and Automobiles</a>
|
||||
</td>
|
||||
<td class="px-4 py-3 whitespace-nowrap text-sm text-right">
|
||||
<a href="http://necrovenice:8080/venice/conf/posts.js.vs?cc=2&conf=2&top=2&rnm=1"
|
||||
class="text-blue-700 hover:text-blue-900">0</a>
|
||||
</td>
|
||||
<td class="px-4 py-3 whitespace-nowrap text-sm text-right">
|
||||
<a href="http://necrovenice:8080/venice/conf/posts.js.vs?cc=2&conf=2&top=2&p1=0&p2=-1"
|
||||
class="text-blue-700 hover:text-blue-900">1</a>
|
||||
</td>
|
||||
<td class="px-4 py-3 whitespace-nowrap text-sm">
|
||||
<a href="http://necrovenice:8080/venice/conf/posts.js.vs?cc=2&conf=2&top=2&rnm=1"
|
||||
class="text-blue-700 hover:text-blue-900">Oct 27, 2025 9:13:14 PM</a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<!-- Topic 3 -->
|
||||
<tr class="hover:bg-gray-50">
|
||||
<td class="px-4 py-3 whitespace-nowrap text-sm">
|
||||
<a href="http://necrovenice:8080/venice/conf/posts.js.vs?cc=2&conf=2&top=3&rnm=1"
|
||||
class="text-blue-700 hover:text-blue-900 font-medium">3</a>
|
||||
</td>
|
||||
<td class="px-4 py-3 text-sm">
|
||||
<a href="http://necrovenice:8080/venice/conf/posts.js.vs?cc=2&conf=2&top=3&rnm=1"
|
||||
class="text-blue-700 hover:text-blue-900 font-medium">Love is a many splendored thing</a>
|
||||
</td>
|
||||
<td class="px-4 py-3 whitespace-nowrap text-sm text-right">
|
||||
<a href="http://necrovenice:8080/venice/conf/posts.js.vs?cc=2&conf=2&top=3&rnm=1"
|
||||
class="text-blue-700 hover:text-blue-900">0</a>
|
||||
</td>
|
||||
<td class="px-4 py-3 whitespace-nowrap text-sm text-right">
|
||||
<a href="http://necrovenice:8080/venice/conf/posts.js.vs?cc=2&conf=2&top=3&p1=0&p2=-1"
|
||||
class="text-blue-700 hover:text-blue-900">2</a>
|
||||
</td>
|
||||
<td class="px-4 py-3 whitespace-nowrap text-sm">
|
||||
<a href="http://necrovenice:8080/venice/conf/posts.js.vs?cc=2&conf=2&top=3&rnm=1"
|
||||
class="text-blue-700 hover:text-blue-900">Oct 27, 2025 9:14:32 PM</a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<!-- View Filter -->
|
||||
<div class="mt-6 text-center">
|
||||
<div class="inline-flex items-center gap-2 text-sm">
|
||||
<span class="font-bold">[</span>
|
||||
<a href="http://necrovenice:8080/venice/conf/topics.js.vs?cc=2&conf=2&view=1"
|
||||
class="text-blue-700 hover:text-blue-900">New</a>
|
||||
<span class="font-bold">|</span>
|
||||
<span class="font-bold">Active</span>
|
||||
<span class="font-bold">|</span>
|
||||
<a href="http://necrovenice:8080/venice/conf/topics.js.vs?cc=2&conf=2&view=3"
|
||||
class="text-blue-700 hover:text-blue-900">All</a>
|
||||
<span class="font-bold">|</span>
|
||||
<a href="http://necrovenice:8080/venice/conf/topics.js.vs?cc=2&conf=2&view=4"
|
||||
class="text-blue-700 hover:text-blue-900">Hidden</a>
|
||||
<span class="font-bold">|</span>
|
||||
<a href="http://necrovenice:8080/venice/conf/topics.js.vs?cc=2&conf=2&view=5"
|
||||
class="text-blue-700 hover:text-blue-900">Archived</a>
|
||||
<span class="font-bold">]</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- FOOTER -->
|
||||
<div class="flex">
|
||||
<div class="w-32 bg-blue-400"> </div>
|
||||
<div class="flex-1 bg-white p-4">
|
||||
<hr class="border-gray-400 w-4/5 mx-auto mb-4">
|
||||
<div class="flex justify-center items-start gap-6">
|
||||
<div class="text-right text-xs text-black leading-relaxed">
|
||||
All trademarks and copyrights on this page are owned by their respective companies.<br>
|
||||
All messages posted by users on this page are owned by those users.<br>
|
||||
The rest: Copyright © 2001-2006
|
||||
<a href="http://www.silverwrist.com/" class="text-blue-700 hover:text-blue-900">Silverwrist Design Studios</a>,
|
||||
All Rights Reserved.<br>
|
||||
See our <a href="http://necrovenice:8080/TODO" class="text-blue-700 hover:text-blue-900">Policy Page</a>
|
||||
for our copyright and privacy policies.
|
||||
</div>
|
||||
<div class="flex-shrink-0">
|
||||
<a href="http://venice.users.sf.net/" target="_blank">
|
||||
<img src="./Topics in General Discussion - Venice Test_files/powered-by-venice.gif"
|
||||
alt="Powered By Venice"
|
||||
class="w-32 h-26">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,281 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- saved from url=(0060)http://necrovenice:8080/venice/conf/topics.js.vs?cc=2&conf=2 -->
|
||||
<html><head><meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
|
||||
<title>Topics in General Discussion - Venice Test</title>
|
||||
<basefont face="Arial, Helvetica" size="3">
|
||||
<link rel="stylesheet" href="./Topics in General Discussion - Venice Test_files/stylesheet" type="text/css">
|
||||
<link rel="icon" href="http://necrovenice:8080/venice/images/venice-icon.png" type="image/png">
|
||||
<link rel="SHORTCUT ICON" href="http://necrovenice:8080/venice/images/venice-favicon.ico">
|
||||
<meta name="MSSmartTagsPreventParsing" content="TRUE">
|
||||
<style type="text/css" id="country-flag-fixer-ext-head">
|
||||
@font-face {
|
||||
font-family: "Twemoji Country Flags";
|
||||
font-style: normal;
|
||||
src: url('chrome-extension://jhcpefjbhmbkgjgipkhndplfbhdecijh/assets/TwemojiCountryFlags.woff2') format('woff2');
|
||||
unicode-range: U+1F1E6-1F1FF, U+1F3F4, U+E0062-E0063, U+E0065, U+E0067, U+E006C, U+E006E, U+E0073-E0074, U+E0077, U+E007F;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Twemoji Country Flags";
|
||||
font-style: italic; /* Defined to prevent italic styled flags */
|
||||
src: url('chrome-extension://jhcpefjbhmbkgjgipkhndplfbhdecijh/assets/TwemojiCountryFlags.woff2') format('woff2');
|
||||
unicode-range: U+1F1E6-1F1FF, U+1F3F4, U+E0062-E0063, U+E0065, U+E0067, U+E006C, U+E006E, U+E0073-E0074, U+E0077, U+E007F;
|
||||
}
|
||||
</style><style type="text/css" id="country-flag-fixer-ext">.tbar { font-family: 'Twemoji Country Flags', Arial, Helvetica, sans-serif !important; }
|
||||
.lbar { font-family: 'Twemoji Country Flags', Arial, Helvetica, sans-serif !important; }
|
||||
.content { font-family: 'Twemoji Country Flags', Arial, Helvetica, sans-serif !important; }
|
||||
.chead1 { font-family: 'Twemoji Country Flags', Arial, Helvetica, sans-serif !important; }
|
||||
.chead2 { font-family: 'Twemoji Country Flags', Arial, Helvetica, sans-serif !important; }
|
||||
.cinput { font-family: 'Twemoji Country Flags', "Courier New", Courier, monospace !important; }
|
||||
.c2 { font-family: 'Twemoji Country Flags', Arial, Helvetica, sans-serif !important; }
|
||||
.post { font-family: 'Twemoji Country Flags', "Courier New", Courier, monospace !important; }
|
||||
.footer { font-family: 'Twemoji Country Flags', Arial, Helvetica, sans-serif !important; }
|
||||
.sideboxtop { font-family: 'Twemoji Country Flags', Arial, Helvetica, sans-serif !important; }
|
||||
.sidebox { font-family: 'Twemoji Country Flags', Arial, Helvetica, sans-serif !important; }
|
||||
</style></head>
|
||||
|
||||
|
||||
<body bgcolor="#9999FF">
|
||||
<!-- BEGIN PAGE HEADER -->
|
||||
<table class="tbar" border="0" bgcolor="#6666CC" width="100%" cellpadding="2" cellspacing="0">
|
||||
<tbody><tr valign="middle">
|
||||
<td align="left" width="20%" cellpadding="2" class="tbar">
|
||||
<!-- Site logo -->
|
||||
<a href="http://venice.sourceforge.net/"><img src="./Topics in General Discussion - Venice Test_files/powered-by-venice.gif" alt="Venice Test" width="140" height="80" hspace="2" vspace="2" border="0"></a>
|
||||
</td>
|
||||
|
||||
<td align="center" width="30%" cellpadding="2" class="tbar"><font face="Arial, Helvetica" color="white" size="3"><b>
|
||||
<!-- Links to Front Page, Help, Find -->
|
||||
<a class="tbar" href="http://necrovenice:8080/venice/top.js.vs"><font face="Arial, Helvetica" color="yellow">Front Page</font>
|
||||
</a></b></font><p><font face="Arial, Helvetica" color="white" size="3"><b>
|
||||
<a class="tbar" href="http://necrovenice:8080/TODO"><font face="Arial, Helvetica" color="yellow">Help</font></a>
|
||||
|
|
||||
<a class="tbar" href="http://necrovenice:8080/venice/find.js.vs"><font face="Arial, Helvetica" color="yellow">Find</font></a>
|
||||
</b></font></p></td>
|
||||
|
||||
<td align="right" width="50%" cellpadding="2" class="tbar">
|
||||
<!-- Banner Ad -->
|
||||
<img src="./Topics in General Discussion - Venice Test_files/deadpoets.gif" alt="" title="" align="right" width="468" height="60" hspace="2" vspace="2" border="0">
|
||||
</td>
|
||||
</tr>
|
||||
<!-- Login reminders -->
|
||||
<tr valign="middle"><td align="center" colspan="3" class="tbar"><font face="Arial, Helvetica" color="white" size="3">
|
||||
|
||||
You are logged in as <b>Administrator</b>
|
||||
|
||||
-
|
||||
<a class="tbar" href="http://necrovenice:8080/venice/logout.js.vs?tgt=conf%2Ftopics.js.vs%3Fcc%3D2%26conf%3D2"><font face="Arial, Helvetica" color="yellow">Log Out</font></a>
|
||||
|
||||
|
|
||||
<a class="tbar" href="http://necrovenice:8080/venice/profile.js.vs?tgt=conf%2Ftopics.js.vs%3Fcc%3D2%26conf%3D2"><font face="Arial, Helvetica" color="yellow">Profile</font></a>
|
||||
|
||||
|
||||
|
||||
</font></td></tr>
|
||||
</tbody></table>
|
||||
<!-- END PAGE HEADER -->
|
||||
|
||||
<table border="0" width="100%" cellpadding="2" cellspacing="0">
|
||||
<tbody><tr valign="top">
|
||||
<td align="left" width="120" class="lbar" bgcolor="#9999FF">
|
||||
<table align="left" width="120" cellpadding="0" cellspacing="0">
|
||||
<!-- BEGIN LEFT SIDEBAR -->
|
||||
<tbody><tr valign="top"><td align="left" class="lbar"><font face="Arial, Helvetica" color="black" size="2">
|
||||
<!-- variable menu -->
|
||||
<div align="left"><img src="./Topics in General Discussion - Venice Test_files/sig_other.jpg" alt="" border="0" width="110" height="65"></div><b>La Piazza</b><br><a href="http://necrovenice:8080/venice/conf/conferences.js.vs?cc=2" class="lbar"><font color="blue">Conferences</font></a><br><a href="http://necrovenice:8080/venice/comm/members.js.vs?cc=2" class="lbar"><font color="blue">Members</font></a><br><a href="http://necrovenice:8080/venice/comm/show.js.vs?cc=2" class="lbar"><font color="blue">Profile</font></a><br><a href="http://necrovenice:8080/venice/comm/admin_menu.js.vs?cc=2" class="lbar"><font color="blue">Administration</font></a><br>
|
||||
</font></td></tr>
|
||||
|
||||
<tr valign="top"><td align="left"> </td></tr>
|
||||
<tr valign="top"><td align="left" class="lbar"><font face="Arial, Helvetica" color="black" size="2">
|
||||
<!-- fixed menu -->
|
||||
<b>About This Site</b><br><font color="silver">Documentation</font><br><a href="http://necrovenice:8080/venice/frame/about-venice.html" class="lbar"><font color="blue">About Venice</font></a><br>
|
||||
</font></td></tr>
|
||||
|
||||
<!-- END LEFT SIDEBAR -->
|
||||
|
||||
</tbody></table>
|
||||
</td>
|
||||
|
||||
<td align="left" width="100%" bgcolor="white" class="content">
|
||||
<!-- BEGIN PAGE CONTENT -->
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- Topic list for conference "General Discussion" -->
|
||||
<span class="chead1"><font face="Arial, Helvetica" color="#3333AA" size="5"><b>Topics in General Discussion</b></font></span><hr align="left" size="2" width="90%" noshade="noshade">
|
||||
|
||||
|
||||
|
||||
<font face="Arial, Helvetica" color="black" size="2">
|
||||
<div align="left" class="content">
|
||||
<a href="http://necrovenice:8080/venice/conf/conferences.js.vs?cc=2&conf=2"><img src="./Topics in General Discussion - Venice Test_files/conference_list.jpg" alt="[ Conference List ]" width="80" height="24" border="0"></a>
|
||||
|
||||
<a href="http://necrovenice:8080/venice/conf/new_topic.js.vs?cc=2&conf=2"><img src="./Topics in General Discussion - Venice Test_files/add_topic.jpg" alt="[ Add Topic ]" width="80" height="24" border="0"></a>
|
||||
|
||||
|
||||
|
||||
<a href="http://necrovenice:8080/venice/conf/find.js.vs?cc=2&conf=2"><img src="./Topics in General Discussion - Venice Test_files/find.jpg" alt="[ Find ]" width="80" height="24" border="0"></a>
|
||||
<a href="http://necrovenice:8080/venice/conf/manage_conf.js.vs?cc=2&conf=2"><img src="./Topics in General Discussion - Venice Test_files/manage.jpg" alt="[ Manage ]" width="80" height="24" border="0"></a>
|
||||
|
||||
<br>
|
||||
<font face="Arial, Helvetica" color="black" size="1"><a class="content" href="http://necrovenice:8080/venice/go/Piazza!General">[Permalink to this conference]</a></font>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
<table width="100%" border="0" cellpadding="0" cellspacing="3">
|
||||
<tbody><tr valign="top">
|
||||
<td align="left" width="1%" class="content" nowrap="nowrap"><font face="Arial, Helvetica" color="black" size="2">
|
||||
<b><a class="content" href="http://necrovenice:8080/venice/conf/topics.js.vs?cc=2&conf=2&sort=-1">#</a></b>
|
||||
</font></td>
|
||||
<td align="left" class="content"><font face="Arial, Helvetica" color="black" size="2">
|
||||
<b><a class="content" href="http://necrovenice:8080/venice/conf/topics.js.vs?cc=2&conf=2&sort=2">Topic Name</a></b>
|
||||
</font></td>
|
||||
<td align="right" class="content" nowrap="nowrap"><font face="Arial, Helvetica" color="black" size="2">
|
||||
<b><a class="content" href="http://necrovenice:8080/venice/conf/topics.js.vs?cc=2&conf=2&sort=3">New</a></b>
|
||||
</font></td>
|
||||
<td align="right" class="content" nowrap="nowrap"><font face="Arial, Helvetica" color="black" size="2">
|
||||
<b><a class="content" href="http://necrovenice:8080/venice/conf/topics.js.vs?cc=2&conf=2&sort=4">Total</a></b>
|
||||
</font></td>
|
||||
<td align="left" class="content" nowrap="nowrap"><font face="Arial, Helvetica" color="black" size="2">
|
||||
<b><a class="content" href="http://necrovenice:8080/venice/conf/topics.js.vs?cc=2&conf=2&sort=5">Last Response</a></b>
|
||||
</font></td>
|
||||
</tr>
|
||||
<tr valign="top"><td align="left" colspan="5"> </td></tr>
|
||||
|
||||
|
||||
|
||||
<tr valign="top">
|
||||
<td align="left" width="1%" class="content" nowrap="nowrap"><font face="Arial, Helvetica" color="black" size="2">
|
||||
<a class="content" href="http://necrovenice:8080/venice/conf/posts.js.vs?cc=2&conf=2&top=1&rnm=1">1</a>
|
||||
</font></td>
|
||||
<td align="left" class="content"><font face="Arial, Helvetica" color="black" size="2">
|
||||
<a class="content" href="http://necrovenice:8080/venice/conf/posts.js.vs?cc=2&conf=2&top=1&rnm=1">It Works Again!</a>
|
||||
|
||||
|
||||
</font></td>
|
||||
<td align="right" class="content" nowrap="nowrap"><font face="Arial, Helvetica" color="black" size="2">
|
||||
<a class="content" href="http://necrovenice:8080/venice/conf/posts.js.vs?cc=2&conf=2&top=1&rnm=1">0</a>
|
||||
</font></td>
|
||||
<td align="right" class="content" nowrap="nowrap"><font face="Arial, Helvetica" color="black" size="2">
|
||||
<a class="content" href="http://necrovenice:8080/venice/conf/posts.js.vs?cc=2&conf=2&top=1&p1=0&p2=-1">2</a>
|
||||
</font></td>
|
||||
<td align="left" class="content" nowrap="nowrap"><font face="Arial, Helvetica" color="black" size="2">
|
||||
<a class="content" href="http://necrovenice:8080/venice/conf/posts.js.vs?cc=2&conf=2&top=1&rnm=1">Sep 8, 2025 11:18:04 AM</a>
|
||||
</font></td>
|
||||
</tr>
|
||||
|
||||
<tr valign="top">
|
||||
<td align="left" width="1%" class="content" nowrap="nowrap"><font face="Arial, Helvetica" color="black" size="2">
|
||||
<a class="content" href="http://necrovenice:8080/venice/conf/posts.js.vs?cc=2&conf=2&top=2&rnm=1">2</a>
|
||||
</font></td>
|
||||
<td align="left" class="content"><font face="Arial, Helvetica" color="black" size="2">
|
||||
<a class="content" href="http://necrovenice:8080/venice/conf/posts.js.vs?cc=2&conf=2&top=2&rnm=1">Planes, Trains, and Automobiles</a>
|
||||
|
||||
|
||||
</font></td>
|
||||
<td align="right" class="content" nowrap="nowrap"><font face="Arial, Helvetica" color="black" size="2">
|
||||
<a class="content" href="http://necrovenice:8080/venice/conf/posts.js.vs?cc=2&conf=2&top=2&rnm=1">0</a>
|
||||
</font></td>
|
||||
<td align="right" class="content" nowrap="nowrap"><font face="Arial, Helvetica" color="black" size="2">
|
||||
<a class="content" href="http://necrovenice:8080/venice/conf/posts.js.vs?cc=2&conf=2&top=2&p1=0&p2=-1">1</a>
|
||||
</font></td>
|
||||
<td align="left" class="content" nowrap="nowrap"><font face="Arial, Helvetica" color="black" size="2">
|
||||
<a class="content" href="http://necrovenice:8080/venice/conf/posts.js.vs?cc=2&conf=2&top=2&rnm=1">Oct 27, 2025 9:13:14 PM</a>
|
||||
</font></td>
|
||||
</tr>
|
||||
|
||||
<tr valign="top">
|
||||
<td align="left" width="1%" class="content" nowrap="nowrap"><font face="Arial, Helvetica" color="black" size="2">
|
||||
<a class="content" href="http://necrovenice:8080/venice/conf/posts.js.vs?cc=2&conf=2&top=3&rnm=1">3</a>
|
||||
</font></td>
|
||||
<td align="left" class="content"><font face="Arial, Helvetica" color="black" size="2">
|
||||
<a class="content" href="http://necrovenice:8080/venice/conf/posts.js.vs?cc=2&conf=2&top=3&rnm=1">Love is a many splendored thing</a>
|
||||
|
||||
|
||||
</font></td>
|
||||
<td align="right" class="content" nowrap="nowrap"><font face="Arial, Helvetica" color="black" size="2">
|
||||
<a class="content" href="http://necrovenice:8080/venice/conf/posts.js.vs?cc=2&conf=2&top=3&rnm=1">0</a>
|
||||
</font></td>
|
||||
<td align="right" class="content" nowrap="nowrap"><font face="Arial, Helvetica" color="black" size="2">
|
||||
<a class="content" href="http://necrovenice:8080/venice/conf/posts.js.vs?cc=2&conf=2&top=3&p1=0&p2=-1">2</a>
|
||||
</font></td>
|
||||
<td align="left" class="content" nowrap="nowrap"><font face="Arial, Helvetica" color="black" size="2">
|
||||
<a class="content" href="http://necrovenice:8080/venice/conf/posts.js.vs?cc=2&conf=2&top=3&rnm=1">Oct 27, 2025 9:14:32 PM</a>
|
||||
</font></td>
|
||||
</tr>
|
||||
|
||||
</tbody></table><p>
|
||||
|
||||
|
||||
|
||||
</p><div align="center" class="content">
|
||||
<b>[</b>
|
||||
|
||||
<a class="content" href="http://necrovenice:8080/venice/conf/topics.js.vs?cc=2&conf=2&view=1">New</a>
|
||||
|
||||
<b>|</b>
|
||||
|
||||
<b>Active</b>
|
||||
|
||||
<b>|</b>
|
||||
|
||||
<a class="content" href="http://necrovenice:8080/venice/conf/topics.js.vs?cc=2&conf=2&view=3">All</a>
|
||||
|
||||
<b>|</b>
|
||||
|
||||
<a class="content" href="http://necrovenice:8080/venice/conf/topics.js.vs?cc=2&conf=2&view=4">Hidden</a>
|
||||
|
||||
<b>|</b>
|
||||
|
||||
<a class="content" href="http://necrovenice:8080/venice/conf/topics.js.vs?cc=2&conf=2&view=5">Archived</a>
|
||||
|
||||
<b>]</b>
|
||||
</div>
|
||||
</font>
|
||||
|
||||
|
||||
|
||||
<!-- END PAGE CONTENT -->
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr valign="top">
|
||||
<td align="left" width="120" class="lbar" bgcolor="#9999FF"> </td>
|
||||
<td align="left" width="100%" bgcolor="white" class="footer">
|
||||
<!-- PAGE FOOTER -->
|
||||
<hr width="80%">
|
||||
<table align="center" border="0" cellpadding="0" cellspacing="6">
|
||||
<tbody><tr valign="top">
|
||||
<td align="right" class="footer">
|
||||
<font face="Arial, Helvetica" color="black" size="1">All trademarks and copyrights on this page are owned by their respective companies.<br>
|
||||
All messages posted by users on this page are owned by those users.<br>
|
||||
The rest: Copyright © 2001-2006 <a href="http://www.silverwrist.com/">Silverwrist Design Studios</a>,
|
||||
All Rights Reserved.<br>
|
||||
See our <a href="http://necrovenice:8080/TODO">Policy Page</a> for our copyright and privacy policies.</font>
|
||||
</td>
|
||||
<td rowspan="2" align="left" class="footer"><a href="http://venice.users.sf.net/" target="_blank"><img src="./Topics in General Discussion - Venice Test_files/powered-by-venice.gif" alt="Powered By Venice" width="129" height="103" border="0" hspace="0" vspace="0"></a></td>
|
||||
</tr>
|
||||
|
||||
<tr valign="top"><td align="right" class="footer">
|
||||
<!-- HITCOUNTER FOR QID "go/Piazza!General" -->
|
||||
|
||||
</td></tr>
|
||||
|
||||
</tbody></table>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
</tbody></table>
|
||||
|
||||
|
||||
</body></html>
|
||||
Reference in New Issue
Block a user