About
"xstriim" is currently an alpha lifestreaming class, which intends to make it easy for people with virtually no PHP knowledge to set up their own lifestream on their website.Demo
You can see the script in action on my homepage.Download
Download xstriim 0.7UsageAs of this version, upload all the files, fill in the form onthe install page and click go :)
Look + Feel
xstriim now supports custom templates, in a very basic way.Take a look at the /themes/default/ folder to see the
layout of the files. Available tags are:
{relative_day} - Either "today", "yesterday" or blank
{day_of_week} - Full textual representation of the day e.g. Thursday
{month} - Full textual representation of the month e.g. January
{date} - Date including suffix e.g. 22nd
{year} - Four digit representation of the year e.g. 2008
{time} - Time of the item
{type} - Name of service e.g. Twitter, LastFM
{title} - Title of the item
{link} - Link to the parent site of the RSS feed
{username} - Username in use for that item
So you're a developer?
The easiest way to edit the page is to add your markup to themes/default/ page_header.txt and page_footer.txt
If you would like more control, xstriim leverages a page class to generate the markup, useful functions include:
$p->addJavascript('path/to/file.js');
$p->addStylesheet('path/to/file.css');
$p->setHeader('Header Content');
$p->setFooter('Footer Content');
$p->addContent('Append Content to Body');