[sword-devel] Non-Delivery Report
Postmaster
sword-devel@crosswire.org
Fri, 16 Jun 2000 02:22:54 -0400
Could not deliver message (ID=1183).
Local account 'master' is not enabled for mail.
The first portion of the original message text follows:
-------------------------------------------------------
Received: from www.crosswire.org by acc.ocad.on.ca (AppleShare IP Mail Server 5.0.2) id 1183 via TCP with SMTP; Fri, 16 Jun 2000 02:22:54 -0400
Received: (from majordomo@localhost)
by www.crosswire.org (8.9.3/8.9.3) id VAA02440
for sword-devel-outgoing; Thu, 15 Jun 2000 21:16:56 -0700
X-Authentication-Warning: www.crosswire.org: majordomo set sender to owner-sword-devel@crosswire.org using -f
Received: from acc.ocad.on.ca ([205.211.168.10])
by www.crosswire.org (8.9.3/8.9.3) with SMTP id VAA02437
for <sword-devel@crosswire.org>; Thu, 15 Jun 2000 21:16:53 -0700
Message-Id: <200006160416.VAA02437@www.crosswire.org>
Received: from acc.ocad.on.ca by acc.ocad.on.ca (AppleShare IP Mail Server 5.0.2) id 963 via NDR; Fri, 16 Jun 2000 00:23:01 -0400
From: "Postmaster" <Postmaster@acc.ocad.on.ca>
Date: Fri, 16 Jun 2000 00:23:01 -0400
Subject: [sword-devel] Non-Delivery Report
Sender: owner-sword-devel@crosswire.org
Precedence: bulk
Reply-To: sword-devel@crosswire.org
Could not deliver message (ID=958).
Local account 'master' is not enabled for mail.
The first portion of the original message text follows:
-------------------------------------------------------
Received: from www.crosswire.org by acc.ocad.on.ca (AppleShare IP Mail Server 5.0.2) id 958 via TCP with SMTP; Fri, 16 Jun 2000 00:23:01 -0400
Received: (from majordomo@localhost)
by www.crosswire.org (8.9.3/8.9.3) id GAA32490
for sword-devel-outgoing; Thu, 15 Jun 2000 06:16:01 -0700
X-Authentication-Warning: www.crosswire.org: majordomo set sender to owner-sword-devel@crosswire.org using -f
Received: from acc.ocad.on.ca ([205.211.168.10])
by www.crosswire.org (8.9.3/8.9.3) with SMTP id GAA32470
for <sword-devel@crosswire.org>; Thu, 15 Jun 2000 06:15:57 -0700
Message-Id: <200006151315.GAA32470@www.crosswire.org>
Received: from acc.ocad.on.ca by acc.ocad.on.ca (AppleShare IP Mail Server 5.0.2) id 659 via NDR; Thu, 15 Jun 2000 09:22:04 -0400
From: "Postmaster" <Postmaster@acc.ocad.on.ca>
Date: Thu, 15 Jun 2000 09:22:04 -0400
Subject: [sword-devel] Non-Delivery Report
Sender: owner-sword-devel@crosswire.org
Precedence: bulk
Reply-To: sword-devel@crosswire.org
Could not deliver message (ID=654).
Local account 'master' is not enabled for mail.
The first portion of the original message text follows:
-------------------------------------------------------
Received: from www.crosswire.org by acc.ocad.on.ca (AppleShare IP Mail Server 5.0.2) id 654 via TCP with SMTP; Thu, 15 Jun 2000 09:22:04 -0400
Received: (from majordomo@localhost)
by www.crosswire.org (8.9.3/8.9.3) id PAA27590
for sword-devel-outgoing; Mon, 12 Jun 2000 15:08:07 -0700
X-Authentication-Warning: www.crosswire.org: majordomo set sender to owner-sword-devel@crosswire.org using -f
Received: from mail.evergreen.com (mail.evergreen.com [168.158.8.171])
by www.crosswire.org (8.9.3/8.9.3) with ESMTP id PAA27587
for <sword-devel@crosswire.org>; Mon, 12 Jun 2000 15:08:06 -0700
Received: from crosswire.org (charis.evergreen.com [168.158.7.12])
by mail.evergreen.com (8.10.1/8.10.1) with ESMTP id e5CMJTS17471
for <sword-devel@crosswire.org>; Mon, 12 Jun 2000 15:19:29 -0700
Message-ID: <39456332.D705F23F@crosswire.org>
Date: Mon, 12 Jun 2000 15:24:50 -0700
From: "Troy A. Griffitts" <scribe@crosswire.org>
Organization: CrossWire Bible Society
X-Mailer: Mozilla 4.72 [en] (X11; U; Linux 2.2.14-5.0 i686)
X-Accept-Language: en
MIME-Version: 1.0
To: sword-devel@crosswire.org
Subject: Re: [sword-devel] next chapter / verse in a commentary
References: <00061223443301.27446@joachim>
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Sender: owner-sword-devel@crosswire.org
Precedence: bulk
Reply-To: sword-devel@crosswire.org
commentary++;
should give you the next entry in the commentary. If a commentary has
an entry linked to, say: John 1:1-5 and the key is at John 1:1, a ++ on
the module will force the key to the next entry (NOT John 1:2), like
John 1:6, maybe. A ++ on the key will go to John 1:2
VerseKey *key = (VerseKey *)(SWKey *)commentary;
key.Chapter(key.Chapter()+1);
should increment from, say John 1:6 to John 2:1, but there may not be an
entry there. If you want an entry for sure, you could try something
sneaky like:
commentary = MAXVERSE;
commentary++;
or
VerseKey *key = (VerseKey *)(SWKey *)commentary;
key.Verse(1);
commentary--;
Joachim Ansorg wrote:
>
> Hi Troy!
>
> A small question about SWORD.
>
> How can I get the next/previous verse or chapter of a commentary module?
> You know, not every key has an entry.
>
> Thanks!
> --Joachim