Recent Edits
"BozPages":http://sandbox.sourcelabs.com/bozpage/ is a project pproject to make small one off blogroll pages to keep track ...
"BozPages":http://sandbox.sourcelabs.com/bozpage/ is a project pproject to make small one off blogroll pages to keep track of a bunch of feeds on a single page.
h2. New Version
BozPages is under a new development tack - using [[wikiality]] as a base - a demo of the "new BozPages is here":http://sandbox.sourcelabs.com/wikiality/bozpages.
BozPages can be made into any combination of rss feeds
* Search results from various [[RSS]] enabled search engines
* Friends' bookmarks on [[del.icio.us]]
* Blog searches for your weblog
* News
* Friend's blogroll
* Blogs on a specific topic
* "Swik Projects":http://sandbox.sourcelabs.com/bozpage/?f3
BozPages support [[OPML]] export and import.
"!http://sandbox.sourcelabs.com/referendum/reflogo.png! Vote for new features.":http://sandbox.sourcelabs.com/referendum/index.php?ballot=9
"BozPages":http://sandbox.sourcelabs.com/bozpage/ is a pproject project to make small one off blogroll pages to keep track ...
"BozPages":http://sandbox.sourcelabs.com/bozpage/ is a pproject project to make small one off blogroll pages to keep track of a bunch of feeds on a single page.
h2. New Version
BozPages is under a new development tack - using [[wikiality]] as a base - a demo of the "new BozPages is here":http://sandbox.sourcelabs.com/wikiality/bozpages.
BozPages can be made into any combination of rss feeds
* Search results from various [[RSS]] enabled search engines
* Friends' bookmarks on [[del.icio.us]]
* Blog searches for your weblog
* News
* Friend's blogroll
* Blogs on a specific topic
* "Swik Projects":http://sandbox.sourcelabs.com/bozpage/?f3
BozPages support [[OPML]] export and import.
"!http://sandbox.sourcelabs.com/referendum/reflogo.png! Vote for new features.":http://sandbox.sourcelabs.com/referendum/index.php?ballot=9
"BozPages":http://sandbox.sourcelabs.com/bozpage/ is a project to make small one off blogroll pages to keep track of a bunch...
» complete change"BozPages":http://sandbox.sourcelabs.com/bozpage/ is a project to make small one off blogroll pages to keep track of a bunch of feeds on a single page.
h2. New Version
BozPages is under a new development tack - using [[wikiality]] as a base - a demo of the "new BozPages is here":http://sandbox.sourcelabs.com/wikiality/bozpages.
BozPages can be made into any combination of rss feeds
* Search results from various [[RSS]] enabled search engines
* Friends' bookmarks on [[del.icio.us]]
* Blog searches for your weblog
* News
* Friend's blogroll
* Blogs on a specific topic
* "Swik Projects":http://sandbox.sourcelabs.com/bozpage/?f3
BozPages support [[OPML]] export and import.
"!http://sandbox.sourcelabs.com/referendum/reflogo.png! Vote for new features.":http://sandbox.sourcelabs.com/referendum/index.php?ballot=9
"BozPages":http://sandbox.sourcelabs.com/bozpage/ is a project to make small one off blogroll pages to keep track of a bunch...
"BozPages":http://sandbox.sourcelabs.com/bozpage/ is a project to make small one off blogroll pages to keep track of a bunch of feeds on a single page.
h2. New Version
BozPages is under a new development tack - using [[wikiality]] as a base - a demo of the "new BozPages is here":http://sandbox.sourcelabs.com/wikiality/bozpages.
BozPages can be made into any combination of rss feeds
* Search results from various [[RSS]] enabled search engines
* Friends' bookmarks on [[del.icio.us]]
* Blog searches for your weblog
* News
* Friend's blogroll
* Blogs on a specific topic
* "Swik Projects":http://sandbox.sourcelabs.com/bozpage/?f3
BozPages support [[OPML]] export and import.
"!http://sandbox.sourcelabs.com/referendum/reflogo.png! Vote for new features.":http://sandbox.sourcelabs.com/referendum/index.php?ballot=9
You can create a blog search BozPage
<form action='http://sandbox.sourcelabs.com/bozpage/index.php' method='POST'>
<label for='blogSearch'>search...
You can create a blog search BozPage
<form action='http://sandbox.sourcelabs.com/bozpage/index.php' method='POST'>
<label for='blogSearch'>search term:</label>
<input type='hidden' name='eP' value='id'>
<input type='text' name='blogSearch'>
<input type='submit' value='create search bozPage'>
</form>
This will aggregate various blog search engines for a specific term
News about BozPages
Bozpages is fairly simple, users create pages that are associated with [[rss]] feeds.
In order to not require registration,...
Bozpages is fairly simple, users create pages that are associated with [[rss]] feeds.
In order to not require registration, pages are never destroyed or changed, instead a new version of the page is made on every page change.
h2. Projects used
* [[MySQL]]
* [[Apache]]
* [[Linux]]
* [[PHP]]
* [[MagpieRSS]]
* [[wz_tooltip]]
h2. Source Codes
Source code can be found in these files:
* "main index":http://sandbox.sourcelabs.com/sourcecode/bozpages/index.phps
* "river view":http://sandbox.sourcelabs.com/sourcecode/bozpages/river.phps
* "css 1":http://sandbox.sourcelabs.com/sourcecode/bozpages/1.css, "css 2":http://sandbox.sourcelabs.com/sourcecode/bozpages/style.css
* "wz_tooltip":http://sandbox.sourcelabs.com/sourcecode/bozpages/wz_tooltip.js
* "find references":http://sandbox.sourcelabs.com/sourcecode/bozpages/findReferences.phps
* "cloud view":http://sandbox.sourcelabs.com/sourcecode/bozpages/opmlcloud.phps
* "utilities":http://sandbox.sourcelabs.com/sourcecode/bozpages/utilities.phps
h2. Database structure
<code><pre>
-- Database: `bozpages`
--
-- --------------------------------------------------------
--
-- Table structure for table `bozpages`
--
CREATE TABLE `bozpages` (
`id` int(11) NOT NULL auto_increment,
`hitCount` int(11) NOT NULL default '0',
`hash` varchar(255) NOT NULL default '',
PRIMARY KEY (`id`),
KEY `hitCount` (`hitCount`),
KEY `hash` (`hash`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=8484 ;
-- --------------------------------------------------------
--
-- Table structure for table `feeds`
--
CREATE TABLE `feeds` (
`id` int(11) NOT NULL auto_increment,
`url` varchar(255) NOT NULL default '',
PRIMARY KEY (`id`),
UNIQUE KEY `url` (`url`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=4042 ;
-- --------------------------------------------------------
--
-- Table structure for table `feeds_for_page`
--
CREATE TABLE `feeds_for_page` (
`feed_id` int(11) NOT NULL default '0',
`boz_id` int(11) NOT NULL default '0',
`linkedDate` timestamp NOT NULL default CURRENT_TIMESTAMP on update
CURRENT_TIMESTAMP,
KEY `feed_id` (`feed_id`),
KEY `boz_id` (`boz_id`),
KEY `linkedDate` (`linkedDate`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
</pre>
</code>
If you have a feature you'd like to see in BozPages - add it to the list
* Search template on the front page - ([[user:byron|Byron]])...
If you have a feature you'd like to see in BozPages - add it to the list
* Search template on the front page - ([[user:byron|Byron]])
* -XML link on each feed - ([[user:byron|Byron]])- *done*
* Quick Search feed add widget
* -Not a really a feature inside BozPage but a simple link on the web page where to download a tarball of BozPages or a cvs link to check out the current version.- *done - see "how bozpages works":http://swik.net/Bozpages/How+BozPages+Works*
* Name a page - <a rev='vote_for' href='http://sandbox.sourcelabs.com/referendum/index.php?ballot=9&issue=10#forIssue10'><img src='http://sandbox.sourcelabs.com/referendum/voteyes.png'></a>
Tooltips.js is annoying me a bunch, not sure if anyone else has the same problem, but the hovers for the posts don't really...
Tooltips.js is annoying me a bunch, not sure if anyone else has the same problem, but the hovers for the posts don't really wrap correctly on the page.
If anyone knows what library I should be using instead to do these hovers, please let me know, I really don't want to have to do my own, and trying to fix Tooltips.js has proven to be non-trivial.
Stay classy
Now you can subscribe to a River as an RSS feed.
(append @&format=rss@ to the url)
If you notice on River View, below popular posts now you can see the discussion on the web around that post.
The Cloud View...
If you notice on River View, below popular posts now you can see the discussion on the web around that post.
The Cloud View has been upgraded to give better clouding on certain BozPages.
Now you can have a view of the river. Click on 'River View' to see all the posts flow on by ;)
Hover over a title to see the post description in more detail.
This is powered by the [[JavaScript]] library [[wz_tooltip]]....
Hover over a title to see the post description in more detail.
This is powered by the [[JavaScript]] library [[wz_tooltip]]. There is a known issue, in that really big entries can overflow the top of the screen. If someone has a fix for the wz_tooltip library, send it my way, otherwise stay tuned for me to fix it...
You can now see all the links in rss feeds in a 'Cloud View'
h2. New Version
BozPages is under a new development tack - using [[wikiality]] as a base - a demo of the "new BozPages is ...
» complete change"BozPages":http://sandbox.sourcelabs.com/bozpage/ is a project to make small one off blogroll pages to keep track of a bunch of feeds on a single page.
h2. New Version
BozPages is under a new development tack - using [[wikiality]] as a base - a demo of the "new BozPages is here":http://sandbox.sourcelabs.com/wikiality/bozpages.
BozPages can be made into any combination of rss feeds
* Search results from various [[RSS]] enabled search engines
* Friends' bookmarks on [[del.icio.us]]
* Blog searches for your weblog
* News
* Friend's blogroll
* Blogs on a specific topic
* "Swik Projects":http://sandbox.sourcelabs.com/bozpage/?f3
BozPages support [[OPML]] export and import.
"!http://sandbox.sourcelabs.com/referendum/reflogo.png! Vote for new features.":http://sandbox.sourcelabs.com/referendum/index.php?ballot=9
BozPages is under a new development tack - using [[wikiality]] as a base - a demo of the "new BozPages is here":http://sandbox.sourcelabs.com/wikiality/bozpages....
» complete change"BozPages":http://sandbox.sourcelabs.com/bozpage/ is a project to make small one off blogroll pages to keep track of a bunch of feeds on a single page.
BozPages is under a new development tack - using [[wikiality]] as a base - a demo of the "new BozPages is here":http://sandbox.sourcelabs.com/wikiality/bozpages.
BozPages can be made into any combination of rss feeds
* Search results from various [[RSS]] enabled search engines
* Friends' bookmarks on [[del.icio.us]]
* Blog searches for your weblog
* News
* Friend's blogroll
* Blogs on a specific topic
* "Swik Projects":http://sandbox.sourcelabs.com/bozpage/?f3
BozPages support [[OPML]] export and import.
"!http://sandbox.sourcelabs.com/referendum/reflogo.png! Vote for new features.":http://sandbox.sourcelabs.com/referendum/index.php?ballot=9
"!http://sandbox.sourcelabs.com/referendum/reflogo.png! Vote "Vote for new features.":http://sandbox.sourcelabs.com/referendum/index.php?ballot=9...
"BozPages":http://sandbox.sourcelabs.com/bozpage/ is a project to make small one off blogroll pages to keep track of a bunch of feeds on a single page.
BozPages can be made into any combination of rss feeds
* Search results from various [[RSS]] enabled search engines
* Friends' bookmarks on [[del.icio.us]]
* Blog searches for your weblog
* News
* Friend's blogroll
* Blogs on a specific topic
* "Swik Projects":http://sandbox.sourcelabs.com/bozpage/?f3
BozPages support [[OPML]] export and import.
"!http://sandbox.sourcelabs.com/referendum/reflogo.png! Vote "Vote for new features.":http://sandbox.sourcelabs.com/referendum/index.php?ballot=9 features @ !http://sandbox.sourcelabs.com/referendum/reflogo.png!":http://sandbox.sourcelabs.com/referendum/index.php?ballot=9
"Vote for new features @ !http://sandbox.sourcelabs.com/referendum/reflogo.png!":http://sandbox.sourcelabs.com/referendum/index.php?ballot=9...
» complete change"BozPages":http://sandbox.sourcelabs.com/bozpage/ is a project to make small one off blogroll pages to keep track of a bunch of feeds on a single page.
BozPages can be made into any combination of rss feeds
* Search results from various [[RSS]] enabled search engines
* Friends' bookmarks on [[del.icio.us]]
* Blog searches for your weblog
* News
* Friend's blogroll
* Blogs on a specific topic
* "Swik Projects":http://sandbox.sourcelabs.com/bozpage/?f3
BozPages support [[OPML]] export and import.
"Vote for new features @ !http://sandbox.sourcelabs.com/referendum/reflogo.png!":http://sandbox.sourcelabs.com/referendum/index.php?ballot=9
"Vote for new features !http://sandbox.sourcelabs.com/referendum/reflogo.png!":http://sandbox.sourcelabs.com/referendum/index.php?ballot=9...
» complete change"BozPages":http://sandbox.sourcelabs.com/bozpage/ is a project to make small one off blogroll pages to keep track of a bunch of feeds on a single page.
BozPages can be made into any combination of rss feeds
* Search results from various [[RSS]] enabled search engines
* Friends' bookmarks on [[del.icio.us]]
* Blog searches for your weblog
* News
* Friend's blogroll
* Blogs on a specific topic
* "Swik Projects":http://sandbox.sourcelabs.com/bozpage/?f3
BozPages support [[OPML]] export and import.
"Vote for new features !http://sandbox.sourcelabs.com/referendum/reflogo.png!":http://sandbox.sourcelabs.com/referendum/index.php?ballot=9 !http://sandbox.sourcelabs.com/referendum/referendum.jpg!":http://sandbox.sourcelabs.com/referendum/index.php?ballot=9
"Vote for new features !http://sandbox.sourcelabs.com/referendum/referendum.jpg!":http://sandbox.sourcelabs.com/referendum/index.php?ballot=9...
» complete change"BozPages":http://sandbox.sourcelabs.com/bozpage/ is a project to make small one off blogroll pages to keep track of a bunch of feeds on a single page.
BozPages can be made into any combination of rss feeds
* Search results from various [[RSS]] enabled search engines
* Friends' bookmarks on [[del.icio.us]]
* Blog searches for your weblog
* News
* Friend's blogroll
* Blogs on a specific topic
* "Swik Projects":http://sandbox.sourcelabs.com/bozpage/?f3
BozPages support [[OPML]] export and import.
"Vote for new features !http://sandbox.sourcelabs.com/referendum/referendum.jpg!":http://sandbox.sourcelabs.com/referendum/index.php?ballot=9 !http://sandbox.sourcelabs.com/referendum/reflogo.jpg!":http://sandbox.sourcelabs.com/referendum/index.php?ballot=9
"Vote for new features !http://sandbox.sourcelabs.com/referendum/reflogo.jpg!":http://sandbox.sourcelabs.com/referendum/index.php?ballot=9...
» complete change"BozPages":http://sandbox.sourcelabs.com/bozpage/ is a project to make small one off blogroll pages to keep track of a bunch of feeds on a single page.
BozPages can be made into any combination of rss feeds
* Search results from various [[RSS]] enabled search engines
* Friends' bookmarks on [[del.icio.us]]
* Blog searches for your weblog
* News
* Friend's blogroll
* Blogs on a specific topic
* "Swik Projects":http://sandbox.sourcelabs.com/bozpage/?f3
BozPages support [[OPML]] export and import.
"Vote for new features !http://sandbox.sourcelabs.com/referendum/reflogo.jpg!":http://sandbox.sourcelabs.com/referendum/index.php?ballot=9
* Name a page - <a rev='vote_for' href='http://sandbox.sourcelabs.com/referendum/index.php?ballot=9&issue=10#forIssue10'><img...
» complete changeIf you have a feature you'd like to see in BozPages - add it to the list
* Search template on the front page - ([[user:byron|Byron]])
* -XML link on each feed - ([[user:byron|Byron]])- *done*
* Quick Search feed add widget
* -Not a really a feature inside BozPage but a simple link on the web page where to download a tarball of BozPages or a cvs link to check out the current version.- *done - see "how bozpages works":http://swik.net/Bozpages/How+BozPages+Works*
* Name a page - <a rev='vote_for' href='http://sandbox.sourcelabs.com/referendum/index.php?ballot=9&issue=10#forIssue10'><img src='http://sandbox.sourcelabs.com/referendum/voteyes.png'></a> (I've written this not the UI for it, too much to do, not enough time :( )
You can create a blog search BozPage
<form action='http://sandbox.sourcelabs.com/bozpage/index.php' method='POST'>
<label for='blogSearch'>search...
» complete changeYou can create a blog search BozPage
<form action='http://sandbox.sourcelabs.com/bozpage/index.php' method='POST'>
<label for='blogSearch'>search term:</label>
<input type='hidden' name='eP' value='id'>
<input type='text' name='blogSearch'>
<input type='submit' value='create search bozPage'>
</form>
This will aggregate various blog search engines for a specific term
* Name a page (I've written this not the UI for it, too much to do, not enough time :( )
» complete changeIf you have a feature you'd like to see in BozPages - add it to the list
* Search template on the front page - ([[user:byron|Byron]])
* -XML link on each feed - ([[user:byron|Byron]])- *done*
* Quick Search feed add widget
* -Not a really a feature inside BozPage but a simple link on the web page where to download a tarball of BozPages or a cvs link to check out the current version.- *done - see "how bozpages works":http://swik.net/Bozpages/How+BozPages+Works*
* Name a page (I've written this not the UI for it, too much to do, not enough time :( )
Tooltips.js is annoying me a bunch, not sure if anyone else has the same problem, but the hovers for the posts don't really...
» complete changeTooltips.js is annoying me a bunch, not sure if anyone else has the same problem, but the hovers for the posts don't really wrap correctly on the page.
If anyone knows what library I should be using instead to do these hovers, please let me know, I really don't want to have to do my own, and trying to fix Tooltips.js has proven to be non-trivial.
Stay classy
Now you can subscribe to a River as an RSS feed.
(append @&format=rss@ &format=rss to the url)
Now you can subscribe to a River as an RSS feed.
(append &format=rss @&format=rss@ to the url)
h2. Database structure
<code><pre>
-- Database: `bozpages`
--
-- --------------------------------------------------------
--
--...
» complete changeBozpages is fairly simple, users create pages that are associated with [[rss]] feeds.
In order to not require registration, pages are never destroyed or changed, instead a new version of the page is made on every page change.
h2. Projects used
* [[MySQL]]
* [[Apache]]
* [[Linux]]
* [[PHP]]
* [[MagpieRSS]]
* [[wz_tooltip]]
h2. Source Codes
Source code can be found in these files:
* "main index":http://sandbox.sourcelabs.com/sourcecode/bozpages/index.phps
* "river view":http://sandbox.sourcelabs.com/sourcecode/bozpages/river.phps
* "css 1":http://sandbox.sourcelabs.com/sourcecode/bozpages/1.css, "css 2":http://sandbox.sourcelabs.com/sourcecode/bozpages/style.css
* "wz_tooltip":http://sandbox.sourcelabs.com/sourcecode/bozpages/wz_tooltip.js
* "find references":http://sandbox.sourcelabs.com/sourcecode/bozpages/findReferences.phps
* "cloud view":http://sandbox.sourcelabs.com/sourcecode/bozpages/opmlcloud.phps
* "utilities":http://sandbox.sourcelabs.com/sourcecode/bozpages/utilities.phps
h2. Database structure
<code><pre>
-- Database: `bozpages`
--
-- --------------------------------------------------------
--
-- Table structure for table `bozpages`
--
CREATE TABLE `bozpages` (
`id` int(11) NOT NULL auto_increment,
`hitCount` int(11) NOT NULL default '0',
`hash` varchar(255) NOT NULL default '',
PRIMARY KEY (`id`),
KEY `hitCount` (`hitCount`),
KEY `hash` (`hash`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=8484 ;
-- --------------------------------------------------------
--
-- Table structure for table `feeds`
--
CREATE TABLE `feeds` (
`id` int(11) NOT NULL auto_increment,
`url` varchar(255) NOT NULL default '',
PRIMARY KEY (`id`),
UNIQUE KEY `url` (`url`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=4042 ;
-- --------------------------------------------------------
--
-- Table structure for table `feeds_for_page`
--
CREATE TABLE `feeds_for_page` (
`feed_id` int(11) NOT NULL default '0',
`boz_id` int(11) NOT NULL default '0',
`linkedDate` timestamp NOT NULL default CURRENT_TIMESTAMP on update
CURRENT_TIMESTAMP,
KEY `feed_id` (`feed_id`),
KEY `boz_id` (`boz_id`),
KEY `linkedDate` (`linkedDate`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
</pre>
</code>
* -Not a really a feature inside BozPage but a simple link on the web page where to download a tarball of BozPages or a cvs...
» complete changeIf you have a feature you'd like to see in BozPages - add it to the list
* Search template on the front page - ([[user:byron|Byron]])
* -XML link on each feed - ([[user:byron|Byron]])- *done*
* Quick Search feed add widget
* -Not a really a feature inside BozPage but a simple link on the web page where to download a tarball of BozPages or a cvs link to check out the current version.- *done - see "how bozpages works":http://swik.net/Bozpages/How+BozPages+Works* works"http://swik.net/Bozpages/How+BozPages+Works*
* -Not Not a really a feature inside BozPage but a simple link on the web page where to download a tarball of BozPages or ...
If you have a feature you'd like to see in BozPages - add it to the list
* Search template on the front page - ([[user:byron|Byron]])
* -XML link on each feed - ([[user:byron|Byron]])- *done*
* Quick Search feed add widget
* -Not Not a really a feature inside BozPage but a simple link on the web page where to download a tarball of BozPages or a cvs link to check out the current version.- *done - see "how bozpages works"http://swik.net/Bozpages/How+BozPages+Works* version.
h2. Source Codes
Source code can be found in these files:
* "main index":http://sandbox.sourcelabs.com/sourcecode/bozpages/index.phps...
» complete changeBozpages is fairly simple, users create pages that are associated with [[rss]] feeds.
In order to not require registration, pages are never destroyed or changed, instead a new version of the page is made on every page change.
h2. Projects used
* [[MySQL]]
* [[Apache]]
* [[Linux]]
* [[PHP]]
* [[MagpieRSS]]
* [[wz_tooltip]]
h2. Source Codes
Source code can be found in these files:
* "main index":http://sandbox.sourcelabs.com/sourcecode/bozpages/index.phps
* "river view":http://sandbox.sourcelabs.com/sourcecode/bozpages/river.phps
* "css 1":http://sandbox.sourcelabs.com/sourcecode/bozpages/1.css, "css 2":http://sandbox.sourcelabs.com/sourcecode/bozpages/style.css
* "wz_tooltip":http://sandbox.sourcelabs.com/sourcecode/bozpages/wz_tooltip.js
* "find references":http://sandbox.sourcelabs.com/sourcecode/bozpages/findReferences.phps
* "cloud view":http://sandbox.sourcelabs.com/sourcecode/bozpages/opmlcloud.phps
* "utilities":http://sandbox.sourcelabs.com/sourcecode/bozpages/utilities.phps
Not a really a feature inside BozPage but a simple link on the web page where to download a tarball of BozPages or a cvs ...
» complete changeIf you have a feature you'd like to see in BozPages - add it to the list
* Search template on the front page - ([[user:byron|Byron]])
* -XML link on each feed - ([[user:byron|Byron]])- *done*
* Quick Search feed add widget
Not a really a feature inside BozPage but a simple link on the web page where to download a tarball of BozPages or a cvs link to check out the current version.
Now you can subscribe to a River as an RSS feed.
(append @&format=rss@ &format=rss to the url)
Now you can subscribe to a River as an RSS feed.
(append &format=rss to the url)
If you notice on River View, below popular posts now you can see the discussion on the web around that post.
The Cloud View...
» complete changeIf you notice on River View, below popular posts now you can see the discussion on the web around that post.
The Cloud View has been upgraded to give better clouding on certain BozPages.
Now you can have a view of the river. Click on 'River View' to see all the posts flow on by ;)
Hover over a title to see the post description in more detail.
This is powered by the [[JavaScript]] library [[wz_tooltip]]....
» complete changeHover over a title to see the post description in more detail.
This is powered by the [[JavaScript]] library [[wz_tooltip]]. There is a known issue, in that really big entries can overflow the top of the screen. If someone has a fix for the wz_tooltip library, send it my way, otherwise stay tuned for me to fix it...
