Genii Weblog
Notes/Domino 9.0.1 Fix List in EPUB
Wed 30 Oct 2013, 01:44 PM
Tweetby Ben Langhinrichs
It occurred to me it might be useful to use Midas V5 to create an EPUB version of the 300 fixes in the IBM Notes/Domino 9.0.1 release. You can download a copy or read it directly from FixList901.epub. Of course, if you requested a Midas LSX 5 evaluation license, you could generate your own EPUB, HTML or MHT files for any release, or combination of releases, or topic area, or whatever. The full agent I used is below. The only extra thing I did was create a shortened version of the Public form (which I called EPUBPublic) because I was annoyed that IBM hasn't removed the "This feature is in a future release" note yet.
Option Public
Option Declare
UseLSX "*lsxrtc"
Sub Initialize
Dim ui As New NotesUIWorkspace
Dim count As Integer
Dim gcoll As New GeniiCollection
count = gcoll.AddByFormula("", "r5fixlist.nsf", |Select MaintVerNum="9.0.1"|)
If count > 0 Then
Call gcoll.SortCollection("OfficialDesc", "Client_Server")
Call gcoll.ExportToEPub("c:\demo\FixList901.epub", "RenderWithForm='EPUBPublic' dc:title='Notes/Domino Fix List 9.0.1'")
Call ui.Prompt(PROMPT_OK, "EPUB export", "Exported "+CStr(count)+" documents to c:\demo\FixList901.epub")
End if
End Sub
If you would like to try out Midas LSX V5 for yourself, request an evaluation license and we can get you set up.
Copyright © 2013 Genii Software Ltd.
What has been said: