Yes, it must be related to the caching: some of the references to a page
reappear after saving the pages that refer to it.
Especially references from and to the front page are sensitive: if I refer
to it on other pages by *1*, the reference will not be found. When I save
the text again with the frontpage name (provided automatically by the
swiki), the reference will reappear. That's probably a feature, not a bug.
I am not able to flush the cache in the way you described (there is no
#updateFormatRequest:book: method anymore); I tried "self pages do: [:page |
page clearRefsCache]" on its own, but am not sure whether this
really helped.
thanks
Hans
> On Tue, 5 Sep 2000, Baveco, Hans wrote:
>
> > When navigating through my swikis, I discovered that the "refs"
> > function appears not to work anymore with Com46Swiki11.
> > [...]
> > Could it be a result of the conversions?
>
> Probably. Try to run #updateReferences on your SwikiBooks. In case you
> don't have it (I don't now, it has my initials in the timeStamp -- also
> be aware of this is from Comanche Beta 8):
>
> !SwikiBook methodsFor: 'utility' stamp: 'bf 1/24/2000 12:51'!
> updateReferences
> "Update referenceCache for all pages and save.
> Useful after converting from a non-refs swiki"
>
> self pages do: [:page |
> page clearRefsCache;
> updateFormatRequest: nil book: self]! !
>
> -- Bert