Vadim Zeitlin
9b857e6cf1
Merge latest master into doxygen branch.
2014-12-15 02:55:26 +01:00
William S Fulton
b9b9b3cd21
Merge master and C++11 strongly typed enum support
...
Merging from master:
* 'master' of github.com:/swig/swig:
Add more docs about _global_ prefix in typemap temporary variables
Add clarification on _global_ prefix.
fix for nested template defined out of class (issue #265 )
using an unknown constant emits a notice, not a warning
Fix typo
Consistently put whitespace outside of <tt>...</tt> and not inside
wording tweak
Go: Document memory management of C++ classes allocated in Go. Fixes #266 .
revert unrelated file
Fix #224
Fixes for clang -fsanitize=undefined-trap -fsanitize-undefined-trap-on-error
delete unmeaningful macro
Go: fix overload functions with polymorphic issue
del tmp files
GoLang:fix overload functions with polymorphic issue
2014-12-07 17:33:16 +00:00
William S Fulton
8c77d4be89
Document new C++11 strongly typed enumerations support.
2014-12-07 17:10:07 +00:00
William S Fulton
427c5112e7
Add more docs about _global_ prefix in typemap temporary variables
2014-12-06 21:49:42 +00:00
Alexey Neyman
1509d6c9e0
Add clarification on _global_ prefix.
2014-12-06 21:38:58 +00:00
Olly Betts
01faf1baf9
using an unknown constant emits a notice, not a warning
2014-11-18 12:51:30 +13:00
Olly Betts
1cfc099d91
Fix typo
2014-11-18 12:51:08 +13:00
Olly Betts
f541e604e8
Consistently put whitespace outside of <tt>...</tt> and not inside
2014-11-18 12:44:37 +13:00
Olly Betts
859d65b300
wording tweak
2014-11-18 12:38:03 +13:00
Ian Lance Taylor
3fc574e7d6
Go: Document memory management of C++ classes allocated in Go. Fixes #266 .
2014-11-17 08:59:04 -08:00
Natanael Arndt
396f286a02
Fix #224
...
Fix the PHP section of the documentation to include both source files resp. object files in the example command lines
2014-11-09 23:16:38 +01:00
Olly Betts
e047d2e2bd
Remove bogus ; after } in documentation
2014-11-07 15:34:43 +13:00
Olly Betts
45b9070a1d
Fix doc typos reported by tounsi67 in issue#260
2014-11-05 09:56:55 +13:00
Karl Wette
7d1f3a6ea1
Doc/Manual/Octave.html: update which Octave versions have been tested against
2014-10-22 12:18:16 +02:00
William S Fulton
f84e1f823b
Minor C++11 doc change
2014-10-21 08:02:25 +01:00
William S Fulton
3dcc501ac0
Spelling fix
2014-10-21 07:55:07 +01:00
William S Fulton
bfde148887
The kwargs feature no longer turns on compactdefaultargs for languages that don't support kwargs.
...
Affects all languages except Python and Ruby.
Closes #242
2014-10-21 07:34:51 +01:00
William S Fulton
2862a0a6bc
Syntax fix using %feature in documentation
2014-10-21 07:34:51 +01:00
Paweł Tomulik
bf201f22b0
correct example in enum class docs
2014-10-16 16:16:33 +02:00
William S Fulton
023037b122
Tcl documentation fixes
...
Mostly suggestions from Ben Golding on swig-devel mailing list
[skip ci]
2014-10-10 20:58:35 +01:00
William S Fulton
457ba43989
Revert "Octave: whitespace/style cleanup of Doc/Manual/Octave.html"
...
This reverts commit 56fefcc7e0 .
Reverting a series of Octave commits for re-applying again without
incorrect whitespace changes.
2014-10-09 19:34:00 +01:00
William S Fulton
bfa3d378ec
Revert "Octave: drop support for Octave versions older than 3.2.0"
...
This reverts commit 952eee8f59 .
Reverting a series of Octave commits for re-applying again without
incorrect whitespace changes.
2014-10-09 19:33:58 +01:00
Karl Wette
952eee8f59
Octave: drop support for Octave versions older than 3.2.0
...
- Latest non-supported version is 3.0.5, released 2009-04-09
- Earliest supported version is 3.2.0, released 2009-06-05
2014-10-04 19:40:52 +02:00
Karl Wette
56fefcc7e0
Octave: whitespace/style cleanup of Doc/Manual/Octave.html
2014-10-04 19:19:32 +02:00
William S Fulton
412d9813f9
Typo fix in Android docs
...
[skip ci]
2014-09-30 20:29:17 +01:00
Oliver Buchtala
53d7fc8a16
Merge branch 'Richie765-master'
...
Conflicts:
CHANGES.current
2014-09-30 18:46:25 +02:00
Olly Betts
1a99212c2c
[PHP] Add support for specifying any PHP interfaces a wrapped class
...
implements, e.g.: %typemap("phpinterfaces") MyIterator "Iterator";
2014-09-12 12:48:37 -03:00
Vadim Zeitlin
05b5ed11bc
Add a possibility to flexibly ignore custom Doxygen tags.
...
Add %feature("doxygen:ignore:<command>") implementation, documentation and
test case.
This feature allows to use custom tags in C++ Doxygen comments for
C++-specific things that don't make sense in the context of the target
language and also allows to insert contents specific to the target language in
the C++ comments using (different) custom commands, which is very useful in
practice to explain the particularities of the API wrappers.
2014-09-11 01:39:42 +02:00
Ian Lance Taylor
acaaa0f31f
[Go] Add goargout typemap.
2014-09-09 11:28:04 -07:00
Ian Lance Taylor
1addbb46a8
[Go] Add imtype, goin, goout, godirectorin, and godirectorout
...
typemaps, to support writing Go code to convert between types.
2014-09-05 17:54:19 -07:00
Vadim Zeitlin
a1ae3a4344
Describe Doxygen-specific %features in a single place.
...
Put them all in a single table instead of describing doxygen:notranslate
separately for Java and Python when it does the same thing for both.
And while doxygen:nolinkranslate and doxygen:nostripparams are currently
Java-specific, it probably won't remain this way and these features would
either be made to work for Python as well or, perhaps, removed entirely.
2014-09-03 17:28:23 +02:00
Richard
199d29f110
Added missing tag
2014-08-29 12:20:40 -05:00
Richard
911fd761b0
Minor improvements
2014-08-28 19:46:52 -05:00
Richard
0a07d8f770
Update documentation for V8
2014-08-28 19:46:52 -05:00
Vadim Zeitlin
dd4c680a02
Use Python-ish, not C++, parameter types in Python documentation.
...
Using C++ types in documentation for Python users is more harmful than
useless, so use Python types whenever possible and allow defining "doctype"
typemap to customize this for the user-defined types.
2014-08-22 17:45:22 +02:00
William S Fulton
54218bfe3f
C# exception %exception example fix
...
From Cindy Gan
[skip ci]
2014-08-15 19:06:02 +01:00
Vadim Zeitlin
6cce652762
Merge latest master into doxygen branch again.
...
Update Doxygen-specific Python unit tests to work with the new indentation.
Update one of Doxygen-specific Java tests to still build with the new handling
of srcdir.
2014-08-13 16:11:21 +02:00
Olly Betts
c43f84af02
Improve PHP docs about extension= and dl()
2014-08-12 14:45:54 +12:00
Ian Bell
b8d3ff060a
Update Php.html
...
Short summary of the fact that dl() function can no longer be used.
2014-08-11 20:46:49 +02:00
William S Fulton
e2b4a72f3e
Tcl documentation correction
...
From Ben Golding on swig-devel list.
2014-08-11 19:12:05 +01:00
Yuval Kashtan
093fe2a556
Add support for java.nio.Buffer
...
including test-suite test case and documentation
2014-07-18 15:45:16 +03:00
William S Fulton
e982dc7e3b
Correct documentation of special variable names
...
$parentname is really $parentclassname
$parentsymname is really $parentclasssymname
2014-07-01 20:07:19 +01:00
William S Fulton
8728a97dc6
Bump version to 3.0.3
2014-06-06 19:56:38 +01:00
William S Fulton
37c09b0104
Add 3.0.2 release date
2014-06-04 08:48:04 +01:00
William S Fulton
68347cb723
Bump version to 3.0.2
2014-05-28 18:51:46 +01:00
Oliver Buchtala
f19592acf4
Merge branch 'master' of github.com:swig/swig
2014-05-28 04:27:54 +02:00
Oliver Buchtala
686d98672d
Javascript: fixed a missing link in documentation.
2014-05-28 04:27:23 +02:00
William S Fulton
85413bc84d
Add 3.0.1 release date
2014-05-27 23:39:51 +01:00
William S Fulton
eeb1133606
Javascript html links and typo fixes
2014-05-27 23:39:46 +01:00
Oliver Buchtala
c342bc1b28
Javascript: added a link to the v8 web-site to the documentation.
2014-05-27 21:37:18 +02:00