Unexpected behavior: multiple entries/same target

This forum is for all Flare issues related to the HTML5, WebHelp, WebHelp Plus, and Adobe Air Targets
Post Reply
MarinaMichaels
Sr. Propeller Head
Posts: 137
Joined: Fri Aug 01, 2008 2:23 am
Location: Northern California
Contact:

Unexpected behavior: multiple entries/same target

Post by MarinaMichaels »

The help I am working on has some tables that are used by several different modules in the software. In the TOC, I've created separate entries, but with each entry linking to the same file. That works fine.

However, what I would expect to see is that, when someone clicks on the entry for a table, the breadcrumbs will reflect the table of contents structure. Instead, for some reason the cursor jumps to another entry that links to the same file, and then of course the breadcrumbs reflect that path (the same one for all of them). Does anyone have any insight into why this might be?

The following image shows the TOC placement and how the breadcrumbs show another location.
Multiple_topics_same_source_breadcrumbs.png
You do not have the required permissions to view the files attached to this post.
techwriter31
Propellus Maximus
Posts: 551
Joined: Wed Mar 05, 2008 10:50 am

Re: Unexpected behavior: multiple entries/same target

Post by techwriter31 »

It sounds like you might be encountering the same problem that we did:
http://forums.madcapsoftware.com/viewto ... =9&t=15263

Our workaround was to create separate topics to link to the TOC entries, and created a snippet that contained the shared topic content.

My guess is that you've got the "Automatically Synchronize TOC" checkbox checked in the skin and when you click on a link to a topic residing in a different location, it jumps to the appropriate TOC entry, but the breadcrumbs don't match up due to the issue above.
Kellie
MarinaMichaels
Sr. Propeller Head
Posts: 137
Joined: Fri Aug 01, 2008 2:23 am
Location: Northern California
Contact:

Re: Unexpected behavior: multiple entries/same target

Post by MarinaMichaels »

Thanks. I was thinking I might have to use snippets, but those tables are used in about six different places, and it just seems like a lot of extra work for something that intuitively should behave differently. :(
techwriter31
Propellus Maximus
Posts: 551
Joined: Wed Mar 05, 2008 10:50 am

Re: Unexpected behavior: multiple entries/same target

Post by techwriter31 »

Agreed! :)
Kellie
i-tietz
Propellus Maximus
Posts: 1219
Joined: Wed Oct 24, 2007 4:13 am
Location: Fürth, Germany

Re: Unexpected behavior: multiple entries/same target

Post by i-tietz »

Agreed???

A topic isn't aware of the calling context and how often and in what paths it appears in the TOC - it simply doesn't have that info.
And, since you're not working with a snippet, that topic exists only once. And the place in the TOC it jumps to is its first appearance in the TOC ...

How is the topic or the TOC supposed to get that context info?
Inge____________________________
"I need input! - Have you got input?"
crdmerge
Sr. Propeller Head
Posts: 248
Joined: Tue Dec 16, 2008 5:37 am

Re: Unexpected behavior: multiple entries/same target

Post by crdmerge »

Create blank redirect topics and link them to TOC entries. The topics should have, in the XML Editor mode:

<title>The Same Title as the "Original" Topic</title>
<meta http-equiv="refresh" content="0;URL=original_topic_name.htm" />

This way, the TOC and breadcrumbs will always synch properly, wherever you've placed the redirect topic. (We always add a trailing"_redirect" to the file names (not titles) of these topics, for easy identification.)

The content="0; indicates zero delay, so that the users are not even aware of the redirect function. You could, however, increase that number enough to allow users to read some explanation you provide in the GUI part of the topic: "You are being redirected to a topic in this folder/section/category, blah, blah" and provide buttons for "Return to previous topic instead" and "Skip this delay and redirect me now."


Good luck,
Leon
i-tietz
Propellus Maximus
Posts: 1219
Joined: Wed Oct 24, 2007 4:13 am
Location: Fürth, Germany

Re: Unexpected behavior: multiple entries/same target

Post by i-tietz »

crdmerge wrote:Create blank redirect topics and link them to TOC entries. The topics should have, in the XML Editor mode:

<title>The Same Title as the "Original" Topic</title>
<meta http-equiv="refresh" content="0;URL=original_topic_name.htm" />
...
The content="0; indicates zero delay, so that the users are not even aware of the redirect function. You could, however, increase that number enough to allow users to read some explanation you provide in the GUI part of the topic: "You are being redirected to a topic in this folder/section/category, blah, blah" and provide buttons for "Return to previous topic instead" and "Skip this delay and redirect me now."
What an effort ... why not just stuff the content into a snippet and insert that snippet into each of those topics - you wouldn't need an explanatory text for the user and the writer wouldn't have to make an effort to find and open the "real" topic is, when he opens one of the empty ones ...

Apart from that: Doesn't a redirect make it pretty impossible for the user to use the back button and go back to the topic before one of these?
Inge____________________________
"I need input! - Have you got input?"
crdmerge
Sr. Propeller Head
Posts: 248
Joined: Tue Dec 16, 2008 5:37 am

Re: Unexpected behavior: multiple entries/same target

Post by crdmerge »

Inge:

"when he opens one of the empty ones" Users aren't opening an empty one; that empty file is not "opening," only refreshing to the target topic.

"impossible for the user to use the back button and go back to the topic before one of these?" No, the Back workflow simply bypasses that redirect page (because it was never actually "opened").


Leon
i-tietz
Propellus Maximus
Posts: 1219
Joined: Wed Oct 24, 2007 4:13 am
Location: Fürth, Germany

Re: Unexpected behavior: multiple entries/same target

Post by i-tietz »

crdmerge wrote:"when he opens one of the empty ones" Users aren't opening an empty one; that empty file is not "opening," only refreshing to the target topic.
The full quote is:
i-tietz wrote:... and the writer wouldn't have to make an effort to find and open the "real" topic is, when he opens one of the empty ones ...
No "user" there ...
Inge____________________________
"I need input! - Have you got input?"
MarinaMichaels
Sr. Propeller Head
Posts: 137
Joined: Fri Aug 01, 2008 2:23 am
Location: Northern California
Contact:

Re: Unexpected behavior: multiple entries/same target

Post by MarinaMichaels »

A very late reply, but I think worth making. I ended up using snippets, but because each of those many tables was indexed row-by-row, that means that there are multiple index entries for each parameter in those re-used tables. Although you can set a topic so it isn't searchable, there seems to be no way to tell Flare to only pay attention to the indexing in one of the snippet-created topics. Even if you set a topic so that it isn't included in the target, Flare still seems to pick up the indexing. Another feature request coming right up. :)
i-tietz
Propellus Maximus
Posts: 1219
Joined: Wed Oct 24, 2007 4:13 am
Location: Fürth, Germany

Re: Unexpected behavior: multiple entries/same target

Post by i-tietz »

Then apply conditions to the keywords in the snippet.
And in the topics you insert the topic into you use specific snippet conditions to see only those you needd for that topic.
Inge____________________________
"I need input! - Have you got input?"
Post Reply