<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>jobberBase dev blog</title>
	<atom:link href="http://www.jobberbase.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jobberbase.com/blog</link>
	<description>jobberBase is an open source job board that helps you set up a jobsite in minutes!</description>
	<lastBuildDate>Mon, 14 Jun 2010 04:01:36 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Security issue explained + FIX</title>
		<link>http://www.jobberbase.com/blog/06-14-2010/security-issue-explained-fix/</link>
		<comments>http://www.jobberbase.com/blog/06-14-2010/security-issue-explained-fix/#comments</comments>
		<pubDate>Mon, 14 Jun 2010 04:00:22 +0000</pubDate>
		<dc:creator>Filip</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Knowledge Base]]></category>

		<guid isPermaLink="false">http://www.jobberbase.com/blog/?p=89</guid>
		<description><![CDATA[Affected versions: 1.7, 1.8, 1.9
Not affected: latest (1.9.1) and older than 1.7 (I hope nobody&#8217;s still running them!).
&#8211;
The issue
In a nutshell: a typical API request, with data returned as &#8220;js&#8221;, the job publisher&#8217;s email address is revealed, as well as the secret &#8220;auth&#8221; hash used for editing/deleting jobs (without an account). A typical API request:
/api/api.php?action=getJobs&#38;type=0&#38;category=0&#38;count=5&#38;random=1&#38;days_behind=100&#38;response=js
e.g. [...]]]></description>
			<content:encoded><![CDATA[<p>Affected versions: 1.7, 1.8, 1.9<br />
Not affected: latest (1.9.1) and older than 1.7 (I hope nobody&#8217;s still running them!).</p>
<p>&#8211;</p>
<h3>The issue</h3>
<p>In a nutshell: a typical API request, with data returned as &#8220;js&#8221;, the job publisher&#8217;s email address is revealed, as well as the secret &#8220;auth&#8221; hash used for editing/deleting jobs (without an account). A typical API request:<br />
<code>/api/api.php?action=getJobs&amp;type=0&amp;category=0&amp;count=5&amp;random=1&amp;days_behind=100&amp;response=js</code><br />
e.g. <code>http://www.jobberbase.com/api/api.php?action=getJobs&amp;type=0&amp;category=0&amp;count=5&amp;random=1&amp;days_behind=100&amp;response=js</code></p>
<p>Inside the jobs array/JSON, you&#8217;ll see that each job has 2 fields that shouldn&#8217;t be there: auth and poster_email.<br />
*auth* is the auth string used in URLs for editing and deactivating job ads.<br />
*poster_email* is the actual email address of the advertiser.</p>
<p>Bad.</p>
<h3>The fix</h3>
<p>In your _includes/class.Job.php:</p>
<p>a) Search for method ApiGetJobs. On line 501, there should be a while-loop after the big SELECT for jobs. Replace the contents in that while-loop with:<br />
<code>$current_job = new Job($row['id']);<br />
$job = $current_job-&gt;GetInfo();<br />
unset($job['poster_email']);<br />
unset($job['auth']);<br />
$jobs[] = $job;</code></p>
<p>b) Do the same for method ApiGetJobsByCompany (while-loop should be on line 541 after you made the change on 2a).</p>
<p>====</p>
<p>We&#8217;re sorry for not picking this up earlier and we hope your site wasn&#8217;t affected in any way by this breach. </p>
<p>If you have any further questions about this issue or other security concerns, please don&#8217;t hesitate to write back!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jobberbase.com/blog/06-14-2010/security-issue-explained-fix/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Security alert</title>
		<link>http://www.jobberbase.com/blog/04-26-2010/security-alert/</link>
		<comments>http://www.jobberbase.com/blog/04-26-2010/security-alert/#comments</comments>
		<pubDate>Mon, 26 Apr 2010 04:48:50 +0000</pubDate>
		<dc:creator>Filip</dc:creator>
				<category><![CDATA[Knowledge Base]]></category>

		<guid isPermaLink="false">http://www.jobberbase.com/blog/?p=86</guid>
		<description><![CDATA[Later update: skip this and get the fix &#187;
&#8211;
Hi guys,
We discovered a potential security breach in the jobberBase codebase, which would allow an attacker to mess with the database.
This affects versions 1.9, 1.8 and possibly 1.7.
Therefore, if you run a jobberBase site, we ask that you send us an email to hello@jobberbase.com, tell us your [...]]]></description>
			<content:encoded><![CDATA[<p>Later update: <a href="http://www.jobberbase.com/blog/06-14-2010/security-issue-explained-fix/">skip this and get the fix &raquo;</a></p>
<p>&#8211;</p>
<p>Hi guys,</p>
<p>We discovered a potential security breach in the jobberBase codebase, which would allow an attacker to mess with the database.</p>
<p>This affects versions 1.9, 1.8 and possibly 1.7.</p>
<p>Therefore, if you run a jobberBase site, we ask that you send us an email to hello@jobberbase.com, tell us your site&#8217;s URL and prove that you own it. Then, we&#8217;ll tell you what the problem is and offer you several ways to fix it.</p>
<p>We&#8217;ve chosen to tackle this problem like this because it&#8217;s quite sensitive &#8212; a public announcement of the issue could have negative effects on jobberBase-powered sites.</p>
<p>Thank you for your understanding!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jobberbase.com/blog/04-26-2010/security-alert/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>1.9 is here and it rocks!</title>
		<link>http://www.jobberbase.com/blog/03-30-2010/1-9-is-here-and-it-rocks/</link>
		<comments>http://www.jobberbase.com/blog/03-30-2010/1-9-is-here-and-it-rocks/#comments</comments>
		<pubDate>Tue, 30 Mar 2010 13:46:51 +0000</pubDate>
		<dc:creator>Filip</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.jobberbase.com/blog/?p=79</guid>
		<description><![CDATA[We&#8217;ve got a new version fresh out of the oven and it&#8217;s truly the best jobberBase version, yet!
If you&#8217;re anxious to get it, go ahead and download it.
Here are some of the new features in 1.9:

Proper support for Windows/IIS hosting. Read the install guide if you&#8217;re interested.
Better multiple themes support, and a new theme in [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve got a new version fresh out of the oven and it&#8217;s <strong>truly the best jobberBase version</strong>, yet!<br />
If you&#8217;re anxious to get it, go ahead and <a href="http://code.google.com/p/jobberbase/">download it</a>.</p>
<p>Here are some of the new features in 1.9:</p>
<ul>
<li>Proper support for Windows/IIS hosting. Read the <a href="http://wiki.jobberbase.com/install/guide-for-iis">install guide</a> if you&#8217;re interested.</li>
<li>Better multiple themes support, and a new theme in the default codebase &#8212; Hireme, from <a href="http://hireme.sg">hireme.sg</a>.</li>
<li>Admin panel redesign, using the <a href="http://evertsemeijn.nl/store/jobberbase/cadify/">Cadify</a> theme.</li>
<li>Support for more language files &#8212; an important step towards full multi-language support.</li>
<li>All email templates are defined in a single XML file, under the translations folder.</li>
<li>Config system rewritten and improved.</li>
<li>Performance updates and general cleanup.</li>
</ul>
<p>See the full <a href="http://wiki.jobberbase.com/jobberbase-dev/changelog">changelog on the wiki</a>.</p>
<p>We&#8217;re very happy how jobberBase is evolving and can&#8217;t wait to start working on <a href="http://wiki.jobberbase.com/jobberbase-dev/roadmap">version 2.0</a>, which will be another big step forward. Can&#8217;t wait!</p>
<p>Kudos to <a href="http://wiki.jobberbase.com/jobberbase-dev/team">the team</a> and a big thanks to <a href="http://www.jobberbase.com/forum">our community</a> for the support and involvement!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jobberbase.com/blog/03-30-2010/1-9-is-here-and-it-rocks/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>jobberBase + CeeVee = ♥</title>
		<link>http://www.jobberbase.com/blog/01-14-2010/jobberbase-ceevee-heart/</link>
		<comments>http://www.jobberbase.com/blog/01-14-2010/jobberbase-ceevee-heart/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 15:26:22 +0000</pubDate>
		<dc:creator>Filip</dc:creator>
				<category><![CDATA[Status]]></category>

		<guid isPermaLink="false">http://www.jobberbase.com/blog/?p=69</guid>
		<description><![CDATA[CeeVee is a CV/resume builder launched a few months ago.
We wanted to do something like that for over a year now, and integrate it with jobber.ro, job-job.co.uk and with all jobberBase-powered sites!
A universal CV/resume service, that is.
Well, great news!
Our business, LATERAL, the company behind jobberBase, has acquired CeeVee!
This means that in the following months, we&#8217;ll [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://ceevee.com" title="quick &#038; painless résumé management">CeeVee</a> is a CV/resume builder launched a few months ago.<br />
We wanted to do something like that for over a year now, and integrate it with <a href="http://www.jobber.ro">jobber.ro</a>, <a href="http://www.job-job.co.uk">job-job.co.uk</a> and with all jobberBase-powered sites!<br />
<strong>A universal CV/resume service, that is</strong>.</p>
<p>Well, great news!<br />
Our business, <a href="http://www.technologywithpassion.com" title="technology with passion">LATERAL</a>, the company behind jobberBase, <a href="http://forgetmilk.com/2010/01/ceevee-com-has-a-new-home/">has acquired</a> CeeVee!</p>
<p>This means that in the following months, we&#8217;ll develop support in jobberBase for using <a href="http://ceevee.com" title="quick &#038; painless résumé management">CeeVee</a> as &#8220;jobseeker&#8221; platform. Lots of goodies for site owners and recruiters, as well.</p>
<p>2010 starts off as a great year for jobberBase, and we&#8217;re very excited about things to come.</p>
<p><strong>What are your thoughts regarding how jobberBase and CeeVee might work together?</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jobberbase.com/blog/01-14-2010/jobberbase-ceevee-heart/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>1.8 &#8211; a huge leap forward</title>
		<link>http://www.jobberbase.com/blog/09-16-2009/18-a-huge-leap-forward/</link>
		<comments>http://www.jobberbase.com/blog/09-16-2009/18-a-huge-leap-forward/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 06:40:01 +0000</pubDate>
		<dc:creator>Filip</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Status]]></category>

		<guid isPermaLink="false">http://www.jobberbase.com/blog/?p=60</guid>
		<description><![CDATA[It&#8217;s always my great joy to announce a new version of jobberBase but this one has to be the best moment of them all! And for 2 reasons:

Our development team grew in the past 4 months and I&#8217;d like to thank Chronos, evertsemeijn, navjotjsingh, redjumpsuit for all their hard work!
This version has the most new [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s always my great joy to announce a new version of jobberBase but this one has to be the best moment of them all! And for 2 reasons:</p>
<ul>
<li>Our development team grew in the past 4 months and I&#8217;d like to thank <a href="http://www.jobberbase.com/forum/user1044.html">Chronos</a>, <a href="http://www.jobberbase.com/forum/user1092.html">evertsemeijn</a>, <a href="http://www.jobberbase.com/forum/user1444.html">navjotjsingh</a>, <a href="http://www.jobberbase.com/forum/user1302.html">redjumpsuit</a> for all their hard work!</li>
<li>This version has the most new features and core updates since we launched, including <strong>themes support</strong>. We&#8217;re well on our way for version 2.0 which will support <strong>plugins</strong>.</li>
</ul>
<p>Here are some of the new features:</p>
<ul>
<li>Ability to change all settings from Admin Panel instead of config.php</li>
<li>Improved and Paginated Search</li>
<li>Editable Job-Url Structure</li>
<li>Editable locations</li>
<li>Recaptcha Support</li>
<li>Database Prefix Support</li>
<li>Dynamic Menus in Header and Footer</li>
<li>Multiple Theme Support</li>
<li>City Cloud Page</li>
<li>SMTP Mail Support</li>
</ul>
<p>Go on and <a href="http://code.google.com/p/jobberbase/">download it directly from Google Code</a>.</p>
<p>You might want to read the <a href="http://www.jobberbase.com/wiki/index.php/Installation_Guide">Installation Guide</a> or, if you&#8217;re upgrading from 1.7, read the <a href="http://www.jobberbase.com/forum/topic1839-guide-for-upgrading-a-production-site-from-17-to-18.html">Upgrade Guide</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jobberbase.com/blog/09-16-2009/18-a-huge-leap-forward/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Back 100% to open-source</title>
		<link>http://www.jobberbase.com/blog/07-12-2009/back-100-to-open-source/</link>
		<comments>http://www.jobberbase.com/blog/07-12-2009/back-100-to-open-source/#comments</comments>
		<pubDate>Sun, 12 Jul 2009 17:30:51 +0000</pubDate>
		<dc:creator>Filip</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Pro]]></category>
		<category><![CDATA[Status]]></category>

		<guid isPermaLink="false">http://www.jobberbase.com/blog/?p=49</guid>
		<description><![CDATA[About a month ago, we launched jobberBase Pro, a compiled version of jobberBase + some extra features requested by a lot of customers.
It was a challening month for our team, one in which we saw our focus dilluted between fixing bugs, working on new features and offering support for Pro customers.
Why did we launch Pro [...]]]></description>
			<content:encoded><![CDATA[<p>About a month ago, we launched <a href="http://www.jobberbase.com/blog/06-08-2009/jobberbase-pro-10-has-arrived/">jobberBase Pro</a>, a compiled version of jobberBase + some extra features requested by a lot of customers.</p>
<p>It was a challening month for our team, one in which we saw our focus dilluted between fixing bugs, working on new features and offering support for Pro customers.</p>
<h4>Why did we launch Pro in the first place?</h4>
<p>For 2 reasons:</p>
<ol>
<li>We saw that customers tend to request the same extra features that aren&#8217;t curently implemented in jobberBase open-source and we wanted to give them easy access to them.</li>
<li>We wanted to experiment a dual-licensing revenue model, as we don&#8217;t have a revenue model and need to support further development.</li>
</ol>
<h4>What did we learn?</h4>
<p>An open-source project and the community that forms around it is a living organism that reacts to change.<br />
Our <a href="http://www.jobberbase.com/forum">great community</a> is alive &#038; kicking and its feedback was mixed: some liked the Pro version and <a href="http://www.jobberbase.com/forum/topic1546-199.html">some didn&#8217;t</a>. And it was perfectly understandable why they didn&#8217;t, which made us rethink our strategy.</p>
<h4>Open-source is our way</h4>
<p>We never forgot this, but we let it become second priority. </p>
<p>Well, this is ending *now* and we&#8217;re <strong>back 100% on the open-source version</strong> and have stopped distributing Pro.</p>
<p>We still offer support for Pro customers and want to make them achieve their goals with the purchase!</p>
<h4>The next big thing</h4>
<p>In the following months we&#8217;ll keep releasing small updates and bug fixes, but the main development focus will be on a <strong>new version</strong>, one that&#8217;s <strong>plugin-friendly</strong>.<br />
Once this version is live, you (developers) will be able to build plugins and themes for jobberBase. We can&#8217;t wait to get there, guys!</p>
<p>So, in the meanwhile, keep an eye on this blog, <a href="http://twitter.com/jobberbase">follow us on Twitter</a> and get involved in our growing community. </p>
<p>Kudos.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jobberbase.com/blog/07-12-2009/back-100-to-open-source/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>jobberBase Pro 1.0 has arrived</title>
		<link>http://www.jobberbase.com/blog/06-08-2009/jobberbase-pro-10-has-arrived/</link>
		<comments>http://www.jobberbase.com/blog/06-08-2009/jobberbase-pro-10-has-arrived/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 18:29:58 +0000</pubDate>
		<dc:creator>Filip</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Pro]]></category>

		<guid isPermaLink="false">http://www.jobberbase.com/blog/?p=44</guid>
		<description><![CDATA[We&#8217;re extremely happy to announce version 1.0 of jobberBase Pro, aimed at customers who need a jobsite with employer accounts and payment integration, features not available in the open-source version of jobberBase.
It costs $199/license/domain and you get the complete source-code and free upgrades for 1 year.
Follow this blog and @jobberbase on twitter for further updates.
]]></description>
			<content:encoded><![CDATA[<p>We&#8217;re extremely happy to announce version 1.0 of <a href="http://www.jobberbase.com/pro/">jobberBase Pro</a>, aimed at customers who need a jobsite with employer accounts and payment integration, features not available in the open-source version of jobberBase.</p>
<p>It costs <strong>$199/license/domain</strong> and you get the complete source-code and free upgrades for 1 year.</p>
<p>Follow this blog and <a href="http://twitter.com/jobberbase">@jobberbase</a> on twitter for further updates.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jobberbase.com/blog/06-08-2009/jobberbase-pro-10-has-arrived/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>1.7 + site refresh + jobberBase Pro</title>
		<link>http://www.jobberbase.com/blog/05-16-2009/17-site-refresh-jobberbase-pro/</link>
		<comments>http://www.jobberbase.com/blog/05-16-2009/17-site-refresh-jobberbase-pro/#comments</comments>
		<pubDate>Sat, 16 May 2009 01:46:52 +0000</pubDate>
		<dc:creator>Filip</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Status]]></category>

		<guid isPermaLink="false">http://www.jobberbase.com/blog/?p=42</guid>
		<description><![CDATA[Indeed, a new version is out, thanks to all of those who made it happen!
In the name of the jobberBase dev team, I&#8217;d like to thank every person who got involved in our community and helped others get things done. We truly appreciate your effort.
You probably noticed the refreshed UI on jobberbase.com. We&#8217;ve began to [...]]]></description>
			<content:encoded><![CDATA[<p>Indeed, a new version is out, thanks to all of those who made it happen!<br />
In the name of the jobberBase dev team, I&#8217;d like to thank every person who got involved in our community and helped others get things done. We truly appreciate your effort.</p>
<p>You probably noticed the refreshed UI on <a href="http://www.jobberbase.com">jobberbase.com</a>. We&#8217;ve began to list some <a href="http://www.jobberbase.com/featured/">jobberBase-powered sites</a> and hope to see that list grow. If you have a jobberBase site that isn&#8217;t listed there, give us an email at hello [at] jobberbase [dot] com.</p>
<p>One more thing&#8230; we&#8217;re preparing a Pro/Premium version of jobberBase, with <strong>employer admin</strong>, <strong>resume management</strong> and <strong>paypal payment integration</strong> and plan to sell it at an affordable price. </p>
<p>We&#8217;ll continue to develop both the open-source and pro versions, while trying to figure out how to bring the most value to the world. </p>
<p>It&#8217;s been a great ride until now, and it&#8217;s only getting better! <img src='http://www.jobberbase.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.jobberbase.com/blog/05-16-2009/17-site-refresh-jobberbase-pro/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Version 1.6 in the house</title>
		<link>http://www.jobberbase.com/blog/12-29-2008/version-16-in-the-house/</link>
		<comments>http://www.jobberbase.com/blog/12-29-2008/version-16-in-the-house/#comments</comments>
		<pubDate>Mon, 29 Dec 2008 11:54:19 +0000</pubDate>
		<dc:creator>Filip</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Status]]></category>

		<guid isPermaLink="false">http://www.jobberbase.com/blog/12-29-2008/version-16-in-the-house/</guid>
		<description><![CDATA[We&#8217;re really happy to announce this version, with lots of bug fixes and a few handy new features:

fixed: &#8216;Invalid use of group function&#8217; exception in class.Stats.php
fixed: a database query exception was thrown if the search string contained a city that existed in the DB and ended in a space character (ie: &#8220;london &#8220;). This happened [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;re really happy to announce this version, with lots of bug fixes and a few handy new features:</p>
<ul>
<li>fixed: &#8216;Invalid use of group function&#8217; exception in class.Stats.php</li>
<li>fixed: a database query exception was thrown if the search string contained a city that existed in the DB and ended in a space character (ie: &#8220;london &#8220;). This happened only for live-searches (via AJAX)</li>
<li>fixed: made the select query compatible with mysql 4 in class.SpamReport.php</li>
<li>fixed: a database query exception was thrown if the words in the search query were separated by many whitespace characters (ie: &#8220;one    two    three&#8221;) delete the jobs but don&#8217;t remove the job applications) category were displayed which could lead to huge results because if you&#8217;re on the index page you will get *ALL* active jobs from the DB</li>
<li>fixed: allow to install jobberbase in a folder called &#8220;jobs&#8221; &#8211; thanks to links</li>
<li>fixed: the total number of applications/searches was not computed correctly; return meaningful data even if there are no applications/searches in class.Stats.php</li>
<li>fixed: the number of jobs per company was wrong &#8211; it also included jobs that are not active</li>
<li>fixed: CheckPosterEmail was called needlessly when displaying jobs thus degrading performance (see http://www.jobberbase.com/forum/post2994.html)</li>
<li>fixed: although set, the job type (ie: full time, part time) was not remembered in the pagination process and thus the pagination was incorrect</li>
<li>fixed: a database query exception was thrown if more than one city was found from the search keywords</li>
<li>fixed: the URLs in the mail that is sent after a job is actived by the administrator are wrong</li>
<li>fixed: multiple emails were sent to the job poster if the jobberbase based site had google ads &#8211; thanks to links</li>
<li>fixed: moved stats in admin (/admin/stats/)</li>
<li>fix/enh: tweaked the query that gets the job applications so that only applications which still point to a job are returned (in case you manually </li>
<li>enh: GetJobsCountForAllCategs makes a single query now instead of a query for *each* category</li>
<li>enh: now, only one query is used to get the number of jobs per companies, instead of one query for *each* company</li>
<li>enh: if the search query is empty, do nothing &#8211; until now (which was pretty confusing from end user point of view), all the jobs for the current </li>
<li>added: i18n for labels inside javascript files</li>
<li>new: possibility to show cities in sidebar instead of categories (configurable from config.php)</li>
<li>new: SEO for Job Categories &#8211; thanks to CtCoder</li>
<li>new: spotlight jobs (sponsored jobs) &#8211; thanks to chronos</li>
<li>new: &#8216;Edit post&#8217; functionality in admin</li>
</ul>
<p>This release would not be possible without the hours put in by <a href="http://www.jobberbase.com/forum/user19.html">putypuruty</a> and <a href="http://www.jobberbase.com/forum/user14.html">links</a>. Thank you, my friends!</p>
<p>Go ahead and <a href="http://www.jobberbase.com/download/">download jobberBase</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jobberbase.com/blog/12-29-2008/version-16-in-the-house/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>jobberBase jobs</title>
		<link>http://www.jobberbase.com/blog/11-11-2008/jobberbase-jobs/</link>
		<comments>http://www.jobberbase.com/blog/11-11-2008/jobberbase-jobs/#comments</comments>
		<pubDate>Tue, 11 Nov 2008 18:01:54 +0000</pubDate>
		<dc:creator>Filip</dc:creator>
				<category><![CDATA[jobberBase jobs]]></category>

		<guid isPermaLink="false">http://www.jobberbase.com/blog/11-11-2008/jobberbase-jobs/</guid>
		<description><![CDATA[Dear all,
We&#8217;re very happy to announce a new site we&#8217;ve been working on in the past year:
jobberBase jobs
What is it?
jobberBase jobs is a search engine for jobs, worldwide!
We&#8217;re currently aggregating over 20 jobberBase-powered jobsites and are working towards extending our reach.
How to get listed
Job listings are 100% FREE.
In order to display job ads from a [...]]]></description>
			<content:encoded><![CDATA[<p>Dear all,</p>
<p>We&#8217;re very happy to announce a new site we&#8217;ve been working on in the past year:<br />
<strong><a href="http://www.jobberbase.com/jobs/" title="jobs">jobberBase jobs</a></strong></p>
<h3>What is it?</h3>
<p><strong>jobberBase jobs</strong> is a search engine for jobs, worldwide!<br />
We&#8217;re currently aggregating over 20 <a href="http://www.jobberbase.com" title="job board software">jobberBase</a>-powered jobsites and are working towards extending our reach.</p>
<h3>How to get listed</h3>
<p>Job listings are <strong>100% FREE</strong>.<br />
In order to display job ads from a certain website, we only require access to an XML file containing all the jobs and that&#8217;s it!</p>
<h3>Talk to us</h3>
<p>If you run into any kind of problems or discover bugs on the site, please feel free to <a href="http://www.jobberbase.com/jobs/p/contact/">get in touch</a> and we&#8217;ll answer gladly!<br />
We&#8217;re also available for any type of inquiries.</p>
<p>That&#8217;s it <img src='http://www.jobberbase.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .<br />
<a href="http://www.jobberbase.com/jobs/" title="jobs">Go check it out &raquo;</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jobberbase.com/blog/11-11-2008/jobberbase-jobs/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>
