How to add a new tab into navindex using doxygen? - doxygen

I am using doxygen to generate an API documentation, and want to add some tutorials (will be wrote in the dox files).
I would like to add a new tab "Tutorials" into navindex.
How should I achieve this? Is it possible to use Examples as the Tutorials?
Thanks for any suggestions.

I solve this problem following the suggestions in this blog: http://matthewtyler.io/adding-tabs-in-doxygen/
<tab type="user" url="#ref licence" visible="yes" title="Licence"/>

Related

How to fix absolute path to custom TinyMCE skin

I followed this tutorial posted on tiny.cloud and did everything according to the post. I got to the part where you define the content_css and the skin_url.
The skin I created is called Snoopal.
I did:
skin: "Snoopal",
content_css: "/elements/skins/content",
skin_url: '/elements/skins/ui'
But the editor doesn't show up on the website. What am I doing wrong?
I've also had a hard time working with these editors, if anyone has a good tutorial on making a custom rich text editor, please post it, thx in advance.

Custom-UI: Force Developer-Tab to be visible

I have a MS-Word template where the user sometimes will have to edit content controls.
Therefore I would like to force the developer tab to be visible whenever a document based on this template is opened.
I changed the CustomUI:
<customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui">
<ribbon>
<tabs>
<tab idMso="TabDeveloper" visible="true" />
</tabs>
</ribbon>
</customUI>
No error is thrown when the document is opened - but the Developer tab isn't visible.
Any thing else I have to consider, to force the tab to be visible?
(Vice versa works: hiding a visible Developer-Tab by setting visible to false)
(There is no VBA attached to the document.)
OK - sometimes a short break helps:
I am adding a custom tab containing the relevant buttons from the developer tab. Plus: renaming them :-)
<customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui">
<ribbon>
<tabs>
<tab id="Abnahme" label="Abnahmedokument">
<group id="x" label="Eingabefelder">
<button idMso="ContentControlText" label="neues Eingabefeld" size="large"/>
<button idMso="ControlProperties" label="Eingabefeld bearbeiten" size="large"/>
</group>
</tab>
</tabs>
</ribbon>
</customUI>
I know of no method other than user education.
You could, in your distribution template, add your own duplicate tab or a tab that has the controls for Content Controls. Better practice is probably to put the Content Control tools on your own additional tab and ignore the Developer Tab.
See also Hide/Show all tabs on Ribbon except Custom tabs which also says there is no method available via VBA.
The following caveat is for someone finding your question in a web search and thinking about using the Word.OfficeUI file and finding this question in a web search. It does not appear that you are doing that.
For customization distribution, the UI editor in Word is a very poor tool. It is intended for personal use.
The Word.OfficeUI file produced by Word will overwrite any user customizations including QAT customizations. Placing that on a user's computer is mean and dictatorial just like overwriting the Normal template. It is a bad practice.
For distribution, you should be editing the XML of a global template. Likewise, such a template is the best method of distributing other user interface customizations like macros and building blocks. The methods for doing this are explored in the book RibbonX: Customizing the Ribbon User Interface and on Greg Maxey's page: Customize the Office Ribbon: It doesn't take rocket science.

Removing the accounting tab (page) on Partner form

I've tried to eliminate the Accounting tab on Partner, yet I wasn't able to "hide" the Accounting tab. Is there a specific file in which I should use the following code (or similar):
<page string="Sales & Purchases" position="attributes">
<attribute name='invisible'>1</attribute>
</page>
I'm trying to put this into partner_view.xml in accounting. I'm disoriented, and would appreciate any help on this.
thanks a lot in advance.
Matias
Never do changes in main addons modules. Better create custom module. and inherit base.view_patner_form and add this in your xml,
<xpath expr="//page[#string='Accounting']" position="attributes">
<attribute name='invisible'>True</attribute>
</xpath>
For your reference, If you want to know how to create custom module, then check this, After inheriting CRM-Lead unable to hide or add fields to my Custom module in Openerp
Hope this will help you.

How to Create a Zend_Navigation Dummy Node - Zend Framework 1.11.4

i'm trying to create a node in the Zend_Navigation tree that is just used for organizing the links within it. therefore it would NOT require an anchor tag when rendered and not show up in the breadcrumb. anyone know how to make this happen?
Not really sure what your're after. I assume that you use navigation.xml in application/config folder to organize your navigation. Then you could provide a dummy navigation element and disable it using css:
<all>
<label>Home</label>
<resource>default:Home</resource>
<module>default</module>
<class>dummy</class>
</all>

GXT Grid translate

i've tried to translate one of GXT widgets - Grid (exacly context menu in column header with sorting etc.) into Polish language but i cant find place to inject my translation.
In some other widget (PagingToolBar) is method setMessages(...) but i cant find it in Grid
So im asking you about place where i can set text that will be displayed in that menu.
Does anyone done this before ?
PS. Sorry for my english.
Take a look at this:
http://code.google.com/intl/de-DE/webtoolkit/doc/latest/DevGuideI18nLocale.html
and put <extend-property name="locale" values="pl_PL"/> in your module.gwt.xml and <meta name='gwt:property' content='locale=pl_PL'> in your index.html.
This (imho) should be the right way.
P.S. I'm not sure, if the pl_PL is right:)
...and Javadoc about gxt XMessages (message for sort asc) and google for "Missing in the Tutorial GXT and I18N inurl:sencha" (sorry i'm not allowed to post more than one link here)