Re: [Koha] Acquisitions Documentation Question

2015-04-30 Thread Jonathan Druart
Hi Nicole,

I will *try* to explain :)

1/ Base-level allocated is the Amount value you defined when creating the fund
2/ Base-level ordered is the ordered amount for this fund (without child funds)
3/ Total ordered is the base-level ordered for this fund and all its child funds
4/ Base-level spent is the spent amount for this fund (without child funds)
5/ Total spent is the base-level spent for this fund and all its child funds
6/ Base-level available is 1 - 2
7/ Total available is 1 - 3

If it's not clear enough I can develop :)

Cheers,
Jonathan

2015-04-29 20:14 GMT+02:00 Nicole Engard neng...@gmail.com:
 I have been asked to define the columns on this page:

 cgi-bin/koha/admin/aqbudgets.pl?budget_period_id=34

 I'm not sure what the base level columns are supposed to be. Can
 someone break down for me what each column is so I can update the
 manual?

 Thanks
 Nicole
 ___
 Koha mailing list  http://koha-community.org
 Koha@lists.katipo.co.nz
 https://lists.katipo.co.nz/mailman/listinfo/koha
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] updatedatabase.pl – 2nd request for help

2015-04-30 Thread Indranil Das Gupta
Hi,

On Thu, Apr 30, 2015 at 3:04 PM, Jürgen Eichenbrenner
eichenbren...@issev.de wrote:
 A few days ago I complained here about:

 updatedatabase.pl

 Sorry, for nagging again. I have to be more specific.  It seems to me, there 
 were changes of the database scheme, not reflected properly in the 
 updatedatabase.pl script. It fails (with mysql error s150), when upgrading a 
 database from 3.10 to any newer version of Koha, in creating the following 
 three tables:

Just a suggestion: Shouldn't a post of this nature be better served by
being directed to koha-devel mailing list?

cheers
-idg


-- 
Indranil Das Gupta
L2C2 Technologies

Phone : +91-98300-20971 /  +91-98745-80971
Blog: http://indradg.randomink.org/blog
IRC  : indradg on irc://irc.freenode.net
Twitter : indradg

-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-==-=-=-=-=-=-=-=-=-
Please exchange editable Office documents only in ODF Format.
Support Open Standards.
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] updatedatabase.pl – 2nd request for help

2015-04-30 Thread Mirko Tietgen
Indranil Das Gupta schrieb am 30.04.2015
 
 Just a suggestion: Shouldn't a post of this nature be better served by
 being directed to koha-devel mailing list?

Where is the development part in this? :)

Anyway it would be helpful to have more information. What operating
system, what installation method and probably the complete error
messages too.

-- Mirko

--

Mirko Tietgen
mi...@abunchofthings.net
http://koha.abunchofthings.net
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Running koha on Debian Jessie.

2015-04-30 Thread Bob Ewart

On 04/29/2015 11:26 PM, Robin Sheat wrote:

Mark Tompsett schreef op wo 29-04-2015 om 22:39 [-0400]:

I encountered a 403 error trying to get past
the web install step, but this helped:
http://wiki.koha-community.org/wiki/Koha_on_ubuntu_-_packages#Gitified_install_returns_403_errors

That only applies to a git install.


I also encountered zebra indexing issues, which
Robin helped me by reminding me of:
http://wiki.koha-community.org/wiki/Troubleshooting_Zebra#No_such_record_type
Tweaking the two dom config files and a full reindex later, I'm
rather

This does seem to be a problem in jessie. Easy enough to work around,
but I'll try to figure out a real solution (which is tricky as it must
be backwards compatible.)


It's a problem in other linux distributions as well, such as openSUSE.

The only hard coded references to files not installed by Koha are the 
idzebra modules and the DejaVu fonts.  (Having the wrong location for 
the fonts causes failures in make test)


Perhaps you should do something like find / -xdev -name mod-dom.so 
2/dev/null and find / -xdev -name DejaVuSans.ttf 2/dev/null to find 
out where they are.


--
Bob


___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


[Koha] updatedatabase.pl – 2nd request for help

2015-04-30 Thread Jürgen Eichenbrenner
A few days ago I complained here about:

updatedatabase.pl

Sorry, for nagging again. I have to be more specific.  It seems to me, there 
were changes of the database scheme, not reflected properly in the 
updatedatabase.pl script. It fails (with mysql error s150), when upgrading a 
database from 3.10 to any newer version of Koha, in creating the following 
three tables:

- borrower_attributes_types_branches
- categories_branches
- authorised_values_branches

For getting around this, I tried to create the (new 3.12) Koha scheme before I 
dump in the old 3.10 database dump into a new (3.12) installation. Even then I 
get errors (which I reported here a few days ago).

If I don't create the newer Koha database scheme beforehand, the Web 
installer gives errors like this:

updatedatabase.pl: DBD::mysql::db do failed: Can't create table 
'koha312.categories_branches' (errno: 150) at 
/usr/share/koha/intranet/cgi-bin/installer/data/mysql/updatedatabase.pl line 
6120.

