summaryrefslogtreecommitdiff
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Clean up Python embed.iOlly Betts2016-01-271-7/+7
| | | | | | | | | Remove duplicate (aside from comment formatting) embed15.i. Remove references to Python 1.5. Tested and remarkably still works with Python 2.7, so update documentation and comments to reflect that.
* Fix typo: "neccessary" -> "necessary"Olly Betts2016-01-121-1/+1
|
* [Javascript] For v8 >= 4.3.0, use V8_MAJOR_VERSION.Olly Betts2016-01-121-1/+12
| | | | Fixes https://github.com/swig/swig/issues/561.
* Bump version to 3.0.9William S Fulton2015-12-311-1/+1
|
* htmldoc patch no longer needed since pdf docs are now generated by wkhtmltopdfWilliam S Fulton2015-12-311-277/+0
|
* swig-3.0.8 release updatev3.0.8rel-3.0.8William S Fulton2015-12-301-1/+1
|
* html docs updateWilliam S Fulton2015-12-301-2/+7
|
* HTML pdf doc generation fixesWilliam S Fulton2015-12-303-7/+20
| | | | | | | | | | | | | wkhtmltopdf isn't using a fixed-width font for CSS font-family:monospace. Nor is it using one for <PRE> <CODE> or <TT> elements. Add in some Courier fonts for it to use - note that Courier 10 Pitch is installed on Ubuntu by default. Note these fonts need to be installed on the system that generates the pdf documentation. Previously the htmldoc stylesheet was kept in place and the SWIG stylesheet was prepended to it inline in SWIGDocumentation.html. Now the SWIG stylesheet has been amended with most of the htmldoc stylesheet changes and completely replaced after htmldoc is run.
* Replace pdf documentation generation tool with wkhtmltopdf from htmldocWilliam S Fulton2015-12-301-13/+15
| | | | | | | | | | | | | | | | htmldoc does not seem to be generating pdfs properly any more (on Ubuntu 14.04). It has been replaced with wkhtmltopdf which is better as it supports css and so the patched version of htmldoc with the simple css support is no longer required. wkhtmldoc does have have a few problems though which have been addressed in prior commits: - <H1><a name="X"></a>Text</H1> style links need changing to: <H1><a name="X">Text</a></H1> - tabs in <pre> elements should be expanded to 8 spaces by default, but are expanded to just one space and css expand-tab is not recognised. The <pre> <tt> <code> elements do not always select a fixed-width font - try installing a Courier font.
* Replace tabs with spaces in html docsWilliam S Fulton2015-12-3025-750/+759
| | | | | | wkhtmltopdf is not expanding tabs within <pre> elements to 8 spaces as it should. Workaround the problem by converting all tabs to an appropriate number of spaces.
* Minor html fixesWilliam S Fulton2015-12-302-0/+4
|
* html fixesWilliam S Fulton2015-12-301-4/+6
|
* HTML fixes for documentation - add meta tag and loose.dtdWilliam S Fulton2015-12-3045-55/+94
|
* link fixesWilliam S Fulton2015-12-301-1/+1
|
* More link fixes in the docsWilliam S Fulton2015-12-304-4/+4
|
* Remove broken link in docsWilliam S Fulton2015-12-301-2/+1
|
* Docs - remove html tags from headingsWilliam S Fulton2015-12-306-33/+33
|
* Correct links in html documentation using new version of makechap.pyWilliam S Fulton2015-12-3041-1262/+1262
| | | | Corrects position of heading text within A and H1, H2, ... elements.
* Correct html documentation linking generated by makechap.py scriptWilliam S Fulton2015-12-301-16/+29
| | | | | | | | | | | | | Corrects position of heading text to be as mentioned in the 4.01 transitional standard, see http://www.w3.org/TR/html4/struct/links.html#h-12.1.1. For example, changes <H1><a name="Introduction"></a>2 Introduction</H1> to <H1><a name="Introduction">2 Introduction</a></H1> The changes will convert the old incorrect usage should an html file using the old approach be added in the future.
* Python 2 Unicode strings can be used as inputs to char * or std::string typesWilliam S Fulton2015-12-192-0/+67
| | | | Requires SWIG_PYTHON_2_UNICODE to be defined when compiling generated code.
* html links updatesWilliam S Fulton2015-12-1811-28/+25
|
* Add a linkchecker target for checking broken links in SWIGDocumentation.htmlWilliam S Fulton2015-12-189-21/+29
|
* html fixesWilliam S Fulton2015-12-171-1/+1
|
* Remove dependency on yodl tools and remove ccache-swig man pageWilliam S Fulton2015-12-172-2/+475
| | | | | | | | | | Use the CCache.html docs instead of the ccache-swig man page. The yodl2man and yodl2html tools are no longer used and so SWIG no longer has a dependency on these packages which were required when building from git. Closes #286 Closes #128
* Link to distutils fixWilliam S Fulton2015-12-051-1/+1
|
* changes file note and docs for std::arrayWilliam S Fulton2015-11-251-1/+2
|
* Update docs for shared_ptrWilliam S Fulton2015-10-016-2/+101
|
* Ruby tracking doc fixesWilliam S Fulton2015-09-131-12/+15
|
* Merge branch 'lyze-cffi-export-package'William S Fulton2015-09-091-8/+11
|\ | | | | | | | | | | * lyze-cffi-export-package: Add user documentation to the export package extension. Extend the export feature in the CFFI module to support exporting to a particular package.
| * Add user documentation to the export package extension.David Xu2015-08-091-8/+11
| |
* | Ruby mark_function example and docs fixesWilliam S Fulton2015-09-051-1/+1
| | | | | | | | Relates to Ruby trackings hash bug #225
* | First batch of changes after code review by @ianlancetaylor for pull request ↵Michael Schaller2015-08-271-6/+5
| | | | | | | | #502.
* | [Go] Reworked beginning of the documentation.Michael Schaller2015-08-271-99/+113
| | | | | | | | | | | | | | | | * Removed link to examples in the Go source tree as discussed in issue #418. * Reworded occurences of the 'gc tool' as it has been removed with Go 1.5. * Reworked chapter 23.3. This should make it easier for users to get started with SWIG as the chapter starts with how to use SWIG with the go tool. * Added helpful links.
* | [Go] Renamed 'FooBarAbs' to 'FooBarAbstract' in the documentation and examples.Michael Schaller2015-08-091-97/+99
| |
* | pep257 & numpydoc conforming docstringsxantares2015-08-071-17/+20
|/
* Some minor changes after first code review by ianlancetaylor.Michael Schaller2015-08-041-31/+31
| | | | | Renamed overwritenMethodsOnFooBarAbs to overwrittenMethodsOnFooBarAbs. Changed some line breaks.
* Removed empty line in table of contents of the Go documentation.Michael Schaller2015-08-041-1/+0
|
* Fleshed out Go's documentation about the director feature and added a ↵Michael Schaller2015-08-041-22/+531
| | | | | | director example. Fixes issues #418.
* Bump version to 3.0.8William S Fulton2015-08-031-1/+1
|
* Add 3.0.7 release summary and release datev3.0.7rel-3.0.7William S Fulton2015-08-021-1/+1
|
* Cosmetic corrections - Mac OS XWilliam S Fulton2015-08-022-6/+6
|
* HTML fix in docsWilliam S Fulton2015-08-021-1/+1
|
* Fix potential security exploit in generated Java classesWilliam S Fulton2015-08-021-11/+11
|
* Add documentation and CHANGES for special variables and typemap attributes.William S Fulton2015-07-222-0/+74
| | | | | Also add info about special variable expansions in special variable macros.
* Update CHANGES.current and Octave.html to indicate Octave 4.0.0 supportKarl Wette2015-07-171-1/+1
|
* Bump version to 3.0.7William S Fulton2015-07-061-1/+1
|
* Add 3.0.6 release notes and release dateWilliam S Fulton2015-07-051-1/+1
|
* Html doc fixesWilliam S Fulton2015-07-054-9/+11
|
* Document use of %pythoncode "file.py"Olly Betts2015-06-291-0/+12
| | | | As discussed in github issue #379.
* -external-runtime doc improvementWilliam S Fulton2015-06-161-1/+3
| | | | | Closes #441 [skip ci]