Re: [sword-devel] classes spans vs presentational encoding - was Re: Font size specification inside divinename/divinename

2011-06-28 Thread Peter von Kaehne
On Mon, 2011-06-27 at 12:26 +0200, Troy A. Griffitts wrote: As DM has suggested, I am all in favor of copying the current osis to htmlhref filter (or actually copying and merging in the changes from webif filter) to osisxhtml What is the webif filter about? I see it is has been there a while,

[sword-devel] BPBible 0.5 beta 4 released

2011-06-28 Thread Jonathan Morgan
Hi all, BPBible 0.5 beta 4 has been released. This has added another round of improvements and bug fixes over beta 3, and is now approaching a final release. For more details, please see http://bpbible.com/news/bpbible-0.5-beta4-changes. Jon ___

Re: [sword-devel] Strong's Numbers Python Script for Foreign Language Bibles

2011-06-28 Thread Kamal Abou Mikhael
Hi Johathon, I had some questions regarding the script and the whole topic of Srong's for foreign languages. 1. You mentioned the script being tied to Bibletech talk... was that your talk? are there any remaining artifacts from that talk? mp3... slides... notes... I wasn't able to locate it on

[sword-devel] FMT_XHTML [was: classes spans vs presentational encoding]

2011-06-28 Thread Troy A. Griffitts
As discussed, I've added a new Render filter set: FMT_XHTML As usual, if you create your SWMgr asking for this Render output, you will get the new markup: SWMgr library(new MarkupFilterMgr(FMT_XHTML)); SWModule *kjv = library.getModule(KJV); kjv-setText(jn.3.16); cout kjv-RenderText(); but

Re: [sword-devel] FMT_XHTML [was: classes spans vs presentational encoding]

2011-06-28 Thread Greg Hellings
I'm curious as to why you opted to make another new filter set that was a copy of one, rather than just fixing the old one. What does keeping htmlhref the way it is gain? --Greg On Tuesday, June 28, 2011, Troy A. Griffitts scr...@crosswire.org wrote: As discussed, I've added a new Render filter

Re: [sword-devel] FMT_XHTML [was: classes spans vs presentational encoding]

2011-06-28 Thread David McClellan
Backwards compatibility maybe? -- There are 10 types of people in this world. Those who understand binary and those who do not. --- David McClellan On Jun 28, 2011 6:38 PM, Greg Hellings greg.helli...@gmail.com wrote: I'm curious as to why you opted to make another new filter set that was a

Re: [sword-devel] FMT_XHTML filter set

2011-06-28 Thread Karl Kleinpaste
Greg Hellings greg.helli...@gmail.com writes: What does keeping htmlhref the way it is gain? The wisdom of caution. ___ sword-devel mailing list: sword-devel@crosswire.org http://www.crosswire.org/mailman/listinfo/sword-devel Instructions to

Re: [sword-devel] FMT_XHTML [was: classes spans vs presentational encoding]

2011-06-28 Thread scribe...@gmail.com
CAUTION NEWBIES: In my previous example excerpt of code I wrote: kjv-setText(jn.3.16); This is a typo and should be: kjv-setKey(jn.3.16); Normally, I wouldn't worry too much, as the main point of the example-- the new Render filter code-- was unaffected by the typo, BUT...