Sandcastle how to include subtopics in TOC - sandcastle

I'm just getting started with Sandcastle, trying to build a conceptual help file without any code component at all. I've got a basic framework working, but I'm having trouble figuring out how to get things into the Table of contents. As I understand it the TOC is based on the contents of the Content Layout.content file, but all I can add are FILES not links within a file.
Is there some syntax that will allow me to have a section within a file appear as a TOC entry? I'm working with some AML files provided by a client, and they include lots of tags that look like this:
<section address="_Toc190084020">
but the _Toc is apparently meaningless, because they don't appear anywhere.
cheers,
Marc

I asked this same question on the SHFB website (https://shfb.codeplex.com/discussions) and got an answer from Eric Woodruff, the maintainer of the project.
It turns out that the table of contents is based strictly on the files included in the project, so the only way to get more TOC entries is to break it into more files.

Related

Missing file references in TYPO3 backend

In a TYPO3 6.2 site that was upgraded from 4.5, the "Ref" column in the file list doesn't provide accurate data.
For example, this image is definitively being used on a page, but the reference is not shown in the backend:
I have run the File Abstraction Layer: Update storage index task in the scheduler and updated the refindex several times - no change.
What can I do to make the references display correctly?
Conclusion of comments to a question:
After a migration from pre-FAL installation (TYPO3 < 6.x) all used images, that were located in /uploads/pics or /uploads/media are moved to /fileadmin/_migrated/ folder.
So, if your image in "Filelist" is reported as without references, then it means, that it probably is.
Be aware, that if you have extensions, which are not FAL-aware, then a file still can be in use, but no usage counter will be shown, becasue files are referenced not through FAL (db), but via filesystem.
At the moment of writing, I don't know any tool, that can help to migrate 'internal_type'=>'file' to FAL. If someone finds it, please, add it here in comments or as separate answer.

MATLAB Results to HTML

Is there a really awesome way to organize results in MATLAB and create a set of HTML pages of the data?
I want to take a bunch of different runs and visualize the data and results in a way that is easy for people to flip through but I was hoping to do better than starting from scratch and writing raw HTML/XML code to disk.
You might like to take a look at the publish-to-HTML functionality in MATLAB. It's extremely easy: you just add some mark-up to the comments in a MATLAB script, click the publish button or use the publish command, and you get a nice HTML (or Word, PowerPoint or LaTeX) file containing the code and output of the script, with your marked up comments converted to nice paragraphs of explanatory text. Here are some links to the documentation:
Publishing MATLAB Code
Publishing Code from the Editor (video)
and to a blog article containing three enhancements to publishing, which display data as HTML tables in your published HTML:
HTML tables
Hope that helps!

change html output doxygen link

I am working on a project that is heavily documented with doxygen.
In a UI I have a list of all the classes available - I would like to be able to open the right documentation page of the class I select. In order to do that I need an easy to read link, so I can dynamically build it and run it.
Is it there any way I can control the generated link of the html file? Because the ones I have right now are impossible do be built dynamically.
You could use Doxygen's tag file mechanism for that (see GENERATE_TAGFILE in the config file).
A tag file is a reasonably easy to understand and parse XML file that basically lists all symbols in your project, with for each symbol the corresponding (relative) URL to the documentation.
So you could parse the tag file from your UI to resolve the links to the doxygen generated documentation in a robust way.

Web.config overwritten

I have a web.config for my website. I just made a web service which likes to overwrite the previous one. From what I can understand I need an xml transform here. I have read several sites and I am confused as how to complete this. One reference. Would love some insight, thanks in advance.
If you want to add or change something in web.config you don't need any XSL(T) because your output format is still XML.
Transformation (XSLT) is mainly for presenting XML data in different format.
What yo need is basic XML editing functionality. Parse to DOM, add/change nodes, save.

How to get SelBlocks Selenium IDE extension to find XML file?

Hopefully, Chris Noe, is in the house...
Selblocks is an extension for Selenium IDE that provides control-flow constructs such as if/then/else, looping and subroutines.
I'm trying to give interation over an XML file a whirl and am running into an error. It seems it can't find the XML file. The XML file is co-located with my Sel scripts. Please see the screenshot attached.
Is there a source for more documentation or examples? Like the sample test suite you have a picture of on the extension page?
Thanks,
Cameron
http://cl.ly/AzzT
I ran into the same issue, and the problem turned out to be that my XML was invalid. In my case it was because one of the parameters I was using was a url containing ampersands. Changing & to & fixed the problem for me, and the variables loaded perfectly.