In fact, these statement, like the one from line 6120:
CREATE TABLE categories_branches(categorycode VARCHAR(10), branchcode 
VARCHAR(10), FOREIGN KEY (categorycode) REFERENCES categories(categorycode) ON 
DELETE CASCADE, FOREIGN KEY (branchcode) REFERENCES branches(branchcode) ON 
DELETE CASCADE ) ENGINE=INNODB DEFAULT CHARSET=utf8;
are failing with mysql error 150.

Besides of the three additional table creations, there are 6 duplicate entries 
of PRIMARY keys in the tables:
'OPACNumbersPreferPhrase' 
'IntranetNumbersPreferPhrase' 
'UNIMARCAuthorityField100' 
'l-overdues_report'
'UNIMARCAuthorsFacetsSeparator' 
 'CalculateFinesOnReturn' 

And a duplicate key name:
'batch_id_record_type'  

Because of this I'm stuck with 3.10 and appreciate any hints and help for 
getting this solved properly.

Jürgen Eichenbrenner
Int. School of Stuttgart



___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Acquisitions Documentation Question

2015-04-30 Thread Nicole Engard
Thanks Jonathan, I think that clarifies, I'm going to send it to the
library who asked and see if it's enough - and in the mean time I'll
add it to the manual!

Thanks again!
Nicole

On Thu, Apr 30, 2015 at 2:55 AM, Jonathan Druart
jonathan.dru...@biblibre.com wrote:
 Hi Nicole,

 I will *try* to explain :)

 1/ Base-level allocated is the Amount value you defined when creating the 
 fund
 2/ Base-level ordered is the ordered amount for this fund (without child 
 funds)
 3/ Total ordered is the base-level ordered for this fund and all its child 
 funds
 4/ Base-level spent is the spent amount for this fund (without child funds)
 5/ Total spent is the base-level spent for this fund and all its child funds
 6/ Base-level available is 1 - 2
 7/ Total available is 1 - 3

 If it's not clear enough I can develop :)

 Cheers,
 Jonathan

 2015-04-29 20:14 GMT+02:00 Nicole Engard neng...@gmail.com:
 I have been asked to define the columns on this page:

 cgi-bin/koha/admin/aqbudgets.pl?budget_period_id=34

 I'm not sure what the base level columns are supposed to be. Can
 someone break down for me what each column is so I can update the
 manual?

 Thanks
 Nicole
 ___
 Koha mailing list  http://koha-community.org
 Koha@lists.katipo.co.nz
 https://lists.katipo.co.nz/mailman/listinfo/koha
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Acquisitions Documentation Question

2015-04-30 Thread Nicole Engard
The library said it was perfectly clear and the manual will show the
edits tomorrow:
http://git.koha-community.org/gitweb/?p=kohadocs.git;a=commitdiff;h=c83fd1cea2cf04fc74a488b30b69c466d3a811c5

On Thu, Apr 30, 2015 at 2:45 PM, Nicole Engard neng...@gmail.com wrote:
 Thanks Jonathan, I think that clarifies, I'm going to send it to the
 library who asked and see if it's enough - and in the mean time I'll
 add it to the manual!

 Thanks again!
 Nicole

 On Thu, Apr 30, 2015 at 2:55 AM, Jonathan Druart
 jonathan.dru...@biblibre.com wrote:
 Hi Nicole,

 I will *try* to explain :)

 1/ Base-level allocated is the Amount value you defined when creating the 
 fund
 2/ Base-level ordered is the ordered amount for this fund (without child 
 funds)
 3/ Total ordered is the base-level ordered for this fund and all its child 
 funds
 4/ Base-level spent is the spent amount for this fund (without child funds)
 5/ Total spent is the base-level spent for this fund and all its child funds
 6/ Base-level available is 1 - 2
 7/ Total available is 1 - 3

 If it's not clear enough I can develop :)

 Cheers,
 Jonathan

 2015-04-29 20:14 GMT+02:00 Nicole Engard neng...@gmail.com:
 I have been asked to define the columns on this page:

 cgi-bin/koha/admin/aqbudgets.pl?budget_period_id=34

 I'm not sure what the base level columns are supposed to be. Can
 someone break down for me what each column is so I can update the
 manual?

 Thanks
 Nicole
 ___
 Koha mailing list  http://koha-community.org
 Koha@lists.katipo.co.nz
 https://lists.katipo.co.nz/mailman/listinfo/koha
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


[Koha] migrate adlib to koha

2015-04-30 Thread Asanali Msangi
Dear all!
I hope you ok.
I have two issues and I hope one off you may heve an idea how to do it.

I have koha installed in my university and is working fine now I would like
to backup all the data from AdLib and restore on koha installed already.I
need any idea how to do this. Backup from AdLib it is done already the
problem now is how to restore in koha!
Second I have dspace 1.8 installed  and working fine I would like to know
the easy way how to backup and restore;I also like to know how to upgrade
to the latest dspace without loosing the data. Any help please.


