From bugzilla-daemon@bugs.koha-community.org Mon Mar 21 19:15:30 2011
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject: [Koha-bugs] [Bug 5920] New: remove html from downloaded reports
Date: Mon, 21 Mar 2011 18:15:28 +0000
Message-ID:
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============2801453048225901350=="
--===============2801453048225901350==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: quoted-printable
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=3D5920
Bug #: 5920
Summary: remove html from downloaded reports
Classification: Unclassified
Change sponsored?: ---
Product: Koha
Version: master
Platform: All
OS/Version: All
Status: NEW
Severity: enhancement
Priority: P5
Component: Reports
AssignedTo: gmcharlt@gmail.com
ReportedBy: nengard@gmail.com
QAContact: koha-bugs@lists.koha-community.org
Right now if you want to have HTML in your report you can do so - usually this
is used to turn bib numbers into links or titles into links - etc. It would =
be
great if the export to CSV function stripped out the html tags before exporti=
ng
so that you could have a report that printed to the screen with links, but wh=
en
downloaded just showed you the necessary data without any extraneous tags.
--=20
Configure bugmail: http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=
=3Demail
------- You are receiving this mail because: -------
You are the QA Contact for the bug.
--===============2801453048225901350==--
From bugzilla-daemon@bugs.koha-community.org Mon Aug 5 22:07:42 2013
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject: [Koha-bugs] [Bug 5920] remove html from downloaded reports
Date: Mon, 05 Aug 2013 20:05:22 +0000
Message-ID:
In-Reply-To:
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============6946549834635949379=="
--===============6946549834635949379==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: quoted-printable
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=3D5920
--- Comment #1 from Owen Leonard ---
You would probably have to fully re-build the SQL for output as CSV. If you
simply stripped out the concatenated text you would potentially be outputting
two or more fields crammed together in one column:
SELECT
biblionumber,=20
CONCAT('=
',title,'')
AS Title=20
--------------------------------------------
| biblionumber | Title |
--------------------------------------------
| 29839 | 29839The stand |
--------------------------------------------
--=20
You are receiving this mail because:
You are the QA Contact for the bug.
You are watching all bug changes.
--===============6946549834635949379==--
From bugzilla-daemon@bugs.koha-community.org Tue Aug 6 16:00:16 2013
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject: [Koha-bugs] [Bug 5920] remove html from downloaded reports
Date: Tue, 06 Aug 2013 13:57:54 +0000
Message-ID:
In-Reply-To:
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============3581565743086399147=="
--===============3581565743086399147==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: quoted-printable
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=3D5920
--- Comment #2 from Nicole C. Engard ---
This is how we do it now - but that means 2 reports - one for viewing and
clicking and one for exporting. The library wanted way to use the same repo=
rt
for both (clicking and exporting).
--=20
You are receiving this mail because:
You are the QA Contact for the bug.
You are watching all bug changes.
--===============3581565743086399147==--