Managing Hyperlinks across projects

This forum is for all Flare issues not related to any of the other categories.
Post Reply
jkpalmer
Propeller Head
Posts: 71
Joined: Tue Jul 14, 2015 9:53 am
Location: Chicago Area

Managing Hyperlinks across projects

Post by jkpalmer »

I have the requirement of creating a hyperlink from one project topic to another project topic.

Thinking is that I create a bookmark in the "target" project but after that, not sure where to go.

Am looking for the best practice to accomplish.

Jim P.
wclass
Propellus Maximus
Posts: 1238
Joined: Mon Feb 27, 2006 5:56 am
Location: Melbourne, Australia

Re: Managing Hyperlinks across projects

Post by wclass »

We use context sensitive help IDs (CSH) for links across projects, though they are all stored on the same server and so we can easily set the base URL.
Margaret Hassall - Melbourne
roboHAL
Sr. Propeller Head
Posts: 254
Joined: Mon Dec 31, 2012 9:57 am

Re: Managing Hyperlinks across projects

Post by roboHAL »

At the project source file level or the output? Can't imagine why you would need/want to do that at the project level. I think either way though you would need the URL or UNC path to the file and insert that data in the file you intend to open it from.
jkpalmer
Propeller Head
Posts: 71
Joined: Tue Jul 14, 2015 9:53 am
Location: Chicago Area

Re: Managing Hyperlinks across projects

Post by jkpalmer »

For sake of discussion, I have three projects.
Project One is my "Knowledge Base" and is accessible only on an internal webserver.
Project Two is an intranet application published on an internally accessible webserver.
Project Three is an internet application published on an internet webserver.

All three projects are managed by a Flare team.

I would like to be able to have links from Project One to bookmarks on both Project Two and Three.

Jim P.
wclass
Propellus Maximus
Posts: 1238
Joined: Mon Feb 27, 2006 5:56 am
Location: Melbourne, Australia

Re: Managing Hyperlinks across projects

Post by wclass »

If you are looking for how to access the bookmarks, you just add a hashtag and the bookmark name (I don't think you can have spaces in the name).
For example:

Code: Select all

 <a href="html_tips.html#tips">Visit the Useful Tips Section</a>
For links to other projects, you would need the whole URL where the file name is in the above example.

You can get more details from the W3schools site at:
http://www.w3schools.com/html/html_links.asp
Margaret Hassall - Melbourne
gsm1
Propeller Head
Posts: 24
Joined: Wed Oct 05, 2016 4:46 pm

Re: Managing Hyperlinks across projects

Post by gsm1 »

The following forum discussion helped me quickly resolve the challenge of creating viable links across HTML5 projects (merged using the runtime TOC solution). Props to the authors for clarity and completeness.

Re: Linking between merged WebHelp topics
viewtopic.php?f=13&t=14371
Post Reply