How many posts in Koha discussion forums?
Dear Moderator, May I know number of postings (month wise) in Koha discussion forum, http://lists.katipo.co.nz/pipermail/koha/ I would like to get the number of posts received for last six months (2014 January -July) I writing a conference paper on users participation in Koha project. I would like to get the information for the purpose of writing the article. Regards, -- Vimal Kumar V. Technical Assistant Mahatma Gandhi University Library Kottayam, Kerala- 686 560 Web: http://www.vimalkumar.info Blog: http://linuxhalwa.blogspot.com http://kohageek.blogspot.in http://moovandan.blogspot.in --------------------------------------------------------------------------- "I forget what I was taught. I only remember what I have learnt" -Patrick White
Hi Vimal. I would like to get the number of posts received for last six months (2014
January -July)
You could try the MarkLogic archive at http://koha.markmail.org/search/?q= - Select the list you want the statistics for - Click on the bar for the month (a bit tricky as it is quite small). Hopefully this will give you a reasonably accurate idea. You could also go to the main list archive at: http://lists.katipo.co.nz/public/koha/ - Select a month and view by either thread, subject, author, or date - Copy all the message subject lines into a spreadsheet (so that each line is a separate row) - You then get a count of the number of messages for the month. Hope this helps. David Nind | david.nind@gmail.com PO Box 12367, Thorndon, Wellington, New Zealand 6144 h. +64 4 9720 600 | m. +64 21 0537 847 | w. +64 4 8906 098
Op 16-08-14 om 19:06 schreef David Nind:
You could also go to the main list archive at: http://lists.katipo.co.nz/public/koha/ - Select a month and view by either thread, subject, author, or date
When you view a month's worth of messages, it has a thing at the top that says: Messages: 172 That might be easier. Robin.
Thanks Robin. Sometimes the answer is staring you right in the face! David Nind
Vimal, On Sat, Aug 16, 2014 at 4:02 AM, Vimal Kumar V. <vimal0212@gmail.com> wrote:
May I know number of postings (month wise) in Koha discussion forum, http://lists.katipo.co.nz/pipermail/koha/ <snipped>
An ugly bit of bash script that will do the job for you, provided you have 'curl' installed on the system. clear; echo -n "Enter the Year and press [ENTER]: "; read YEAR; echo -n "Enter the Month and press [ENTER]: "; read MONTH; mailcount=`curl -s "http://lists.katipo.co.nz/pipermail/koha/${YEAR}-${MONTH}/thread.html" | grep -m 2 "<p>" | tail -n 1 | cut -d " " -f 11 | cut -f 1 -d "<"`; echo " "; echo "The mail count for $MONTH of $YEAR was $mailcount"; cheers, -indra -- Indranil Das Gupta Phone : +91-98300-20971 Blog : http://indradg.randomink.org/blog IRC : indradg on irc://irc.freenode.net Twitter : indradg -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-==-=-=-=-=-=-=-=-=- Please exchange editable Office documents only in ODF Format. No other format is acceptable. Support Open Standards. For a free editor supporting ODF, please visit LibreOffice - http://www.documentfoundation.org
Thanks Indra, I will try the solution. Regards, Vimal Kumar V. Technical Assistant MG University Library www.vimalkumar.info On Aug 16, 2014 10:33 PM, "Indranil Das Gupta" <indradg@gmail.com> wrote:
Vimal,
On Sat, Aug 16, 2014 at 4:02 AM, Vimal Kumar V. <vimal0212@gmail.com> wrote:
May I know number of postings (month wise) in Koha discussion forum, http://lists.katipo.co.nz/pipermail/koha/ <snipped>
An ugly bit of bash script that will do the job for you, provided you have 'curl' installed on the system.
clear; echo -n "Enter the Year and press [ENTER]: "; read YEAR; echo -n "Enter the Month and press [ENTER]: "; read MONTH; mailcount=`curl -s "http://lists.katipo.co.nz/pipermail/koha/${YEAR}-${MONTH}/thread.html" | grep -m 2 "<p>" | tail -n 1 | cut -d " " -f 11 | cut -f 1 -d "<"`; echo " "; echo "The mail count for $MONTH of $YEAR was $mailcount";
cheers, -indra
-- Indranil Das Gupta
Phone : +91-98300-20971 Blog : http://indradg.randomink.org/blog IRC : indradg on irc://irc.freenode.net Twitter : indradg
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-==-=-=-=-=-=-=-=-=- Please exchange editable Office documents only in ODF Format. No other format is acceptable. Support Open Standards.
For a free editor supporting ODF, please visit LibreOffice - http://www.documentfoundation.org
participants (4)
-
David Nind -
Indranil Das Gupta -
Robin Sheat -
Vimal Kumar V.