[Koha-devel] Koha-devel Digest, Vol 79, Issue 28-unsubscribe

Smita Biswas Smita.Biswas at tauranga.govt.nz
Sun Jun 24 12:20:32 CEST 2012


________________________________________
From: koha-devel-bounces at lists.koha-community.org [koha-devel-bounces at lists.koha-community.org] on behalf of koha-devel-request at lists.koha-community.org [koha-devel-request at lists.koha-community.org]
Sent: Sunday, June 24, 2012 10:00 PM
To: koha-devel at lists.koha-community.org
Subject: Koha-devel Digest, Vol 79, Issue 28

Send Koha-devel mailing list submissions to
        koha-devel at lists.koha-community.org

To subscribe or unsubscribe via the World Wide Web, visit
        http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-devel
or, via email, send a message with subject or body 'help' to
        koha-devel-request at lists.koha-community.org

You can reach the person managing the list at
        koha-devel-owner at lists.koha-community.org

When replying, please edit your Subject line so it is more specific
than "Re: Contents of Koha-devel digest..."


Today's Topics:

   1. Re: Social library (Quoc Uy)
   2. Re: Social library (BWS Johnson)
   3. Regression considered harmful (Jared Camins-Esakov)


----------------------------------------------------------------------

Message: 1
Date: Sat, 23 Jun 2012 03:46:36 -0700 (PDT)
From: Quoc Uy <nguyenquocuy_1102 at yahoo.com>
Subject: Re: [Koha-devel] Social library
To: "koha-devel at lists.koha-community.org"
        <koha-devel at lists.koha-community.org>,  "abesottedphoenix at yahoo.com"
        <abesottedphoenix at yahoo.com>
Message-ID:
        <1340448396.28442.YahooMailNeo at web160206.mail.bf1.yahoo.com>
Content-Type: text/plain; charset="iso-8859-1"

??? ??? Fisrt, thanks for sharing this: http://thesocialopac.net/. It's really nice way to find some help. I agree with you about the law's problem. We can solve it with some option for user to choose like "sharing you action to your friends, not sharing...". And if u ask, where we can put this Wall on the Opac website, i think we can creat one more little menu like- "My friend's action" above the "My summary" on the menu.
??? ??? We can make a default like sharing your actions with your classmates (for shool's library or university's library). After friend's action, you can comment, like (it looks like in facebook). I think, the main idea is that, you can share your opinion about some books, recommend it to friends... We did have all databases, how can we make it comes true? I hope some programmer can do it and i think they really can.

Best regard!
-------------- next part --------------
An HTML attachment was scrubbed...
URL: </pipermail/koha-devel/attachments/20120623/a319fc2c/attachment.html>

------------------------------

Message: 2
Date: Sat, 23 Jun 2012 05:10:01 -0700 (PDT)
From: BWS Johnson <abesottedphoenix at yahoo.com>
Subject: Re: [Koha-devel] Social library
To: Quoc Uy <nguyenquocuy_1102 at yahoo.com>,
        "koha-devel at lists.koha-community.org"
        <koha-devel at lists.koha-community.org>
Message-ID:
        <1340453401.3352.YahooMailNeo at web140803.mail.bf1.yahoo.com>
Content-Type: text/plain; charset=iso-8859-1

Salve!


>??? ??? Fisrt, thanks for sharing this: http://thesocialopac.net/. It's really nice way to find some help. I agree with you about the law's problem. We can solve it with some option for user to choose like "sharing you action to your friends, not sharing...". And if u ask, where we can put this Wall on the Opac website, i think we can creat one more little menu like- "My friend's action" above the "My summary" on the menu.
>??? ??? We can make a default like sharing your actions with your classmates (for shool's library or university's library). After friend's action, you can comment, like (it looks like in facebook). I think, the main idea is that, you can share your opinion about some books, recommend it to friends... We did have all databases, how can we make it comes true? I hope some programmer can do it and i think they really can.
>

