Commit graph

1,248 commits

Author SHA1 Message Date
Michael Schaller
255715d9ad [Go] Improved Go Class Memory Management section of the Go documentation.
Fixes #289.
2015-05-08 14:32:22 +02:00
William S Fulton
7178bb11d3 Expand __declspec documentation 2015-04-14 08:13:13 +01:00
Chris Krycho
aebc9379ed Document %include behavior for __declspec preprocessor directives.
Add a short paragraph and example of how to handle the way Microsoft
recommends to wrap `__declspec` definitions in preprocessor macros and
supply them in a common header file.
2015-04-14 07:44:49 +01:00
William S Fulton
55e7264d43 Clearer warning message for badly constructed typecheck typemaps 2015-04-14 07:34:40 +01:00
William S Fulton
4010d25b91 HTML corrections
[skip ci]
2015-04-13 20:36:12 +01:00
William S Fulton
073bb244e4 Add docs about missing precedence levels for typecheck typemaps 2015-04-13 20:36:12 +01:00
Simon Marchetto
ec6d46f387 scilab: fix doc typos 2015-03-24 16:52:18 +01:00
Olly Betts
b7ea2115c4 Merge pull request #338 from thomascirca/node-doc
Corrected the link for documentation relating to NodeJS, and added one c...
2015-03-23 20:15:41 +13:00
Olly Betts
af113fa6f0 Add missing ; after C++ class definitions 2015-03-20 13:46:28 +13:00
Olly Betts
13894f803b Whitespace cleanup 2015-03-19 13:15:23 +13:00
Olly Betts
6d80e40699 Remove dead Ocaml configure probes
A number of the probed for values are no longer actually used anywhere.
2015-03-18 13:10:59 +13:00
Olly Betts
0193c98608 Fix random case flipping of an HTML source line
Introduced in a586874
2015-03-16 18:02:03 +13:00
Ian Bell
a2513b083a Added some information on manually compiling for R
This was the root of my problem, and it would have been good to have this clearly explained before.
2015-03-10 10:07:05 -06:00
Ian Lance Taylor
9ad497c08e [Go] Add -cgo option, required for Go version 1.5 and later. 2015-03-02 14:03:33 -08:00
Tyler Jones
fb2cf11891 Corrected the link for documentation relating to NodeJS, and added one clarification regarding building modules. 2015-02-11 10:09:53 -08:00
Ian Lance Taylor
0a021a938e [Go] Remove all generated calls to _swig_makegostring, as it will no
longer as of Go 1.5.  In Go 1.5 or later user calls to
_swig_makegostring will fail at link time.

Instead, use goout and godirectorin typemaps to allocate strings in Go
code.

Change the Go typemaps support to ignore empty strings, so that we can
define empty strings for regular types so that %apply will override
the definitions for string types.

Fix the gccgo code to wrap SwigCgoCallback around all godirectorin
typemaps.

Add a few newlines after typemap code so that the typemaps don't have
to include them.
2015-02-05 10:15:37 -08:00
William S Fulton
7c2ed7eae5 Python html doc cosmetic tweaks
[skip ci]
2015-02-02 20:00:07 +00:00
William S Fulton
76d813f321 Python director documentation correction
Fixes #https://github.com/swig/www/issues/2
[skip ci]
2015-02-02 19:52:07 +00:00
William S Fulton
d834202695 Bump version to 3.0.6
[skip ci]
2015-02-01 00:55:35 +00:00
William S Fulton
dbd446f806 C++11 mention in doc Introduction 2015-01-31 17:49:11 +00:00
William S Fulton
72c78591df html fixes 2015-01-31 17:39:37 +00:00
William S Fulton
85145302be Add release info for 3.0.5 2015-01-31 17:39:37 +00:00
William S Fulton
2e8dfbcc3e Add Scilab to html docs 2015-01-27 19:30:24 +00:00
William S Fulton
5dba60943c Scilab html fixes 2015-01-27 19:30:24 +00:00
Simon Marchetto
33fba2020b scilab: other doc minor fixes 2015-01-26 16:05:03 +01:00
Simon Marchetto
7c9a9aee70 cosmetic changes in doc 2015-01-26 14:54:05 +01:00
Simon Marchetto
0544765abd remove -nobuilder option 2015-01-26 12:29:40 +01:00
Simon Marchetto
adc4b788df Merge remote-tracking branch 'origin/master' into gsoc2012-scilab
Conflicts:
	.gitignore
	.travis.yml
	configure.ac
