Hi Adriana
You are right, the alias file does populate the text-based header file. There should be no need to go in and change the header file at all. That file is meant to be sourced from the developers (if they define the IDs), or sent by you to the developers if you are defining the IDs. If you ...
Search found 329 matches
- Sun May 28, 2017 2:18 pm
- Forum: Web-based Outputs
- Topic: Header file, alias file, etc. etc.
- Replies: 2
- Views: 2025
- Thu May 18, 2017 4:57 pm
- Forum: Flare's General Discussion
- Topic: Shortcuts for Notes, warnings, etc
- Replies: 7
- Views: 6760
Re: Shortcuts for Notes, warnings, etc
The note may be set up as a paragraph style with an autonumber generating the word Note, and perhaps a background image. In this case you can easily insert it using Ctrl + Shift + H to bring up the style picker and then start typing the style name to insert it (e.g. "p.note").
If they are a bit ...
If they are a bit ...
- Thu Apr 20, 2017 9:04 pm
- Forum: Styles, Stylesheets and XML
- Topic: mc-disable-glossary-terms: true;
- Replies: 1
- Views: 1162
Re: mc-disable-glossary-terms: true;
No problems here with that setting and Flare 2017, maybe raise a support ticket if you're worried about specific behaviour between Flare 11 and Flare 12?
- Thu Apr 20, 2017 8:48 pm
- Forum: Flare's General Discussion
- Topic: IT'S BAAAACK: What's wrong with my fade in/out code?
- Replies: 12
- Views: 10058
Re: What's wrong with my fade in/out code?
When I try your code in the San Diego template, Top Nav output it works flawlessly in all browsers, with none of the problems you mention. The only exception is in when shrinking the browser so the mobile responsive layout shows, and then nothing appears at all.
Perhaps something else is ...
Perhaps something else is ...
- Wed Apr 19, 2017 7:03 pm
- Forum: Importing
- Topic: Importing Word documents for HTML output
- Replies: 2
- Views: 2126
Re: Importing Word documents for HTML output
I don't think it's possible to change this behaviour out of the box. However being XML-based Flare is well set up for working with programmatically. You could, for example, create a post-clean-up script or command-line program that reads in the imported page layout, and converts found text in there ...
- Wed Apr 19, 2017 5:27 pm
- Forum: Web-based Outputs
- Topic: how to publish and setup IIS8 (on Server 2012R2) -Flare 2017
- Replies: 2
- Views: 2276
Re: how to publish and setup IIS8 (on Server 2012R2) -Flare
Sounds like an IIS issue. Does it work if you have the help system under a subfolder (e.g. wwwroot/help), and access via localhost/help? You shouldn't need to call default.htm directly if Default Document is set up in IIS.
- Wed Apr 19, 2017 2:15 pm
- Forum: Single-Sourcing
- Topic: reusing sitecore content
- Replies: 2
- Views: 2510
Re: reusing sitecore content
I don't think a shared footer is possible within Flare, not easily anyway. One approach would be at the level above Flare, for example, have a landing page that serves up the help in the top area and the shared footer at the bottom.
As an alternative, you may be able to get close to the look you ...
As an alternative, you may be able to get close to the look you ...
- Wed Apr 19, 2017 1:46 pm
- Forum: Printed Documentation Targets
- Topic: 2 questions on Word output (DOCX support and style support)
- Replies: 7
- Views: 5067
Re: 2 questions on Word output (DOCX support and style suppo
Some things I've found that Word output doesn't support:
Multiple columns
Background images (in page layouts - I haven't found a way to replicate out title page with full image yet), and background images in CSS (for example, if doing note/tip images)
float left/float right on styles (e.g. page ...
Multiple columns
Background images (in page layouts - I haven't found a way to replicate out title page with full image yet), and background images in CSS (for example, if doing note/tip images)
float left/float right on styles (e.g. page ...
- Mon Apr 17, 2017 6:49 pm
- Forum: Web-based Outputs
- Topic: Title Display in the Browser for Top Navigation Layout
- Replies: 5
- Views: 4008
Re: Title Display in the Browser for Top Navigation Layout
You are right, the code in MadCapAll.js that constructs the document title is not hit at all for top nav, the title within each page is the one that ends up on the browser tab. That means you should be able to add some script to your master page to construct the document title however you want.
As ...
As ...
- Wed Apr 05, 2017 2:34 pm
- Forum: Flare's General Discussion
- Topic: Adding a Flare Search Bar to the Software
- Replies: 2
- Views: 4702
Re: Adding a Flare Search Bar to the Software
It looks like (for HTML5 output, no sure about others) the search URL is #search followed by a dash and then the search query. So I imagine it would't be too hard to have a box in the software that captures the input (e.g. "my search query") then crafts a link like:
https://myserver/help/search-my ...
https://myserver/help/search-my ...
- Mon Apr 03, 2017 2:09 pm
- Forum: Styles, Stylesheets and XML
- Topic: syntax highlighting with prismjs
- Replies: 6
- Views: 4498
Re: syntax highlighting with prismjs
Another option is to reference the prism CSS from your master CSS. Open your master stylesheet in a text editor, and put this at the top:
@import url("prism.css");
Also I'm not sure if it's a requirement, but our project is using a single directory for both the prism javascript and CSS file ...
@import url("prism.css");
Also I'm not sure if it's a requirement, but our project is using a single directory for both the prism javascript and CSS file ...
- Wed Mar 29, 2017 1:36 pm
- Forum: Flare's General Discussion
- Topic: Renaming Many Files
- Replies: 5
- Views: 3187
Re: Renaming Many Files
You may want to look into a tool such as "FAR - Find And Replace"
- Thu Mar 23, 2017 1:06 pm
- Forum: Web-based Outputs
- Topic: Find and replace "Style=* expression with nothing
- Replies: 2
- Views: 1235
Re: Find and replace "Style=* expression with nothing
You'll want to do something like this (using regular expressions) - you could add the class at the end of the find to remove that as well, however I would have thought leaving it there wouldn't hurt and might be useful down the track.
Find:
(<img src=".*) style=".*"
Replace with:
\1
The usual ...
Find:
(<img src=".*) style=".*"
Replace with:
\1
The usual ...
- Thu Mar 16, 2017 1:56 pm
- Forum: Flare's General Discussion
- Topic: robocopy in post-build events
- Replies: 3
- Views: 3108
Re: robocopy in post-build events
Maybe try putting your Robocopy command in an external script and calling that script via the Flare target post-build event - and pass the output directory as a parameter.
Your target's post build event would be something like:
"$(ProjectDirectory)post_publish_script.cmd" "$(OutputDirectory)"
And ...
Your target's post build event would be something like:
"$(ProjectDirectory)post_publish_script.cmd" "$(OutputDirectory)"
And ...
- Thu Feb 23, 2017 1:15 pm
- Forum: Flare's General Discussion
- Topic: Continous Integration
- Replies: 2
- Views: 1806
Re: Continous Integration
Absolutely! Flare has command line build capabilities (madbuild) which can work with any CI tool your company is using (TeamCity, Jenkins etc). Flare 2017 also has pre and post build events which you can use to call external batch and powershell scripts. Those features, along with Source Control ...
- Mon Feb 20, 2017 4:59 pm
- Forum: Flare's General Discussion
- Topic: Set the Search Bar in the Middle of the Tri-pane Header
- Replies: 6
- Views: 2954
Re: Set the Search Bar in the Middle of the Tri-pane Header
Does overrides.css appear in your output? If not then maybe "Exclude content not linked.." is enabled in the target - clear that and try again? Also try clearing the cache (with F12 developer tools showing right click the refresh button and select Empty Cache and Hard Reload). Otherwise not too many ...
- Sun Feb 19, 2017 2:08 pm
- Forum: Flare's General Discussion
- Topic: Set the Search Bar in the Middle of the Tri-pane Header
- Replies: 6
- Views: 2954
Re: Set the Search Bar in the Middle of the Tri-pane Header
Put this code in the Skin | Toolbar | Custom Javascript... section
$("head").append("<link rel=\"stylesheet\" type=\"text/css\" href=\"Resources/Stylesheets/overrides.css\">");
Add a new stylesheet to the Content | Stylesheets folder called "overrides.css".
Use that file to further customise ...
$("head").append("<link rel=\"stylesheet\" type=\"text/css\" href=\"Resources/Stylesheets/overrides.css\">");
Add a new stylesheet to the Content | Stylesheets folder called "overrides.css".
Use that file to further customise ...
- Thu Feb 16, 2017 8:05 pm
- Forum: Single-Sourcing
- Topic: Best practice/workflow for tying changes to product version
- Replies: 11
- Views: 8621
Re: Best practice/workflow for tying changes to product vers
Flare does work with Source Control (SVN, Git etc), however there are no branching, merging or tagging options from within the Flare GUI. So you could treat documentation source files as code, but if you need to branch for sprints then merge back at the end, you'll need to use third-party tools like ...
- Tue Feb 14, 2017 7:08 pm
- Forum: Tips and Tricks
- Topic: Search results help?
- Replies: 13
- Views: 16157
Re: Search results help?
Interestingly it appears Flare only uses the lower case form of stop words in HTML5, entering "With" or "WITH" etc will still search for those terms.
As a slightly out there idea you could write a script that forces text entered into the search box to be upper case. Or takes the text on submit ...
As a slightly out there idea you could write a script that forces text entered into the search box to be upper case. Or takes the text on submit ...
- Sun Jan 29, 2017 1:41 pm
- Forum: Styles, Stylesheets and XML
- Topic: MiniTOC proxy appearance
- Replies: 4
- Views: 3233
Re: MiniTOC proxy appearance
For our 'a' styles we ended up using an !important on the color to override the Flare miniTOC styles, this may be one approach you could use?
Code: Select all
a,
a:visited {
color: #226eab!important; /*override Flare style for miniTOC links*/
text-decoration: none;
}
- Mon Jan 09, 2017 7:30 pm
- Forum: Flare's General Discussion
- Topic: Documentation Respository
- Replies: 2
- Views: 2286
Re: Documentation Respository
Flare's strengths are not as a document repository - it is more for authoring and content management. Therefore I don't think Flare will help much here - this sounds like more of a content strategy/process issue. You could import the word docs into one or more Flare projects, and use Flare's various ...
- Tue Dec 20, 2016 2:53 pm
- Forum: Styles, Stylesheets and XML
- Topic: Icons in skins
- Replies: 1
- Views: 1188
Re: Icons in skins
If you're talking about the TOC icons in HTML5 output and the 'Styles' accordion in the skin, there are two places to define them:
Navigation | Navigation Panel | TOC | Icons (use this to define your icons)
Navigation | TOC Entry | Icons (set these to "(default)" - whatever is defined above will ...
Navigation | Navigation Panel | TOC | Icons (use this to define your icons)
Navigation | TOC Entry | Icons (set these to "(default)" - whatever is defined above will ...
- Sun Dec 11, 2016 1:38 pm
- Forum: Web-based Outputs
- Topic: Canonical Tag
- Replies: 7
- Views: 6225
Re: Canonical Tag
Were you adding the <link rel... tag to the masterpage or individual topics? I can understand topics stripping out the code, but I would hope the masterpage would copy the code across as is.
The other thing to try would be adding some JavaScript to the HTML5 skin (under the Toolbar accordion ...
The other thing to try would be adding some JavaScript to the HTML5 skin (under the Toolbar accordion ...
- Wed Nov 02, 2016 2:20 pm
- Forum: Printed Documentation Targets
- Topic: Two identical pages per printed page, side by side
- Replies: 2
- Views: 1537
Re: Two identical pages per printed page, side by side
Duplicate each topic in the TOC, with a two-column page layout, and a column break before each heading?
- Wed Nov 02, 2016 1:13 pm
- Forum: Microsoft CHM Help
- Topic: Multi-level lists not respected in CHM output
- Replies: 4
- Views: 5107
Re: Multi-level lists not respected in CHM output
CHM help uses an older version of IE to render it's output (I think IE7). My guess is the older version doesn't support complex selectors in that way, or perhaps modern browsers add additional indents in their inbuilt stylesheet that CHM help doesn't.
Try using IE's F12 Developer Tools to set the ...
Try using IE's F12 Developer Tools to set the ...