<?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>Koha Library Software Community &#187; Koha News</title>
	<atom:link href="http://koha-community.org/category/koha-news/feed/" rel="self" type="application/rss+xml" />
	<link>http://koha-community.org</link>
	<description></description>
	<lastBuildDate>Fri, 03 Feb 2012 16:24:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Koha Release Manager newsletter #3 2012-01</title>
		<link>http://koha-community.org/koha-release-manager-newsletter-3-2012-01/</link>
		<comments>http://koha-community.org/koha-release-manager-newsletter-3-2012-01/#comments</comments>
		<pubDate>Fri, 03 Feb 2012 16:00:00 +0000</pubDate>
		<dc:creator>Paul Poulain</dc:creator>
				<category><![CDATA[Koha News]]></category>

		<guid isPermaLink="false">http://koha-community.org/?p=3137</guid>
		<description><![CDATA[I publish, every month since i&#8217;m Release Manager, a newsletter, that is, I hope, usefull for people to discover what is new in the coming Koha. newsletter #1 and #2 have been sent by mail to koha-devel list only.
Everybody should read this newsletter in detail.
If you&#8217;re planning to submit patches, you must. If you&#8217;re just [...]]]></description>
			<content:encoded><![CDATA[<p>I publish, every month since i&#8217;m Release Manager, a newsletter, that is, I hope, usefull for people to discover what is new in the coming Koha. newsletter #1 and #2 have been sent by mail to koha-devel list only.</p>
<p>Everybody should read this newsletter in detail.</p>
<p>If you&#8217;re planning to submit patches, you <strong>must</strong>. If you&#8217;re just a user of Koha, there are some interesting announcements too, you can read it<br />
as well !</p>
<h3>Bugzilla news</h3>
<p>There are 87 bugs waiting to be signed-off.</p>
<p>That&#8217;s too much ! and a problem is that is seems that hard-to-test patches can be lost in the wilderness for a long time.</p>
<p>Small/easy patches are usually quickly signed-off.</p>
<p>The patches to QA pile show a correct 30 patches. Unfortunatly, that&#8217;s the hardest ones too, as I QAed a lot of &#8216;trivial&#8217; patches this month&#8230;</p>
<h3>Bugzilla</h3>
<p>Earlier this month Ian, our QA manager made important changes to our bugzilla setup. The &#8220;patch status&#8221; field has been removed in favor of the &#8220;status&#8221; field. The previous &#8220;patch status&#8221; have all be moved to &#8220;status&#8221;.</p>
<p>2 new status have been added:</p>
<ul>
<li>in discussion = will be used when a patch need a deeper discussion to see if it can/should be added into Koha. The discussion can be functional (is the feature desirable in Koha ?) or technical (is the way it&#8217;s made OK ?) The &#8220;in discussion&#8221; bugs will be discussed on the monthly meeting.</li>
<li>&#8216;pushed to stable&#8217;: pushed has been splitted in &#8220;pushed to master&#8221; and &#8220;pushed to stable&#8221;. The RMaint (Chris N. for now) will use &#8220;Pushed to stable&#8221; when he pushed a patch to stable (3.6). The &#8220;pushed to master&#8221; is used by me when pushing to master (for the future 3.8)</li>
</ul>
<p>The only side effect of this bulkchange is that date of last change of each bug has been reseted to the date of the bulkchange. That&#8217;s annoying if you want to see which patch to signoff is the oldest.</p>
<h3>Coding guidelines</h3>
<p>I&#8217;ve updated the code guideline page on the wiki (<a href="http://wiki.koha-community.org/wiki/Coding_Guidelines">http://wiki.koha-community.org/wiki/Coding_Guidelines</a>)</p>
<p>I&#8217;ve removed all deprecated guidelines, and added some that we already use, and that were not written.</p>
<p>I&#8217;ve added a general rule for QA:</p>
<p>General rule: if you submit code that fixes an existing code that violates those guidelines, the QA can still be passed. You don&#8217;t have to fix everything. If you want to fix more than just your fix, to respect current guidelines, you&#8217;re welcomed of course. But in this case, please to it in a 2nd patch, to have reviewers being able to distinguish easily what&#8217;s related to your bugfix and what is related to your guidelines-violation fixing.</p>
<h3>Important technical patches pushed</h3>
<p>Some important internal changes have been pushed. Those change won&#8217;t be visible for users, but are important for developers</p>
<h4>Date formatting &amp; displaying</h4>
<p>Chris has written a nice Template::Toolkit plugin that will take care of date formatting for you. Before the patch, you had to format dates before sending them to the template, something like:<br />
<code>my $entrydate = C4::Dates-&gt;new( $data-&gt;{'entrydate'}, 'iso' );<br />
$data-&gt;{'entrydate'} = $entrydate-&gt;output("syspref");<br />
# entrydate is now available<br />
</code><br />
Now, you still can do it that way, but that would be a really bad idea: just send the date as it&#8217;s provided by mySQL (iso format), and, in the template, write<br />
<code><br />
[% MyDate | $KohaDates %]<br />
</code><br />
don&#8217;t forget to put [% USE KohaDates %] at the beginning of your page to tell Template::Toolkit you&#8217;ll use this plugin. What must/can be done now is &#8230; update all code &amp; templates displaying dates to use this plugin ! Bug 7444 has been created to reflect all the patches that will be made to switch to KohaDates template.</p>
<p><strong>Coding Guideline rule</strong></p>
<li>all new code displaying date <strong>*MUST*</strong> use this plugin</li>
<li>existing code can still use previous option, but cleaning is highly welcomed</li>
<h4>Datatable jquery plugin</h4>
<p>We&#8217;ve decided some months ago to get rid of the various jquery plugins we use to display large tables, in favor of Datatable.<br />
Datatable has been pushed into master, with a first page using it (patron reading record), and some documentation on the wiki (<a href="http://wiki.koha-community.org/wiki/DataTables_HowTo">http://wiki.koha-community.org/wiki/DataTables_HowTo</a>) </p>
<p><strong>Coding guideline rule</strong></p>
<li>all new code displaying potentially large tables <strong>*MUST*</strong> use this plugin (preferably the &#8220;server side processing&#8221; option)</li>
<li>existing code can still use old plugins, but cleaning is highly welcomed !</li>
</h3>
<p>Important functionnal patches pushed</h3>
<p>Some patches that contains important new features have been pushed. Don&#8217;t hesitate to test them again and again if you&#8217;ve a sandbox. They&#8217;ll be available in Koha 3.8</p>
<h4>UnwantedFields in member entry (bug 6190)</h4>
<p>A new syspref now let you choose fields that you don&#8217;t want to have in patron forms. A very interesting feature as there are <strong>many</strong> fields available. Note that this is a syspref, so you can&#8217;t remove some fields for a given category and keep it for another. But that&#8217;s a nice first step anyway !</p>
<h4>Acquisition changes</h4>
<p>Some changes, coming from the stuff made by BibLibre for StEtienne university have been pushed:</p>
<li>show cancelled order in basket page (bug 5358): after the list of orders, you now also have the list of cancelled lines, on every basket</li>
<li>late order management (bug 5347): Koha now keep track of how many claims you&#8217;ve made on a given order line, and the date of the last claim. The default claim notification has been updated and your claim will have to be updated when upgrading to 3.8</li>
<p>The breakdown of budget spending has also been reintroduced (Bug 929) : on acqui-home.pl page, on each budget you can now see how the budget has been spent.</p>
<h4>Local cover images (bug 1633)</h4>
<p>You can now upload images to your biblios, that will be displayed as cover image. You can also zoom on the image, and, if you&#8217;ve uploaded more than just one, see all of them. This feature can be activated on staff and OPAC independantly.</p>
<h4>j2a.pl script</h4>
<p>The j2a.pl script, that is in misc/cronjobs was previously very basic, upgrading Childs to Adult (hardcoded category) when they reached 18. The script now has many new option to make it much more usefull</p>
<h3>Hackfest in Europe</h3>
<p>Again, in case you missed the news BibLibre (my company, in case you don&#8217;t know) organize a hackfest in Marseille in March. More information at <a href="http://drupal.biblibre.com/en/blog/entry/2012-hackfest-in-europe">http://drupal.biblibre.com/en/blog/entry/2012-hackfest-in-europe</a>, feel free to join, all attendees will get a special thanks on this newsletter after the hackfest. We already have Owen coming from USA, Marc, coming from Switzerland, Katrin coming from Germany, Dobrika and Marijana coming from Croatia, and -probably- Zeno coming from Italy. It&#8217;s still time to join, don&#8217;t hesitate anymore !!! See you next month for the #4 and in the meantime, happy hacking !!!</p>
]]></content:encoded>
			<wfw:commentRss>http://koha-community.org/koha-release-manager-newsletter-3-2012-01/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Koha Trade Mark Usage Policy</title>
		<link>http://koha-community.org/koha-trade-mark-usage-policy/</link>
		<comments>http://koha-community.org/koha-trade-mark-usage-policy/#comments</comments>
		<pubDate>Thu, 02 Feb 2012 00:22:26 +0000</pubDate>
		<dc:creator>jransom</dc:creator>
				<category><![CDATA[Koha News]]></category>
		<category><![CDATA[Koha]]></category>
		<category><![CDATA[trademark]]></category>

		<guid isPermaLink="false">http://koha-community.org/?p=3124</guid>
		<description><![CDATA[On the 18th January 2012, following consultation with the Koha Subcommittee,  Te Horowhenua Library Trust, trading as Horowhenua Library Trust, adopted the following Koha Trademark Usage Policy:
The Horowhenua Library Trust has been elected by the worldwide online Koha user community to be the custodian of Koha intellectual property including the KOHA name and associated [...]]]></description>
			<content:encoded><![CDATA[<p>On the 18th January 2012, following consultation with the Koha Subcommittee,  Te Horowhenua Library Trust, trading as Horowhenua Library Trust, adopted the following Koha Trademark Usage Policy:</p>
<p>The Horowhenua Library Trust has been elected by the worldwide online Koha user community to be the custodian of Koha intellectual property including the KOHA name and associated logos in any form, font or stylisation, and whether alone or in combination with other words or marks, including [insert the Koha logo].</p>
<p>We at the Horowhenua Library Trust love it when people talk about Koha, build businesses around Koha and produce products that make life better for Koha users and developers. We do, however, have a trademark, which we are obliged to protect. The trademark gives us the exclusive right to use the term to promote websites, services, businesses and products. Although those rights are exclusively ours, we are happy to give people permission to use the term under most circumstances.</p>
<p>The following is a general policy that tells you when you can lawfully refer to the KOHA name and associated logos without need of any specific permission from the Horowhenua Library Trust:</p>
<p>First, you must make clear that you are not Horowhenua Library Trust and that you do not represent [Horowhenua Library Trust] or the Koha user community. A simple disclaimer on your home page is an excellent way of doing that.</p>
<p>Second, you may use the KOHA name and logo only in descriptions of your website, product, business or service to provide accurate information to the public about yourself or your website, product, business or service.</p>
<p>If you would like to use the KOHA name or logo for any other use, please contact us and we’ll discuss a way to make that happen. We don’t have strong objections to people using the name for their websites and businesses, but we do need the chance to review such use.</p>
<p>This trade mark usage policy is intended to be legally binding.</p>
<p>Generally, we will approve your use if you agree to a few things, mainly:<br />
(1) our rights to the KOHA trademark are valid and superior to yours and (2) you’ll take appropriate steps to make sure people don’t confuse you with us or your website, product, business or service with ours. In other words, a short conversation (usually done via email) should clear everything up in short order.<br />
If you currently have a website that is using the KOHA name and you have not gotten permission from us, don’t panic. Let us know, and we’ll work it out, as described above.</p>
]]></content:encoded>
			<wfw:commentRss>http://koha-community.org/koha-trade-mark-usage-policy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Update 2 on NZ Koha Trademark Situation</title>
		<link>http://koha-community.org/update-2-nz-koha-trademark-situation/</link>
		<comments>http://koha-community.org/update-2-nz-koha-trademark-situation/#comments</comments>
		<pubDate>Thu, 02 Feb 2012 00:17:50 +0000</pubDate>
		<dc:creator>jransom</dc:creator>
				<category><![CDATA[Koha News]]></category>
		<category><![CDATA[Koha]]></category>
		<category><![CDATA[ptfs]]></category>
		<category><![CDATA[trademark]]></category>

		<guid isPermaLink="false">http://koha-community.org/?p=3122</guid>
		<description><![CDATA[Well things have been very quiet on this front while the lawyers work through the process.
We are being represented by Andrew Matangi from Buddle Findlay with input from Rochelle Furneaux and feel very confident that he has a good understanding of the Koha journey over the last decade or so and how we have got [...]]]></description>
			<content:encoded><![CDATA[<p>Well things have been very quiet on this front while the lawyers work through the process.</p>
<p>We are being represented by Andrew Matangi from Buddle Findlay with input from Rochelle Furneaux and feel very confident that he has a good understanding of the Koha journey over the last decade or so and how we have got to where we are. He is also a specialist in this area so we have been quite relieved to have his hand on the tiller and plotting the course. These things take time and have to be done discretely of course, but a key date has passed and I think it is okay now to update everyone on progress.</p>
<p>A letter was sent to PTFS on the 19th January essentially outlining the grounds on which our objection to their NZ trademark application is based and asking them to assign their NZ trade mark application to the Trust. We also attached a Koha Trademark Usage Policy which the Library Trust recently adopted, following consultation with the Koha Subcommittee. We advised that unless a response was received by noon NZ time on the 1st of February we would file formal opposition.</p>
<p>Well that date has passed without word and so a formal Notice of Opposition is being prepared. The process from here is set out on the <a href="http://www.iponz.govt.nz/cms/trade-marks/the-trade-mark-process/opposing-registration-of-a-trade-mark">IPONZ website</a>.</p>
<p>So there it is, due process being followed and no resolution in sight but we are still very confident that the right decision will be made.</p>
]]></content:encoded>
			<wfw:commentRss>http://koha-community.org/update-2-nz-koha-trademark-situation/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Koha 3.4.8 is now available</title>
		<link>http://koha-community.org/koha-3-4-8/</link>
		<comments>http://koha-community.org/koha-3-4-8/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 14:30:02 +0000</pubDate>
		<dc:creator>Chris Nighswonger</dc:creator>
				<category><![CDATA[3.4]]></category>
		<category><![CDATA[Announcements]]></category>
		<category><![CDATA[Koha]]></category>
		<category><![CDATA[Koha News]]></category>
		<category><![CDATA[release]]></category>

		<guid isPermaLink="false">http://koha-community.org/?p=3041</guid>
		<description><![CDATA[It is with pleasure that I announce the release of Koha 3.4.8.
The package can be retrieved from:
http://download.koha-community.org/koha-3.04.08.tar.gz
You can use the following checksum and signature files to verify the download:
http://download.koha-community.org/koha-3.04.08.tar.gz.MD5
http://download.koha-community.org/koha-3.04.08.tar.gz.MD5.asc
http://download.koha-community.org/koha-3.04.08.tar.gz.sig
Release notes for 3.4.8 are below the fold.
Come and get it!

RELEASE NOTES FOR KOHA 3.4.8
27 Jan 2012
========================================================================
Koha is the first free and open source software library automation [...]]]></description>
			<content:encoded><![CDATA[<h5>It is with pleasure that I announce the release of Koha 3.4.8.</h5>
<p>The package can be retrieved from:</p>
<p><a href="http://download.koha-community.org/koha-3.04.08.tar.gz">http://download.koha-community.org/koha-3.04.08.tar.gz</a></p>
<p>You can use the following checksum and signature files to verify the download:</p>
<p><a href="http://download.koha-community.org/koha-3.04.08.tar.gz.MD5">http://download.koha-community.org/koha-3.04.08.tar.gz.MD5</a><br />
<a href="http://download.koha-community.org/koha-3.04.08.tar.gz.MD5.asc">http://download.koha-community.org/koha-3.04.08.tar.gz.MD5.asc</a><br />
<a href="http://download.koha-community.org/koha-3.04.08.tar.gz.sig">http://download.koha-community.org/koha-3.04.08.tar.gz.sig</a></p>
<p>Release notes for 3.4.8 are below the fold.</p>
<p>Come and get it!</p>
<p><span id="more-3041"></span></p>
<p>RELEASE NOTES FOR KOHA 3.4.8<br />
27 Jan 2012<br />
========================================================================</p>
<p>Koha is the first free and open source software library automation package<br />
(ILS). Development is sponsored by libraries of varying types and sizes,<br />
volunteers, and support companies from around the world.<br />
The website for the Koha project is</p>
<p>http://koha-community.org/</p>
<p>Koha 3.4.8 can be downloaded from:</p>
<p>http://download.koha-community.org/koha-3.04.08.tar.gz</p>
<p>Installation instructions can be found at:</p>
<p>http://wiki.koha-community.org/wiki/Installation_Documentation</p>
<p>OR in the INSTALL files that come in the tarball</p>
<p>Koha 3.4.8 is a bugfix/maintenance release.</p>
<p>Highlights of 3.4.8<br />
======================</p>
<p>6627 blocker [security] insecure file creation<br />
2830 critical Hold not removed when &#8220;trapped&#8221; item on hold shelf is checked out to a different patron in the holds queue<br />
3651 critical Require patron login to send shelves and baskets<br />
5533 critical marking item lost diff in two places<br />
6292 critical Overdue notices have a bug when multiple overdues exist<br />
7093 critical Placeholders for suggestion table in suggestion related mails broken<br />
7160 critical paying fines throws error<br />
7193 critical can&#8217;t remove end date from subscriptions<br />
7316 critical Missing escaping in search results<br />
7360 critical Importing a SQL file for frameworks based on Default Framework deletes the default framework<br />
7370 critical Longoverdue cronjob claims Undefined subroutine &amp;main::LostItem<br />
7407 critical HidePatronName not working anymore<br />
2012 major Add bilio crashes under no zebra<br />
6302 major Failing to send email notices &#8211; to_address not set<br />
6923 major can&#8217;t load help files<br />
7202 major z39.50 search on bib edit not working<br />
7226 major Can&#8217;t add tags on list<br />
7275 major Pagination lost when click in the option &#8220;Show more&#8221; of facets column<br />
Bugs fixed in 3.4.8<br />
======================</p>
<p>2307 normal Calendar widget cannot be translated<br />
2534 normal Viewing items table on item edit screen requires horizontal scrolling<br />
3431 normal Catalog by itemtype report pulling from holdingbranch<br />
5226 normal MARC21 field 545 missing<br />
5369 normal se queries with paranthesis fail<br />
6098 normal zebra conf NSB NSE indexed as space<br />
6142 normal CanBookBeReserved function is redefined in C4/ILSDI/Utility.pm<br />
6374 normal Use &#8220;size&#8221; as names/hash keys leads to an unexpected results when using Template::Toolkit (name of a virtual method there)<br />
6466 normal hung socket read causes SIP tests to fail<br />
6700 normal Better handling of version numbers in updatedatabase<br />
6717 normal Sub total doubled up on borrower pay fines page<br />
6885 normal Superlibrarian users can&#8217;t delete items from another library when IndependantBranches<br />
6917 normal Acquisitions reports: Dates filters doesn&#8217;t work when they are not selected on row or column<br />
7097 normal HidePatronName not hiding in all places<br />
7198 normal overdue report does not display patron name if firstname and/or surname are null<br />
7215 normal callnumber versus itemcallnumber<br />
7245 normal Errors in MySQL tables population with mandatory data for italian installation<br />
7262 normal No calendar present in holidays module when there are quotes in title or description<br />
7276 normal member entry Performance improvement<br />
7277 normal keyword mapping needs spaces in the OPAC<br />
7287 normal overdue notification is processed several times if some sites do not have rules<br />
7313 normal Untranslatable strings in &#8216;search to hold&#8217; feature<br />
7332 normal Translated title (MARC21 field 242) doesn&#8217;t display<br />
7338 normal link to serial detail wrong<br />
7349 normal Sorting patron search result by cardnumber doesn&#8217;t work<br />
7361 normal &#8216;Default&#8217; encoding in staged marc import breaks diacritics<br />
7363 normal Downloading a list in CSV format doesn&#8217;t work<br />
7381 normal wrong isbn showing on the staff search results<br />
1623 enhancement Retain history of approved comments<br />
2011 enhancement Link patron extra sort fields to authorized values<br />
3184 enhancement Show creator and budget receiving a document<br />
5327 enhancement Unit tests required for all C4 modules<br />
5565 enhancement Default OAI UNIMARC to Dublin Core XSL adds superfluous blanks<br />
5607 enhancement Make fields from issues table available in overdues<br />
6193 enhancement Use memcached cache koha-conf.xml configuration variables<br />
6663 enhancement would be nice to put ranges of dates in the calendar<br />
6716 enhancement Database Documentation<br />
6787 enhancement NORMARC needs a Fast Add framework<br />
6865 enhancement Replace image-based gradient backgrounds with CSS3 gradients<br />
6975 enhancement OPACBaseURL called as OPACBaseurl in many templates<br />
7135 enhancement in addbiblio, make save button floating to have it on always on screen<br />
7139 enhancement Log circulation messags<br />
7143 enhancement Bug for tracking changes to the about page<br />
7159 enhancement Add branchcode to circulation.pl search<br />
7164 enhancement add Koha history timeline tab to &#8216;About&#8217; page<br />
7197 enhancement ES translation of the Debian readme<br />
7220 enhancement Add IDs to check-in message dialogs to facilitate CSS customization<br />
7240 enhancement Cleaning up import tables and action_logs<br />
7247 enhancement rebuild_zebra.pl -v should show all Zebra log output<br />
7309 enhancement Add NORMARCslim2intranetDetail.xsl for detail view in intranet<br />
7324 enhancement Show alternate email as mailto link on patron summary<br />
7326 enhancement longoverdue.pl was hardcoded to 1 year, is now a parameter<br />
7373 enhancement new bridge icons<br />
7439 enhancement Mailmap for git shortlog<br />
System requirements<br />
======================</p>
<p>Changes since 3.2:</p>
<p>* Template::Toolkit<br />
Documentation<br />
======================</p>
<p>As of Koha 3.2, the Koha manual is now maintained in DocBook. The<br />
home page for Koha documentation is</p>
<p>http://koha-community.org/documentation/</p>
<p>As of the date of these release notes, only the english version of the<br />
Koha manual is available:</p>
<p>http://koha-community.org/documentation/3-4-manual/</p>
<p>The Git repository for the Koha manual can be found at</p>
<p>http://git.koha-community.org/gitweb/?p=kohadocs.git;a=summary</p>
<p>Translations<br />
======================</p>
<p>Complete or near-complete translations of the OPAC and staff<br />
interface are available in this release for the following languages:</p>
<p>* Chinese<br />
* Danish<br />
* English (New Zealand)<br />
* English (USA)<br />
* French (France)<br />
* French (Canada)<br />
* German<br />
* Greek<br />
* Hindi<br />
* Italian<br />
* Norwegian<br />
* Portuguese<br />
* Spanish<br />
* Turkish</p>
<p>Partial translations are available for various other languages.</p>
<p>The Koha team welcomes additional translations; please see</p>
<p>http://wiki.koha-community.org/wiki/Translating_Koha</p>
<p>for information about translating Koha, and join the koha-translate<br />
list to volunteer:</p>
<p>http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-translate</p>
<p>The most up-to-date translations can be found at:</p>
<p>http://translate.koha-community.org/</p>
<p>Release Team<br />
======================</p>
<p>The release team for Koha 3.4 is</p>
<p>Release Manager: Chris Cormack &lt;chrisc@catalyst.net.nz&gt;<br />
Documentation Manager: Nicole C Engard &lt;nengard@gmail.com&gt;<br />
Translation Manager: Frédéric Demians &lt;frederic@tamil.fr&gt;<br />
Release Maintainer (3.2.x):<br />
Chris Nighswonger &lt;cnighswonger@foundations.edu&gt;<br />
Release Maintainer (3.4.x):<br />
Chris Nighswonger &lt;cnighswonger@foundations.edu&gt;<br />
QA Manager: Colin Campbell<br />
Credits<br />
======================</p>
<p>We thank the following individuals who contributed patches to<br />
Koha 3.4.8 (The numeral in the first column represents the number<br />
of patches included in this release):</p>
<p>1 Tomas Cohen Arazi<br />
2 Alex Arnaud<br />
1 Marc Balmer<br />
3 Brendan<br />
5 Jared Camins-Esakov<br />
1 Frédérick Capovilla<br />
1 Galen Charlton<br />
1 Garry Collum<br />
17 Chris Cormack<br />
2 Christophe Croullebois<br />
7 Frédéric Demians<br />
3 Connor Dewar<br />
8 Nicole Engard<br />
3 Magnus Enger<br />
12 Katrin Fischer<br />
5 Chris Hall<br />
1 Mason James<br />
1 Srdjan Jankovic<br />
1 Admin User Koha<br />
1 Henri-Damien Laurent<br />
20 Owen Leonard<br />
1 Frère Sébastien Marie<br />
1 Jesse Maseto<br />
1 James Mason<br />
2 Julian Maurice<br />
4 Sophie Meynieux<br />
3 Chris Nighswonger<br />
1 Albert Oller<br />
1 Dobrica Pavlinusic<br />
9 Paul Poulain<br />
3 Liz Rea<br />
8 Marcel de Rooy<br />
1 Fridolyn SOMERS<br />
4 Adrien Saurat<br />
1 Robin Sheat<br />
2 Juan Sieira<br />
11 Duncan Tyler<br />
8 Ian Walls<br />
We regret any omissions. If a contributor has been inadvertantly missed,<br />
please send a patch against these release notes to<br />
koha-patches@lists.koha-community.org.</p>
<p>Revision control notes<br />
======================</p>
<p>The Koha project uses Git for version control. The current development<br />
version of Koha can be retrieved by checking out the master branch of</p>
<p>git://git.koha-community.org/koha.git</p>
<p>The branch for Koha 3.4.x (i.e., this version of Koha and future bugfix<br />
releases) is 3.4.x.</p>
<p>The next major feature release of Koha will be Koha 3.6.0.</p>
<p>Bugs and feature requests<br />
======================</p>
<p>Bug reports and feature requests can be filed at the Koha bug<br />
tracker at</p>
<p>http://bugs.koha-community.org/</p>
<p>Ehara taku toa i te toa takitahi, engari he toa takitini</p>
<p>##### Autogenerated release notes updated last on 27 Jan 2012 14:02:53 Z #####</p>
]]></content:encoded>
			<wfw:commentRss>http://koha-community.org/koha-3-4-8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Koha 3.6.3 is now available</title>
		<link>http://koha-community.org/koha-3-6-3/</link>
		<comments>http://koha-community.org/koha-3-6-3/#comments</comments>
		<pubDate>Thu, 26 Jan 2012 15:47:56 +0000</pubDate>
		<dc:creator>Chris Nighswonger</dc:creator>
				<category><![CDATA[3.6]]></category>
		<category><![CDATA[Announcements]]></category>
		<category><![CDATA[Koha]]></category>
		<category><![CDATA[Koha News]]></category>
		<category><![CDATA[release]]></category>

		<guid isPermaLink="false">http://koha-community.org/?p=3038</guid>
		<description><![CDATA[It is with pleasure that I announce the release of Koha 3.6.3.
The package can be retrieved from:
http://download.koha-community.org/koha-3.06.03.tar.gz
You can use the following checksum and signature files to verify the download:
http://download.koha-community.org/koha-3.06.03.tar.gz.MD5
http://download.koha-community.org/koha-3.06.03.tar.gz.MD5.asc
http://download.koha-community.org/koha-3.06.03.tar.gz.sig
Release notes for 3.6.3 are below the fold.
Come and get it!
RELEASE NOTES FOR KOHA 3.6.3
26 Jan 2012
========================================================================
Koha is the first free and open source software library automation [...]]]></description>
			<content:encoded><![CDATA[<h5>It is with pleasure that I announce the release of Koha 3.6.3.</h5>
<p>The package can be retrieved from:</p>
<p><a href="http://download.koha-community.org/koha-3.06.03.tar.gz">http://download.koha-community.org/koha-3.06.03.tar.gz</a></p>
<p>You can use the following checksum and signature files to verify the download:</p>
<p><a href="http://download.koha-community.org/koha-3.06.03.tar.gz.MD5">http://download.koha-community.org/koha-3.06.03.tar.gz.MD5</a><br />
<a href="http://download.koha-community.org/koha-3.06.03.tar.gz.MD5.asc">http://download.koha-community.org/koha-3.06.03.tar.gz.MD5.asc</a><br />
<a href="http://download.koha-community.org/koha-3.06.03.tar.gz.sig">http://download.koha-community.org/koha-3.06.03.tar.gz.sig</a></p>
<p>Release notes for 3.6.3 are below the fold.</p>
<p>Come and get it!<span id="more-3038"></span></p>
<p>RELEASE NOTES FOR KOHA 3.6.3<br />
26 Jan 2012<br />
========================================================================</p>
<p>Koha is the first free and open source software library automation package<br />
(ILS). Development is sponsored by libraries of varying types and sizes,<br />
volunteers, and support companies from around the world.<br />
The website for the Koha project is</p>
<p>http://koha-community.org/</p>
<p>Koha 3.6.3 can be downloaded from:</p>
<p>http://download.koha-community.org/koha-3.06.03.tar.gz</p>
<p>Installation instructions can be found at:</p>
<p>http://wiki.koha-community.org/wiki/Installation_Documentation</p>
<p>OR in the INSTALL files that come in the tarball</p>
<p>Koha 3.6.3 is a bugfix/maintenance release.</p>
<p>Highlights of 3.6.3<br />
======================</p>
<p>6627 blocker [security] insecure file creation<br />
2830 critical Hold not removed when &#8220;trapped&#8221; item on hold shelf is checked out to a different patron in the holds queue<br />
3651 critical Require patron login to send shelves and baskets<br />
5533 critical marking item lost diff in two places<br />
6292 critical Overdue notices have a bug when multiple overdues exist<br />
7193 critical can&#8217;t remove end date from subscriptions<br />
7360 critical Importing a SQL file for frameworks based on Default Framework deletes the default framework<br />
7370 critical Longoverdue cronjob claims Undefined subroutine &amp;main::LostItem<br />
7394 critical Broken detail page for last link from result page<br />
7407 critical HidePatronName not working anymore<br />
2012 major Add bilio crashes under no zebra<br />
6302 major Failing to send email notices &#8211; to_address not set<br />
7226 major Can&#8217;t add tags on list<br />
7282 major invalid language selection<br />
Bugs fixed in 3.6.3<br />
======================</p>
<p>2307 normal Calendar widget cannot be translated<br />
3431 normal Catalog by itemtype report pulling from holdingbranch<br />
4300 normal Display 866z summary holdings public note in OPAC<br />
5226 normal MARC21 field 545 missing<br />
5369 normal se queries with paranthesis fail<br />
6098 normal zebra conf NSB NSE indexed as space<br />
6142 normal CanBookBeReserved function is redefined in C4/ILSDI/Utility.pm<br />
6374 normal Use &#8220;size&#8221; as names/hash keys leads to an unexpected results when using Template::Toolkit (name of a virtual method there)<br />
6466 normal hung socket read causes SIP tests to fail<br />
6700 normal Better handling of version numbers in updatedatabase<br />
6717 normal Sub total doubled up on borrower pay fines page<br />
6885 normal Superlibrarian users can&#8217;t delete items from another library when IndependantBranches<br />
7097 normal HidePatronName not hiding in all places<br />
7266 normal overdue.pl : filter on flags &#8220;debarred&#8221; &#8220;suspended&#8221; and &#8220;gonenoaddress&#8221; not working<br />
7276 normal member entry Performance improvement<br />
7277 normal keyword mapping needs spaces in the OPAC<br />
7311 normal Error when records have UNIMARC 461$0 or 773$0 for something other than bibnumber<br />
7313 normal Untranslatable strings in &#8216;search to hold&#8217; feature<br />
7328 normal Expanded options in advanced search<br />
7332 normal Translated title (MARC21 field 242) doesn&#8217;t display<br />
7338 normal link to serial detail wrong<br />
7349 normal Sorting patron search result by cardnumber doesn&#8217;t work<br />
7356 normal Fix various typos and mis-spellings<br />
7361 normal &#8216;Default&#8217; encoding in staged marc import breaks diacritics<br />
7363 normal Downloading a list in CSV format doesn&#8217;t work<br />
7381 normal wrong isbn showing on the staff search results<br />
1623 enhancement Retain history of approved comments<br />
3184 enhancement Show creator and budget receiving a document<br />
5327 enhancement Unit tests required for all C4 modules<br />
5565 enhancement Default OAI UNIMARC to Dublin Core XSL adds superfluous blanks<br />
5607 enhancement Make fields from issues table available in overdues<br />
5729 enhancement Add coins information to the intranet<br />
6015 enhancement Enhancing the performance test suite<br />
6193 enhancement Use memcached cache koha-conf.xml configuration variables<br />
6787 enhancement NORMARC needs a Fast Add framework<br />
6990 enhancement TransformKohaToMarc enhancement<br />
7079 enhancement Default values for German system preferences (web installer)<br />
7143 enhancement Bug for tracking changes to the about page<br />
7220 enhancement Add IDs to check-in message dialogs to facilitate CSS customization<br />
7240 enhancement Cleaning up import tables and action_logs<br />
7247 enhancement rebuild_zebra.pl -v should show all Zebra log output<br />
7278 enhancement In the items table, make items.materials of type text, and show its contents at circulation<br />
7324 enhancement Show alternate email as mailto link on patron summary<br />
7326 enhancement longoverdue.pl was hardcoded to 1 year, is now a parameter<br />
7364 enhancement Fast-Add framework doesn&#8217;t always get the branch for item creation<br />
7373 enhancement new bridge icons<br />
7439 enhancement Mailmap for git shortlog<br />
System requirements<br />
======================</p>
<p>Changes since 3.4:</p>
<p>* Perl 5.10 is required<br />
Documentation<br />
======================</p>
<p>As of Koha 3.2, the Koha manual is now maintained in DocBook. The<br />
home page for Koha documentation is</p>
<p>http://koha-community.org/documentation/</p>
<p>As of the date of these release notes, only the English version of the<br />
Koha manual is available:</p>
<p>http://manual.koha-community.org/3.6/en/</p>
<p>The Git repository for the Koha manual can be found at</p>
<p>http://git.koha-community.org/gitweb/?p=kohadocs.git;a=summary</p>
<p>Translations<br />
======================</p>
<p>Complete or near-complete translations of the OPAC and staff<br />
interface are available in this release for the following languages:</p>
<p>* Chinese (Taiwan)<br />
* Danish<br />
* English (USA)<br />
* English (UK)<br />
* French (France)<br />
* German<br />
* Italian<br />
* Portuguese (Brazil)<br />
* Spanish</p>
<p>Partial translations are available for various other languages.</p>
<p>The Koha team welcomes additional translations; please see</p>
<p>http://wiki.koha-community.org/wiki/Translating_Koha</p>
<p>for information about translating Koha, and join the koha-translate<br />
list to volunteer:</p>
<p>http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-translate</p>
<p>The most up-to-date translations can be found at:</p>
<p>http://translate.koha-community.org/</p>
<p>Release Team<br />
======================</p>
<p>The release team for Koha 3.6 is</p>
<p>Release Manager: Chris Cormack &lt;chrisc@catalyst.net.nz&gt;<br />
Documentation Manager: Nicole C Engard &lt;nengard@gmail.com&gt;<br />
Translation Manager: Frédéric Demians &lt;frederic@tamil.fr&gt;<br />
QA Manager: Ian Walls &lt;ian.walls@bywatersolutions.com&gt;<br />
Bug Wranglers: MJ Ray, Marcel de Rooy, Paul Poulain, Mason James</p>
<p>Release Maintainer (3.4.x):<br />
Chris Nighswonger &lt;cnighswonger@foundations.edu&gt;<br />
Release Maintainer (3.6.x):<br />
Chris Nighswonger &lt;cnighswonger@foundations.edu&gt;</p>
<p>&nbsp;</p>
<p>Credits<br />
======================</p>
<p>We thank the following libraries who are known to have sponsored<br />
new features in Koha 3.6:<br />
* Los Gatos Public Library<br />
* NEKLS<br />
* East Brunswick Public Library<br />
* Athens County Public Libraries<br />
* Horowhenua Library Trust<br />
* Halton Borough Council<br />
* South Taranaki District Council</p>
<p>We thank the following individuals who contributed patches to<br />
Koha 3.6.3.</p>
<p>1 Tomas Cohen Arazi<br />
1 Alex Arnaud<br />
2 Marc Balmer<br />
2 D Ruth Bavousett<br />
6 Jared Camins-Esakov<br />
1 Frédérick Capovilla<br />
1 Garry Collum<br />
15 Chris Cormack<br />
1 Christophe Croullebois<br />
8 Frédéric Demians<br />
3 Connor Dewar<br />
2 Nicole Engard<br />
2 Magnus Enger<br />
14 Katrin Fischer<br />
4 Chris Hall<br />
1 Srdjan Jankovic<br />
1 Admin User Koha<br />
2 Henri-Damien Laurent<br />
12 Owen Leonard<br />
1 Frère Sébastien Marie<br />
1 Jesse Maseto<br />
1 James Mason<br />
2 Julian Maurice<br />
3 Sophie Meynieux<br />
5 Chris Nighswonger<br />
1 Albert Oller<br />
1 Dobrica Pavlinusic<br />
10 Paul Poulain<br />
2 Liz Rea<br />
7 Marcel de Rooy<br />
1 Fridolyn SOMERS<br />
1 Sam Sanders<br />
5 Adrien Saurat<br />
11 Duncan Tyler<br />
5 Ian Walls<br />
We regret any omissions. If a contributor has been inadvertantly missed,<br />
please send a patch against these release notes to<br />
koha-patches@lists.koha-community.org.</p>
<p>Revision control notes<br />
======================</p>
<p>The Koha project uses Git for version control. The current development<br />
version of Koha can be retrieved by checking out the master branch of</p>
<p>git://git.koha-community.org/koha.git</p>
<p>The branch for Koha 3.6.x (i.e., this version of Koha and future bugfix<br />
releases) is 3.6.x.</p>
<p>The next major feature release of Koha will be Koha 3.8.0.</p>
<p>Bugs and feature requests<br />
======================</p>
<p>Bug reports and feature requests can be filed at the Koha bug<br />
tracker at</p>
<p>http://bugs.koha-community.org/</p>
<p>Ehara taku toa i te toa takitahi, engari he toa takitini</p>
<p>##### Autogenerated release notes updated last on 26 Jan 2012 15:06:56 Z #####</p>
]]></content:encoded>
			<wfw:commentRss>http://koha-community.org/koha-3-6-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Koha 3.6.2 is now available</title>
		<link>http://koha-community.org/koha-3-6-2/</link>
		<comments>http://koha-community.org/koha-3-6-2/#comments</comments>
		<pubDate>Thu, 22 Dec 2011 23:22:23 +0000</pubDate>
		<dc:creator>Chris Nighswonger</dc:creator>
				<category><![CDATA[3.6]]></category>
		<category><![CDATA[Announcements]]></category>
		<category><![CDATA[Koha]]></category>
		<category><![CDATA[Koha News]]></category>
		<category><![CDATA[release]]></category>

		<guid isPermaLink="false">http://koha-community.org/?p=2987</guid>
		<description><![CDATA[It is with pleasure that I announce the release of Koha 3.6.2.
The package can be retrieved from:
http://download.koha-community.org/koha-3.06.02.tar.gz
You can use the following checksum and signature files to verify the download:
http://download.koha-community.org/koha-3.06.02.tar.gz.MD5
http://download.koha-community.org/koha-3.06.02.tar.gz.MD5.asc
http://download.koha-community.org/koha-3.06.02.tar.gz.sig
Release notes for 3.6.2 are below the fold.
Come and get it!
RELEASE NOTES FOR KOHA 3.6.2
22 Dec 2011
========================================================================

Koha is the first free and open source software library automation [...]]]></description>
			<content:encoded><![CDATA[<h5>It is with pleasure that I announce the release of Koha 3.6.2.</h5>
<p>The package can be retrieved from:</p>
<p><a href="http://download.koha-community.org/koha-3.06.02.tar.gz">http://download.koha-community.org/koha-3.06.02.tar.gz</a></p>
<p>You can use the following checksum and signature files to verify the download:</p>
<p><a href="http://download.koha-community.org/koha-3.06.02.tar.gz.MD5">http://download.koha-community.org/koha-3.06.02.tar.gz.MD5</a><br />
<a href="http://download.koha-community.org/koha-3.06.02.tar.gz.MD5.asc">http://download.koha-community.org/koha-3.06.02.tar.gz.MD5.asc</a><br />
<a href="http://download.koha-community.org/koha-3.06.02.tar.gz.sig">http://download.koha-community.org/koha-3.06.02.tar.gz.sig</a></p>
<p>Release notes for 3.6.2 are below the fold.</p>
<p>Come and get it!<span id="more-2987"></span></p>
<pre>RELEASE NOTES FOR KOHA 3.6.2
22 Dec 2011
========================================================================

Koha is the first free and open source software library automation package
(ILS). Development is sponsored by libraries of varying types and sizes,
volunteers, and support companies from around the world.
The website for the Koha project is 

http://koha-community.org/

Koha 3.6.2 can be downloaded from:

http://download.koha-community.org/koha-3.06.02.tar.gz

Installation instructions can be found at:

http://wiki.koha-community.org/wiki/Installation_Documentation

    OR in the INSTALL files that come in the tarball

Koha 3.6.2 is a bugfix/maintenance release.

Highlights of 3.6.2
======================

7285	blocker		ILSDI service AuthenticatePatron doesn't work
6740	critical	can add items at ordering but not remove items
6786	critical	False detection of index names in Search; make index names case insensitive
6893	critical	Order from suggestion does not remove suggestion from 'accepted' list
7093	critical	Placeholders for suggestion table in suggestion related mails broken
7160	critical	paying fines throws error
7316	critical	Missing escaping in search results
5211	major		marking lost (long overdue) not charging fines
6022	major		Auth_with_ldap check if categorycode is valid
6530	major		item due notice label saying 'unknown'
7202	major		z39.50 search on bib edit not working
7250	major		stage_biblios_file.pl is missing options for encodings, wrongly passing the MARC flavour instead
7275	major		Pagination lost when click in the option "Show more" of facets column

Bugs fixed in 3.6.2
======================

2346	normal		consolidate duplicate methods C4::Overdues::UpdateBorrowerDebarred and C4::Members::DebarMember
4330	normal		Copyright statements out of date
5604	normal		additional icons for the Seshat set
5974	normal		Bogus auth check for "StaffMember" role
6291	normal		Cart printing truncated in Firefox
6877	normal		test for Libravatar::URL can cause scripts to abort
6894	normal		Default currency on Acquisitions suggestion form
6917	normal		Acquisitions reports: Dates filters doesn't work when they are not selected on row or column
6926	normal		overdue_notices don't send itemcount to notification
6966	normal		Update Help Files for Koha 3.6 Release
6997	normal		koha-remove leaves system in inconsistent state if there is an error
7028	normal		koha-conf.xml template that comes with the packages needs updating
7105	normal		Bad sql request in GetSubscriptions
7108	normal		Lists of "Similar" languages break display across multiple lines in both Opac and Intranet
7120	normal		After deleting order from order receive page redirect fails
7124	normal		Back to search wrapping in lower resolutions
7141	normal		The biblio details page in the intranet doesn't work if XSLT is activated and the xsl file contains "&amp;nbsp;"
7198	normal		overdue report does not display patron name if firstname and/or surname are null
7215	normal		callnumber versus itemcallnumber
7216	normal		koha-restore doesn't set HOME
7245	normal		Errors in MySQL tables population with mandatory data for italian installation
7251	normal		Fields are separated by "t" when the delimiter preference is set to "tabulation" in overdue_notices.pl
7254	normal		Show pending orders from baskets with closedate &gt; 180 days
7262	normal		No calendar present in holidays module when there are quotes in title or description
7268	normal		Templates failing translation tests
7280	normal		Can't place hold without selecting on list
7287	normal		overdue notification is processed several times if some sites do not have rules
2011	enhancement	Link patron extra sort fields to authorized values
3385	enhancement	Add checkout date and renewal date to display list of checked out items
4051	enhancement	add columns to overdues export
4877	enhancement	Create and update the manual pages for the koha-* scripts.
5327	enhancement	Unit tests required for all C4 modules
6303	enhancement	Display Organisation and Parent Organisation names when viewing a borrower of type organisation
6663	enhancement	would be nice to put ranges of dates in the calendar
6716	enhancement	Database Documentation
6818	enhancement	acquisitions basket groups could use some design work
6865	enhancement	Replace image-based gradient backgrounds with CSS3 gradients
7008	enhancement	Sometimes zebra needs a tmp directory that it doesn't create itself
7041	enhancement	Sort &gt;1000 search results with sortmax parameter in zebra config file
7073	enhancement	GetCOinSBiblio should take $record, not $biblionumber
7091	enhancement	Patches required to make the packages know about the 3.6 release
7135	enhancement	in addbiblio, make save button floating to have it on always on screen
7139	enhancement	Log circulation messags
7143	enhancement	Bug for tracking changes to the about page
7159	enhancement	Add branchcode to circulation.pl search
7164	enhancement	add Koha history timeline tab to 'About' page
7197	enhancement	ES translation of the Debian readme
7259	enhancement	Show a count of items pending approval on staff client home and tools pages
7309	enhancement	Add NORMARCslim2intranetDetail.xsl for detail view in intranet

System requirements
======================

    Changes since 3.4:

    * Perl 5.10 is required

Documentation
======================

As of Koha 3.2, the Koha manual is now maintained in DocBook.  The
home page for Koha documentation is 

http://koha-community.org/documentation/

As of the date of these release notes, only the English version of the
Koha manual is available:

http://manual.koha-community.org/3.6/en/

The Git repository for the Koha manual can be found at

http://git.koha-community.org/gitweb/?p=kohadocs.git;a=summary

Translations
======================

Complete or near-complete translations of the OPAC and staff
interface are available in this release for the following languages:

  * Chinese (Taiwan)
  * Danish
  * English (USA)
  * English (UK)
  * French (France)
  * German
  * Italian
  * Portuguese (Brazil)
  * Spanish

Partial translations are available for various other languages.

The Koha team welcomes additional translations; please see

http://wiki.koha-community.org/wiki/Translating_Koha

for information about translating Koha, and join the koha-translate
list to volunteer:

http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-translate

The most up-to-date translations can be found at:

http://translate.koha-community.org/

Release Team
======================

The release team for Koha 3.6 is

Release Manager:        Chris Cormack &lt;chrisc@catalyst.net.nz&gt;
Documentation Manager:  Nicole C Engard &lt;nengard@gmail.com&gt;
Translation Manager:    Frédéric Demians &lt;frederic@tamil.fr&gt;
QA Manager:             Ian Walls &lt;ian.walls@bywatersolutions.com&gt;
Bug Wranglers:          MJ Ray, Marcel de Rooy, Paul Poulain, Mason James

Release Maintainer (3.4.x):
                        Chris Nighswonger &lt;cnighswonger@foundations.edu&gt;
Release Maintainer (3.6.x):
                        Chris Nighswonger &lt;cnighswonger@foundations.edu&gt;

Credits
======================

We thank the following libraries who are known to have sponsored
new features in Koha 3.6:
  * Los Gatos Public Library
  * NEKLS
  * East Brunswick Public Library
  * Athens County Public Libraries
  * Horowhenua Library Trust
  * Halton Borough Council
  * South Taranaki District Council

We thank the following individuals who contributed patches to
Koha 3.6.2. 

     1	Jon Aker
     2	Alex Arnaud
     1	Greg Barniskis
     3	Brendan
     3	Jared Camins-Esakov
     3	Colin Campbell
     2	Frédérick Capovilla
     1	Galen Charlton
    16	Chris Cormack
     2	Christophe Croullebois
     3	Frédéric Demians
     7	Nicole Engard
     2	Magnus Enger
     8	Katrin Fischer
     2	Chris Hall
     2	Mason James
     2	Srdjan Jankovic
     1	Henri-Damien Laurent
    18	Owen Leonard
     1	Frère Sébastien Marie
     1	Sophie Meynieux
    15	Chris Nighswonger
     1	Albert Oller
     1	Dobrica Pavlinusic
     1	Maxime Pelletier
    15	Paul Poulain
     2	Liz Rea
     2	Martin Renvoize
     6	Marcel de Rooy
     2	Adrien Saurat
     5	Robin Sheat
     2	Juan Sieira
     4	Ian Walls

We regret any omissions.  If a contributor has been inadvertantly missed,
please send a patch against these release notes to
koha-patches@lists.koha-community.org.

Revision control notes
======================

The Koha project uses Git for version control.  The current development
version of Koha can be retrieved by checking out the master branch of 

    git://git.koha-community.org/koha.git

The branch for Koha 3.6.x (i.e., this version of Koha and future bugfix
releases) is 3.6.x.

The next major feature release of Koha will be Koha 3.8.0.

Bugs and feature requests
======================

Bug reports and feature requests can be filed at the Koha bug
tracker at

http://bugs.koha-community.org/

Ehara taku toa i te toa takitahi, engari he toa takitini 

##### Autogenerated release notes updated last on 22 Dec 2011 22:53:23 Z #####</pre>
]]></content:encoded>
			<wfw:commentRss>http://koha-community.org/koha-3-6-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Koha 3.4.7 is now available</title>
		<link>http://koha-community.org/koha-3-4-7/</link>
		<comments>http://koha-community.org/koha-3-4-7/#comments</comments>
		<pubDate>Wed, 07 Dec 2011 18:03:46 +0000</pubDate>
		<dc:creator>Chris Nighswonger</dc:creator>
				<category><![CDATA[3.6]]></category>
		<category><![CDATA[Announcements]]></category>
		<category><![CDATA[Koha]]></category>
		<category><![CDATA[Koha News]]></category>
		<category><![CDATA[release]]></category>

		<guid isPermaLink="false">http://koha-community.org/?p=2971</guid>
		<description><![CDATA[It is with pleasure that I announce the release of Koha 3.4.7.
The package can be retrieved from:
http://download.koha-community.org/koha-3.04.07.tar.gz
You can use the following checksum and signature files to verify the download:
http://download.koha-community.org/koha-3.04.07.tar.gz.MD5
http://download.koha-community.org/koha-3.04.07.tar.gz.MD5.asc
http://download.koha-community.org/koha-3.04.07.tar.gz.sig
Release notes for 3.4.7 are below the fold.
Come and get it!
RELEASE NOTES FOR KOHA 3.4.7
07 Dec 2011
========================================================================

Koha is the first free and open source software library automation [...]]]></description>
			<content:encoded><![CDATA[<h5>It is with pleasure that I announce the release of Koha 3.4.7.</h5>
<p>The package can be retrieved from:</p>
<p><a href="http://download.koha-community.org/koha-3.04.07.tar.gz">http://download.koha-community.org/koha-3.04.07.tar.gz</a></p>
<p>You can use the following checksum and signature files to verify the download:</p>
<p><a href="http://download.koha-community.org/koha-3.04.07.tar.gz.MD5">http://download.koha-community.org/koha-3.04.07.tar.gz.MD5</a><br />
<a href="http://download.koha-community.org/koha-3.04.07.tar.gz.MD5.asc">http://download.koha-community.org/koha-3.04.07.tar.gz.MD5.asc</a><br />
<a href="http://download.koha-community.org/koha-3.04.07.tar.gz.sig">http://download.koha-community.org/koha-3.04.07.tar.gz.sig</a></p>
<p>Release notes for 3.4.7 are below the fold.</p>
<p>Come and get it!<span id="more-2971"></span></p>
<pre>RELEASE NOTES FOR KOHA 3.4.7
07 Dec 2011
========================================================================

Koha is the first free and open source software library automation package
(ILS). Development is sponsored by libraries of varying types and sizes,
volunteers, and support companies from around the world.
The website for the Koha project is 

http://koha-community.org/

Koha 3.4.7 can be downloaded from:

http://download.koha-community.org/koha-3.04.07.tar.gz

Installation instructions can be found at:

http://wiki.koha-community.org/wiki/Installation_Documentation

    OR in the INSTALL files that come in the tarball

Koha 3.4.7 is a bugfix/maintenance release.

Highlights of 3.4.7
======================

7138	blocker		Can't print basket group order pdf.
6628	critical	[security] help system use insecure REFERRER for file inclusion
6629	critical	[security] insecure use of Cookie for language selection
5945	major		can't search patron's email anymore
6475	major		Edit it's not possible subfield "0" in MARC framework
6977	major		Support for repeated subfields when importing an authority into a biblio record field.
7069	major		Javascript errors in tags/review
7095	major		Merge Marker Test Issues Unclear Failure Messages
7134	major		patron records getting funny birthdays
7207	major		Cannot export label batches

Bugs fixed in 3.4.7
======================

3958	normal		Standardize vendor/supplier/bookseller terminology
5885	normal		UNIMARC XSLT changes
5974	normal		Bogus auth check for "StaffMember" role
6799	normal		rebuild_zebra.pl -x produces invalid XML records
6895	normal		Diacritics in Pootle/po files are broken in source text
6963	normal		When creating a new order, the item isn't added if its barcode already exists in the items table.
6994	normal		'No budget defined' showing up although budgets and funds are defined
7076	normal		shelfpage renders OPAC XSLT bloc for intranet Lists
7146	normal		Update timestamps when deleting a biblio
4161	enhancement	When adding Vendor default to active currencies
6471	enhancement	column sorter on holds queue
7128	enhancement	logged in and logged out states of opac-main.tt are hard to style
7184	enhancement	have mysql returning errors
7188	enhancement	case-insensitive grep of /mysql/ in C4::Context

System requirements
======================

    Changes since 3.2:

    * Template::Toolkit

Documentation
======================

As of Koha 3.2, the Koha manual is now maintained in DocBook.  The
home page for Koha documentation is

http://koha-community.org/documentation/

As of the date of these release notes, only the english version of the
Koha manual is available:

http://koha-community.org/documentation/3-4-manual/

The Git repository for the Koha manual can be found at

http://git.koha-community.org/gitweb/?p=kohadocs.git;a=summary

Translations
======================

Complete or near-complete translations of the OPAC and staff
interface are available in this release for the following languages:

  * Chinese
  * Danish
  * English (New Zealand)
  * English (USA)
  * French (France)
  * French (Canada)
  * German
  * Greek
  * Hindi
  * Italian
  * Norwegian
  * Portuguese
  * Spanish
  * Turkish

Partial translations are available for various other languages.

The Koha team welcomes additional translations; please see

http://wiki.koha-community.org/wiki/Translating_Koha

for information about translating Koha, and join the koha-translate
list to volunteer:

http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-translate

The most up-to-date translations can be found at:

http://translate.koha-community.org/

Release Team
======================

The release team for Koha 3.4 is

Release Manager:        Chris Cormack &lt;chrisc@catalyst.net.nz&gt;
Documentation Manager:  Nicole C Engard &lt;nengard@gmail.com&gt;
Translation Manager:    FrÃ©dÃ©ric Demians &lt;frederic@tamil.fr&gt;
Release Maintainer (3.2.x):
                        Chris Nighswonger &lt;cnighswonger@foundations.edu&gt;
Release Maintainer (3.4.x):
                        Chris Nighswonger &lt;cnighswonger@foundations.edu&gt;
QA Manager:             Colin Campbell

Credits
======================

We thank the following individuals who contributed patches to
Koha 3.4.7 (The numeral in the first column represents the number
of patches included in this release):

     1	Nahuel ANGELINETTI
     5	FrÃ©dÃ©rick Capovilla
    10	Chris Cormack
     2	FrÃ©dÃ©ric Demians
     4	Katrin Fischer
     3	Owen Leonard
     1	Joy Nelson
     4	Chris Nighswonger
     2	Maxime Pelletier
     5	Paul Poulain
     2	Liz Rea
     1	Marcel de Rooy
     1	Salvador Zaragoza Rubio
     6	Ian Walls

We regret any omissions.  If a contributor has been inadvertantly missed,
please send a patch against these release notes to
koha-patches@lists.koha-community.org.

Revision control notes
======================

The Koha project uses Git for version control.  The current development
version of Koha can be retrieved by checking out the master branch of 

    git://git.koha-community.org/koha.git

The branch for Koha 3.4.x (i.e., this version of Koha and future bugfix
releases) is 3.4.x.

The next major feature release of Koha will be Koha 3.6.0.

Bugs and feature requests
======================

Bug reports and feature requests can be filed at the Koha bug
tracker at

http://bugs.koha-community.org/

Ehara taku toa i te toa takitahi, engari he toa takitini

##### Autogenerated release notes updated last on 07 Dec 2011 16:48:02 Z #####</pre>
]]></content:encoded>
			<wfw:commentRss>http://koha-community.org/koha-3-4-7/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Koha 3.6.1 is now available</title>
		<link>http://koha-community.org/koha-3-6-1/</link>
		<comments>http://koha-community.org/koha-3-6-1/#comments</comments>
		<pubDate>Tue, 29 Nov 2011 02:03:03 +0000</pubDate>
		<dc:creator>Chris Nighswonger</dc:creator>
				<category><![CDATA[3.6]]></category>
		<category><![CDATA[Announcements]]></category>
		<category><![CDATA[Koha]]></category>
		<category><![CDATA[Koha News]]></category>
		<category><![CDATA[release]]></category>

		<guid isPermaLink="false">http://koha-community.org/?p=2929</guid>
		<description><![CDATA[It is with pleasure that I announce the release of Koha 3.6.1.
The package can be retrieved from:
http://download.koha-community.org/koha-3.06.01.tar.gz
You can use the following checksum and signature files to verify the download:
http://download.koha-community.org/koha-3.06.01.tar.gz.MD5
http://download.koha-community.org/koha-3.06.01.tar.gz.MD5.asc
http://download.koha-community.org/koha-3.06.01.tar.gz.sig
Release notes for 3.6.1 are below the fold.
Come and get it!
RELEASE NOTES FOR KOHA 3.6.1
29 Nov 2011
========================================================================

Koha is the first free and open source software library automation [...]]]></description>
			<content:encoded><![CDATA[<h5>It is with pleasure that I announce the release of Koha 3.6.1.</h5>
<p>The package can be retrieved from:</p>
<p><a title="Koha 3.6.1" href="http://download.koha-community.org/koha-3.06.01.tar.gz">http://download.koha-community.org/koha-3.06.01.tar.gz</a></p>
<p>You can use the following checksum and signature files to verify the download:</p>
<p><a title="Koha 3.06.01" href="http://download.koha-community.org/koha-3.06.01.tar.gz.MD5">http://download.koha-community.org/koha-3.06.01.tar.gz.MD5</a><br />
<a href="http://download.koha-community.org/koha-3.06.01.tar.gz.MD5.asc">http://download.koha-community.org/koha-3.06.01.tar.gz.MD5.asc</a><br />
<a href="http://download.koha-community.org/koha-3.06.01.tar.gz.sig">http://download.koha-community.org/koha-3.06.01.tar.gz.sig</a></p>
<p>Release notes for 3.6.1 are below the fold.</p>
<p>Come and get it!<span id="more-2929"></span></p>
<pre>RELEASE NOTES FOR KOHA 3.6.1
29 Nov 2011
========================================================================

Koha is the first free and open source software library automation package
(ILS). Development is sponsored by libraries of varying types and sizes,
volunteers, and support companies from around the world.
The website for the Koha project is 

http://koha-community.org/

Koha 3.6.1 can be downloaded from:

http://download.koha-community.org/koha-3.06.01.tar.gz

Installation instructions can be found at:

http://wiki.koha-community.org/wiki/Installation_Documentation

    OR in the INSTALL files that come in the tarball

Koha 3.6.1 is a bugfix/maintenance release.

Highlights of 3.6.1
======================

7138	blocker		Can't print basket group order pdf.
6628	critical	[security] help system use insecure REFERRER for file inclusion
6629	critical	[security] insecure use of Cookie for language selection
5945	major		can't search patron's email anymore
6475	major		Edit it's not possible subfield "0" in MARC framework
6977	major		Support for repeated subfields when importing an authority into a biblio record field.
7069	major		Javascript errors in tags/review
7085	major		Problems with searching for orders in acquisitions
7095	major		Merge Marker Test Issues Unclear Failure Messages
7134	major		patron records getting funny birthdays
7207	major		Cannot export label batches

Bugs fixed in 3.6.1
======================

2847	normal		Use HTML escape in templates where appropriate
3958	normal		Standardize vendor/supplier/bookseller terminology
5885	normal		UNIMARC XSLT changes
5974	normal		Bogus auth check for "StaffMember" role
6390	normal		Basket only visible for librarian who created it
6799	normal		rebuild_zebra.pl -x produces invalid XML records
6895	normal		Diacritics in Pootle/po files are broken in source text
6963	normal		When creating a new order, the item isn't added if its barcode already exists in the items table.
6994	normal		'No budget defined' showing up although budgets and funds are defined
7076	normal		shelfpage renders OPAC XSLT bloc for intranet Lists
7146	normal		Update timestamps when deleting a biblio
4161	enhancement	When adding Vendor default to active currencies
6471	enhancement	column sorter on holds queue
7128	enhancement	logged in and logged out states of opac-main.tt are hard to style
7184	enhancement	have mysql returning errors
7188	enhancement	case-insensitive grep of /mysql/ in C4::Context

System requirements
======================

    Changes since 3.4:

    * Perl 5.10 is required

Documentation
======================

As of Koha 3.2, the Koha manual is now maintained in DocBook.  The
home page for Koha documentation is 

http://koha-community.org/documentation/

As of the date of these release notes, only the English version of the
Koha manual is available:

http://manual.koha-community.org/3.6/en/

The Git repository for the Koha manual can be found at

http://git.koha-community.org/gitweb/?p=kohadocs.git;a=summary

Translations
======================

Complete or near-complete translations of the OPAC and staff
interface are available in this release for the following languages:

  * Chinese (Taiwan)
  * Danish
  * English (USA)
  * English (UK)
  * French (France)
  * German
  * Italian
  * Portuguese (Brazil)
  * Spanish

Partial translations are available for various other languages.

The Koha team welcomes additional translations; please see

http://wiki.koha-community.org/wiki/Translating_Koha

for information about translating Koha, and join the koha-translate
list to volunteer:

http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-translate

The most up-to-date translations can be found at:

http://translate.koha-community.org/

Release Team
======================

The release team for Koha 3.6 is

Release Manager:        Chris Cormack &lt;chrisc@catalyst.net.nz&gt;
Documentation Manager:  Nicole C Engard &lt;nengard@gmail.com&gt;
Translation Manager:    FrÃ©dÃ©ric Demians &lt;frederic@tamil.fr&gt;
QA Manager:             Ian Walls &lt;ian.walls@bywatersolutions.com&gt;
Bug Wranglers:          MJ Ray, Marcel Roy, Paul Poulain, Mason James

Release Maintainer (3.4.x):
                        Chris Nighswonger &lt;cnighswonger@foundations.edu&gt;
Release Maintainer (3.6.x):
                        Chris Nighswonger &lt;cnighswonger@foundations.edu&gt;

Credits
======================

We thank the following libraries who are known to have sponsored
new features in Koha 3.6:
  * Los Gatos Public Library
  * NEKLS
  * East Brunswick Public Library
  * Athens County Public Libraries
  * Horowhenua Library Trust
  * Halton Borough Council
  * South Taranaki District Council

We thank the following individuals who contributed patches to
Koha 3.6.1. 

     1	Nahuel ANGELINETTI
     5	FrÃ©dÃ©rick Capovilla
    12	Chris Cormack
     2	FrÃ©dÃ©ric Demians
     4	Katrin Fischer
     6	Owen Leonard
     1	Julian Maurice
     1	Joy Nelson
     4	Chris Nighswonger
     2	Maxime Pelletier
     5	Paul Poulain
     2	Liz Rea
     1	Marcel de Rooy
     1	Salvador Zaragoza Rubio
     7	Ian Walls

We regret any omissions.  If a contributor has been inadvertantly missed,
please send a patch against these release notes to
koha-patches@lists.koha-community.org.

Revision control notes
======================

The Koha project uses Git for version control.  The current development
version of Koha can be retrieved by checking out the master branch of 

    git://git.koha-community.org/koha.git

The branch for Koha 3.6.x (i.e., this version of Koha and future bugfix
releases) is 3.6.x.

The next major feature release of Koha will be Koha 3.8.0.

Bugs and feature requests
======================

Bug reports and feature requests can be filed at the Koha bug
tracker at

http://bugs.koha-community.org/

Ehara taku toa i te toa takitahi, engari he toa takitini 

##### Autogenerated release notes updated last on 29 Nov 2011 at 02:37:44Z #####</pre>
]]></content:encoded>
			<wfw:commentRss>http://koha-community.org/koha-3-6-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Update on NZ Koha trademark.</title>
		<link>http://koha-community.org/update-2/</link>
		<comments>http://koha-community.org/update-2/#comments</comments>
		<pubDate>Fri, 25 Nov 2011 02:20:43 +0000</pubDate>
		<dc:creator>jransom</dc:creator>
				<category><![CDATA[Koha News]]></category>
		<category><![CDATA[Koha]]></category>
		<category><![CDATA[ptfs]]></category>
		<category><![CDATA[trademark]]></category>

		<guid isPermaLink="false">http://koha-community.org/?p=2887</guid>
		<description><![CDATA[Who would have thought that one little blog post on a Tuesday morning would have generated so much interest and debate and support.
Horowhenua Library Trust have been bowled over by the generosity of a global community who are as concerned as we are at the PTFS New Zealand trade application to register the mark Koha [...]]]></description>
			<content:encoded><![CDATA[<p>Who would have thought that one little blog post on a Tuesday morning would have generated so much interest and debate and support.</p>
<p>Horowhenua Library Trust have been bowled over by the generosity of a global community who are as concerned as we are at the PTFS New Zealand trade application to register the mark Koha in relation to software.</p>
<p>We have received hundreds of emails offering support for fighting the ‘good fight’. I haven’t quite replied to them all yet – but I am trying . The press have provided balanced coverage with Radio NZ, TV1 and TV3 all reporting the story pretty accurately here, generating much discussion in Maori and mainstream media forums.</p>
<p>We have accumulated donations of about $12k, mostly through $20 and $50 donations from individuals around the globe (including many Americans) and the generosity of the legal profession offering free representation is amazing.</p>
<p>We have accepted the services of Sacha Judd, Andrew Matangi &amp; John Glengarry from Buddle Findlay, assisted by Rochelle Furneaux, who have agreed to work pro-bono for us (bless them all I say). They have been guiding us for the last few days and are busy preparing a objection to the PTFS / Liblime application should one be necessary.</p>
<p>We believe we are well placed now to mount a strong legal challenge and we think we have enough in donations to cover filing fees, document costs and other disbursements. While It goes completely against my nature to turn down donations to Horowhenua Library Trust, in all conscience we should stop the fundraising drive at this stage. Rest assured if is necessary to challenge the PTFS application all the way to the High Court then we may well be coming back cap in hand!</p>
<p>PTFS have issued a press release saying they are willing to hand the NZ Koha trademark over to a non-profit representing the Koha community. That organisation is the Horowhenua Library Trust, elected by the Koha global community, and we would be delighted to accept that offer and add the NZ Koha trademark to the store of other Koha community property we currently hold in trust ie domain names and trademarks. It would be a very simple matter for PTFS to assign the existing application to Horowhenua Library Trust and we invite PTFS to do so. The Library Trust has never stopped any Koha user or developer or vendor from carrying out their business. Our track record over the last 12 years of releasing the Koha code and supporting the Koha community to go about its business unimpeded is exemplary and we have no intention of ever changing that approach.</p>
]]></content:encoded>
			<wfw:commentRss>http://koha-community.org/update-2/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Plea for help from Horowhenua Library Trust</title>
		<link>http://koha-community.org/plea-horowhenua-library-trust/</link>
		<comments>http://koha-community.org/plea-horowhenua-library-trust/#comments</comments>
		<pubDate>Mon, 21 Nov 2011 21:44:44 +0000</pubDate>
		<dc:creator>jransom</dc:creator>
				<category><![CDATA[Koha News]]></category>
		<category><![CDATA[Koha]]></category>
		<category><![CDATA[trademark]]></category>

		<guid isPermaLink="false">http://koha-community.org/?p=2885</guid>
		<description><![CDATA[Update
 (by Liz Rea on behalf of the community):
There has been a lot of news in the last 24 hours &#8211; much of it has been collected in this Zotero group. Coverage of the story includes three radio stories, one TV clip, blog posts, tweets, Facebook and G+ updates. We are overwhelmed by the support [...]]]></description>
			<content:encoded><![CDATA[<h4>Update</h4>
<p> (by Liz Rea on behalf of the community):<br />
There has been a lot of news in the last 24 hours &#8211; much of it has been collected in <a href="http://www.zotero.org/groups/koha">this Zotero group.</a> Coverage of the story includes three radio stories, one TV clip, blog posts, tweets, Facebook and G+ updates. We are overwhelmed by the support we are getting from around the world &#8211; thank you so much for your time, money, tweets, and attention to our plight. </p>
<p>We learned a few hours ago of a <a href="http://diligentroom.wordpress.com/2011/11/22/the-exemplar-of-stupid-koha-vs-liblime-trademark/#comment-1761">press release and statement from a LibLime/PTFS staff member</a> that states their intention to transfer the TM to the Horowhenua Library Trust. However, as of this writing there has been no official communication between LibLime/PTFS and HLT that I am aware of. We will update this post again when we have more information, and thank you again (and again) for your support.</p>
<h4>Original Post</h4>
<p>Horowhenua Library Trust is the birth place of Koha and the longest serving member of the Koha community. Back in 1999 when we were working on Koha, the idea that 12 years later we would be having to write an email like this never crossed our minds. It is with tremendous sadness that we must write this plea for help to you, the other members of the Koha community.</p>
<p>The situation we find ourselves in, is that after over a year of battling against it, PTFS/Liblime have managed to have their application for a Trademark on Koha in New Zealand accepted. We now have 3 months to object, but to do so involves lawyers and money. We are a small semi rural Library in New Zealand and have no cash spare in our operational budget to afford this, but we do feel it is something we must fight.</p>
<p>For the library that invented Koha to now have to have a legal battle to prevent a US company trademarking the word in NZ seems bizarre, but it is at this point that we find ourselves.</p>
<p>So, we ask you, the users and developers of Koha, from the birth place of Koha, please if you can help in anyway, let us know.</p>
<h4>Help the cause &#8211; contribute to our legal challenge fund:</h4>
<h5><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=FQ6JH3L48LV5Y"> Contribute using PayPal</a> </h5>
<h4>NZ cheques can be made out to Horowhenua Library Trust and posted to:</h4>
<p> <strong>Levin Library, 10 Bath Street, Levin 5510</strong> </p>
<h4>Bank deposits can be made to this account: </h4>
<p><strong>Te Horowhenua Trust, Westpac, Levin, NZ. 030667-0299274-00  REF: Trademark</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://koha-community.org/plea-horowhenua-library-trust/feed/</wfw:commentRss>
		<slash:comments>69</slash:comments>
		</item>
	</channel>
</rss>