??? Well hmm. Now I'm just wondering if you're viewing an older version of Koha, perhaps... Have you seen:

http://catalog.losgatosca.gov/cgi-bin/koha/opac-detail.pl?biblionumber=117395

???? Be sure and scroll down to the bottom of the page and click on all of the tabs and stuff. I'm not entirely sure that I'm fully understanding precisely what enhancements you want, but we might already be doing part of what you propose. :)

Cheers,
Brooke



------------------------------

Message: 3
Date: Sat, 23 Jun 2012 17:16:34 -0400
From: Jared Camins-Esakov <jcamins at cpbibliography.com>
Subject: [Koha-devel] Regression considered harmful
To: koha-devel at lists.koha-community.org
Message-ID:
        <CALVDfQzZJcvNeACujXROLhpnEafMyoBBw_hvj_DN2K+w+0OgXA at mail.gmail.com>
Content-Type: text/plain; charset="utf-8"

Hello.

Regardless of your stance on goto statements (and I would note that they
are thankfully pretty scarce in the Koha codebase, with the exception of
sms/sms_listen.pl, which has a surprising number for a 126-line script), I
think we can all agree that regressions in Koha's functionality are a very
bad thing. Well, I have a proposal for one way we might go about cutting
down on regressions, *and* saving testers time: Test::WWW::Mechanize.

By adding tests that use Test::WWW::Mechanize, it would be possible to
include unit tests that confirm that the interface (at least the parts that
are not Javascript-dependent) continues to function as intended. I find
this an extremely promising concept, and one that I would *love* to put
into practice in my Release Maintaining of 3.6.x (whether the tests are
committed to Koha, or whether they are in a separate repository).

So, what can you do to help us reach our lofty goal of no regressions,
ever, and no simple regressions requiring people-hours to identify? Easy!
Start writing those tests! I filed a bug (
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8300) and attached
a unit test that checks the stage MARC import tool is still looking. Take a
look, and think about whether you could come up with some scripts.

Lest you think that writing this sort of unit test has to be hard, I have
good news! It's not actually all that hard. Documented on the wiki we have
instructions for setting up an http-recorder proxy to simplify your test
writing to the very basics: go through the steps with your web browser,
save the resulting file, and change get() to get_ok() and click() to
click_ok() (yes, it really can be that simple). Moreover, I have documented
the two gotchas that we have encountered with this so far on the wiki, and
I will continue to document the solutions to problems I encounter. So, what
are you waiting for? Get thee to the wiki and begin testing!
http://wiki.koha-community.org/wiki/Interface_testing_with_WWW::Mechanize

Regards,
Jared Camins-Esakov

--
Jared Camins-Esakov
Bibliographer, C & P Bibliography Services, LLC
(phone) +1 (917) 727-3445
(e-mail) jcamins at cpbibliography.com
(web) http://www.cpbibliography.com/
-------------- next part --------------
An HTML attachment was scrubbed...
URL: </pipermail/koha-devel/attachments/20120623/c0c42eaf/attachment-0001.htm>

------------------------------

_______________________________________________
Koha-devel mailing list
Koha-devel at lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-devel
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

End of Koha-devel Digest, Vol 79, Issue 28
******************************************
*****************************************************************************
The contents of this e-mail and any attachments is confidential and may
be privileged and/or subject to copyright.  Unauthorised use, distribution
or copying of the contents is expressly prohibited.  If you are not the
intended recipient, notify the sender immediately, delete the email and
attachments and all copies from your system, and do not use, read,
distribute, disclose or copy its contents.  Violation of this notice may
be unlawful.  Views expressed in this e-mail and attachments are those of
the author, and not necessarily those of Tauranga City Council.
Tauranga City Council does not accept liability for any loss, damage or
consequence arising from this email and/or attachments containing any
virus, defect, data corruption or transmission error.
*****************************************************************************

______________________________________________________________________________

This email has been scrubbed for your protection by SMX.
For more information visit http://smxemail.com
______________________________________________________________________________




More information about the Koha-devel mailing list