2015-01-26 10:50:20 +01:00
William S Fulton
6f48e57090 Scilab command line options put in alphabetical order and some html tweaks 2015-01-22 20:03:16 +00:00
Olly Betts
77288c89df Error message example to match actual output 2015-01-22 12:01:42 +13:00
William S Fulton
01a6df8aad Merge branch 'michael-schaller-doc-template-nested'
* michael-schaller-doc-template-nested:
  Nested class template doc tweaks
  Updated C++ template documentation with respect to using a nested class as template parameter.
2015-01-16 19:09:00 +00:00
William S Fulton
f25f5cf635 Nested class template doc tweaks 2015-01-16 19:08:41 +00:00
William S Fulton
bedff70793 Bump version to 3.0.5 2015-01-14 23:58:49 +00:00
Simon Marchetto
388d8fd007 change 'Module' section to 'Builder modes' and other fixes 2015-01-14 15:44:28 +01:00
William S Fulton
558ded2ceb Add 3.0.4 release information 2015-01-13 23:06:03 +00:00
Olly Betts
aa5d916e4d Fix typo 2015-01-14 11:04:09 +13:00
Olly Betts
a98bda01cb Note 1.8 as the oldest supported version 2015-01-14 11:04:02 +13:00
William S Fulton
055e96da09 Update html 2015-01-13 07:58:33 +00:00
Simon Marchetto
c064e076bd update doc 2015-01-12 17:47:56 +01:00
Olly Betts
4b5ed45d50 Add note about delimiting blocks of Python code
Using { and } to delimit means Python comments will cause errors with
SWIG 3.0.3 and later.  With older SWIG it usually just meant such
comments failed to appear in the generated output.  See issue #221.
2015-01-09 14:52:46 +13:00
Olly Betts
70280970d6 Fix links to the online 1.3 docs to instead be relative 2015-01-08 11:16:19 +13:00
Olly Betts
4912920416 Fix tab to space in HTML preformatted block 2015-01-08 10:55:35 +13:00
Olly Betts
cd16059c66 Provide -cppext as a general command line option
Provide -cppext as a general command line option for setting the
extension used for generated C++ files (previously it was specific
to the PHP backend).  Deprecate the equivalent -suffix option
provided by the Ocaml backend, but continue to support that for
now.
2015-01-08 10:54:37 +13:00
William S Fulton
bfccd9c441 More on Go examples
[skip ci]
2015-01-07 20:46:25 +00:00
Michael Schaller
007a75480a Updated C++ template documentation with respect to using a nested class as template parameter.
Fixes issue swig/swig#270.
2015-01-05 16:43:49 +01:00
Ian Lance Taylor
aa4d034e8e Merge pull request #288 from michael-schaller/go-doc
[Go] Updated Go documentation (examples, runtime.SetFinalizer, object ow...
2014-12-31 10:33:37 -08:00
William S Fulton
73222a1cd1 Bump version to 3.0.4 2014-12-31 01:22:16 +00:00
William S Fulton
30537089ca HTML tweaks 2014-12-29 21:54:58 +00:00
William S Fulton
5ec7fe578b Add 3.0.3 release information 2014-12-29 21:35:28 +00:00
Michael Schaller
9a0fbef431 [Go] Changed link 'https://github.com/golang/go/tree/master/misc/swig' to 'https://golang.org/misc/swig' in the Go documentation. 2014-12-25 09:48:59 +01:00