On Friday, May 1, 2015, mohan pradhan pradhmo...@gmail.com wrote:

 Regarding DSpace vs Greenstone, Dspace is better as it has lucene indexing
 and it is more stable.

 Let me know the issues of DSpace you would like to solve. I may help.

 Regards,

 Prof. Dr. Mohan Raj Pradhan
 Member-Secretary
 HealthNet Nepal

 Date: Thu, 30 Apr 2015 16:25:31 -0700
 From: Chad Roseburg croseb...@ncrl.org javascript:;
 To: koha@lists.katipo.co.nz javascript:; koha@lists.katipo.co.nz
 javascript:;
 Subject: [Koha] Dspace vs Greenstone ...other???
 Message-ID:
 CAEboqJNzwaMyUDJfqe6O6evyxVkizgL7AFdAOdA=
 mkfwizn...@mail.gmail.com javascript:;
 Content-Type: text/plain; charset=UTF-8

 Would anyone care to comment on why they chose Dspace over Greenstone
 ...vice versa, or went with something else like contentDM?

 I just installed Dspace and am kicking the tires. Looking for experiences
 maintaining, upgrades/updates ...ease of use ...etc. We do have
 experienced
 onsite IT staff but if it requires a lot of hand holding that may be a
 factor. We would likely get some type of support contract and host the
 server ourselves.

 Thank you!

 --
 Chad Roseburg
 Automation Dept.
 North Central Regional Library
 ___
 Koha mailing list  http://koha-community.org
 Koha@lists.katipo.co.nz javascript:;
 https://lists.katipo.co.nz/mailman/listinfo/koha



-- 
MR.ASANALI MOSES MSANGI

For I am already being poured out as a drink offering, and the time of my
departure is at hand. I have fought the good fight, I have finished the
race, I have kept the faith. Finally, there is laid up for me the crown of
righteousness, which the Lord, the righteous Judge, will give to me on that
Day, and not to me only but also to all who have loved His appearing. (2
Tim. 4:6-8)
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Running koha on Debian Jessie.

2015-04-30 Thread Robin Sheat
Bob Ewart schreef op do 30-04-2015 om 09:33 [-0400]:
 It's a problem in other linux distributions as well, such as openSUSE.

Other Linux distributions can't use the Debian packages to start with,
which is primarily where my concern lies :)

-- 
Robin Sheat
Catalyst IT Ltd.
✆ +64 4 803 2204
GPG: 5FA7 4B49 1E4D CAA4 4C38  8505 77F5 B724 F871 3BDF

___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


[Koha] Jenkins the Manual

2015-04-30 Thread Nicole Engard
Hi all,

I don't know who manages this so I'm sorry to email everyone, but the
manual on Jenkins is a big screwy.

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

The 3.18 branch is missing and the master branch fails all the time
but it generates the HTML and PDFs a-ok and shows no errors when I
validate in Oxygen. Eventually the failures stop and it passes - so I
know nothing is wrong with the manual itself, I wonder if something is
screwy with the fact that the wrong branches are being checked.

Nicole
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


[Koha] Dspace vs Greenstone ...other???

2015-04-30 Thread Chad Roseburg
Would anyone care to comment on why they chose Dspace over Greenstone
...vice versa, or went with something else like contentDM?

I just installed Dspace and am kicking the tires. Looking for experiences
maintaining, upgrades/updates ...ease of use ...etc. We do have experienced
onsite IT staff but if it requires a lot of hand holding that may be a
factor. We would likely get some type of support contract and host the
server ourselves.

Thank you!

-- 
Chad Roseburg
Automation Dept.
North Central Regional Library
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


[Koha] Dspace vs Greenstone ...other???

2015-04-30 Thread mohan pradhan
Regarding DSpace vs Greenstone, Dspace is better as it has lucene indexing
and it is more stable.

Let me know the issues of DSpace you would like to solve. I may help.

Regards,

Prof. Dr. Mohan Raj Pradhan
Member-Secretary
HealthNet Nepal

Date: Thu, 30 Apr 2015 16:25:31 -0700
From: Chad Roseburg croseb...@ncrl.org
To: koha@lists.katipo.co.nz koha@lists.katipo.co.nz
Subject: [Koha] Dspace vs Greenstone ...other???
Message-ID:
CAEboqJNzwaMyUDJfqe6O6evyxVkizgL7AFdAOdA=mkfwizn...@mail.gmail.com
Content-Type: text/plain; charset=UTF-8

Would anyone care to comment on why they chose Dspace over Greenstone
...vice versa, or went with something else like contentDM?

I just installed Dspace and am kicking the tires. Looking for experiences
maintaining, upgrades/updates ...ease of use ...etc. We do have experienced
onsite IT staff but if it requires a lot of hand holding that may be a
factor. We would likely get some type of support contract and host the
server ourselves.

Thank you!

--
Chad Roseburg
Automation Dept.
North Central Regional Library
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


[Koha] Search Indexes Documentation

2015-04-30 Thread Nicole Engard
Hi all,

This page in the manual is very very very very old :) and I didn't
write it - is there anyone interested in updating it?

http://manual.koha-community.org/3.18/en/kohasearchindexes.html

Thanks
Nicole
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha