summary refs log tree commit diff stats
path: root/compiler/installer.ini
Commit message (Collapse)AuthorAgeFilesLines
* define sparc64 platformSergey Avseyev2016-07-211-1/+1
|
* add install_nimble.nims to the tar.xzAndreas Rumpf2016-06-151-0/+1
|
* more niminst fixesAndreas Rumpf2016-06-131-2/+0
|
* added 'koch testinstall' command; more installer related bugfixesAndreas Rumpf2016-06-091-0/+1
|
* added missing files to the installation processAraq2016-06-081-0/+1
|
* adds missing web/ticker.html to the tarballs so that documentation building ↵Andreas Rumpf2016-06-081-0/+1
| | | | works
* version bump to 0.14.2Araq2016-06-081-1/+1
|
* don't package nimble this way for nowAndreas Rumpf2016-06-081-1/+1
|
* finally make niminst smart about which files are importantAndreas Rumpf2016-06-071-162/+6
|
* installer fixes and improvementsAndreas Rumpf2016-06-071-0/+4
|
* Niminst now bundles the `compiler` dir when packaging.Dominik Picheta2016-06-061-0/+4
|
* Fix building documentation in releases (fixes #3823)def2016-02-211-0/+1
|
* fixes the bloody installerAndreas Rumpf2016-01-191-1/+1
|
* updated installer.iniAraq2016-01-181-4/+3
|
* Install stdlib.nimble in libVictor Korkin2015-11-021-0/+1
| | | | Without stdlib.nimble in libs directory Nimscript is not work properly.
* fixes installation problems on unix by hardcoding the dlls.zip nameAraq2015-10-161-1/+1
|
* Added DLL download to installerClay Sweetser2015-10-151-0/+1
|
* Move deprecated modules into lib/deprecated/Adam Strzelecki2015-09-301-0/+3
| | | | | This gives clear indication what modules are now deprecated and reduce clutter in non-deprecated module directories.
* Removed duplicate 'mipsel' from installer.ini. Ref #3164.Dominik Picheta2015-08-011-1/+1
|
* Add new platforms to installer.ini (for linux at least)def2015-08-011-1/+1
|
* C source generation for mipsel.Dominik Picheta2015-07-311-1/+1
|
* add linenoise to installer.iniMarat Safin2015-07-231-0/+3
|
* Add missing nre dependency to installerSergey Avseyev2015-06-121-0/+1
|
* Ship all testdata with distSergey Avseyev2015-05-261-1/+5
|
* added missing stuff for the releaseAraq2015-05-041-0/+4
|
* version 0.11.2Araq2015-05-041-9/+2
|
* more cleanups for 0.11.0Araq2015-04-301-0/+1
|
* preparations for version 0.11.0Araq2015-04-301-2/+98
|
* Fix installer path for nim.nim.cfgdef2015-03-281-1/+1
|
* Rename compiler/nim.ini back to compiler/installer.inidef2015-03-131-0/+174
| | | | | | | - Niminst has a new -m/--main option to set the main file, by default ini-file with .nim extension (old behaviour) - Koch uses this to pass --main:compiler/nim.nim - Fix includes/links of website.ini
* Move installer.ini back to nim.ini to fix ./koch csourcedef2015-03-121-174/+0
|
* nimrod -> nim in some filenamesdef2015-02-141-4/+4
|
* cleanup index generationAraq2015-02-101-0/+174
class="w"> *HText_new3(HTParentAnchor *anchor, HTStream *output_stream, HTStructured * structure); /* FREE HYPERTEXT OBJECT */ extern void HText_free(HText *me); /* Object Building methods These are used by a parser to build the text in an object HText_beginAppend must be called, then any combination of other append calls, then HText_endAppend. This allows optimised handling using buffers and caches which are flushed at the end. */ extern void HText_beginAppend(HText *text); extern void HText_endAppend(HText *text); /* SET THE STYLE FOR FUTURE TEXT */ extern void HText_setStyle(HText *text, HTStyle *style); /* ADD ONE CHARACTER */ extern void HText_appendCharacter(HText *text, int ch); /* ADD A ZERO-TERMINATED STRING */ extern void HText_appendText(HText *text, const char *str); /* NEW PARAGRAPH and similar things */ extern void HText_appendParagraph(HText *text); extern void HText_appendLineBreak(HText *text); extern void HText_appendHorizontalRule(HText *text); /* START/END SENSITIVE TEXT */ /* The anchor object is created and passed to HText_beginAnchor. The senstive text is added to the text object, and then HText_endAnchor is called. Anchors may not be nested. */ extern int HText_beginAnchor(HText *text, int underline, HTChildAnchor *anc); extern void HText_endAnchor(HText *text, int number); extern BOOL HText_isAnchorBlank(HText *text, int number); /* APPEND AN INLINE IMAGE The image is handled by the creation of an anchor whose destination is the image document to be included. The semantics is the intended inline display of the image. An alternative implementation could be, for example, to begin an anchor, append the alternative text or "IMAGE", then end the anchor. This would simply generate some text linked to the image itself as a separate document. */ extern void HText_appendImage(HText *text, HTChildAnchor *anc, const char *alternative_text, int alignment, int isMap); /* RETURN THE ANCHOR ASSOCIATED WITH THIS NODE */ extern HTParentAnchor *HText_nodeAnchor(HText *me); /* Browsing functions */ /* BRING TO FRONT AND HIGHLIGHT IT */ extern BOOL HText_select(HText *text); extern BOOL HText_selectAnchor(HText *text, HTChildAnchor *anchor); /* Editing functions These are called from the application. There are many more functions not included here from the orginal text object. These functions NEED NOT BE IMPLEMENTED in a browser which cannot edit. */ /* Style handling: */ /* Apply this style to the selection */ extern void HText_applyStyle(HText *me, HTStyle *style); /* Update all text with changed style. */ extern void HText_updateStyle(HText *me, HTStyle *style); /* Return style of selection */ extern HTStyle *HText_selectionStyle(HText *me, HTStyleSheet *sheet); /* Paste in styled text */ extern void HText_replaceSel(HText *me, const char *aString, HTStyle *aStyle); /* Apply this style to the selection and all similarly formatted text * (style recovery only) */ extern void HTextApplyToSimilar(HText *me, HTStyle *style); /* Select the first unstyled run. * (style recovery only) */ extern void HTextSelectUnstyled(HText *me, HTStyleSheet *sheet); /* Anchor handling: */ extern void HText_unlinkSelection(HText *me); extern HTAnchor *HText_referenceSelected(HText *me); extern HTAnchor *HText_linkSelTo(HText *me, HTAnchor * anchor); #ifdef __cplusplus } #endif #endif /* HTEXT_H */