Sylvestre Ledru [Sun, 1 Jul 2012 16:14:59 +0000]
Get ride of the useless pubdate tag.
We are not using it, no body is using it and the information is easily
available in git.
For the record, it has been deleted with the following code:
------
function removepubdate(fileName)
doc = xmlRead(fileName);
xp = xmlXPath(doc, "//foo:info",["foo" "http://docbook.org/ns/docbook"])
xmlRemove(xp);
xmlWrite(doc);
xmlDelete(doc);
endfunction
listHelp=mgetl("helpfile.txt");
for i = 1 : size(listHelp,'*')
removepubdate(listHelp( i));
end
------
Change-Id: Id378c26518b4201373ecfc030411a6cdc7b69e22
Sylvestre Ledru [Mon, 25 Jun 2012 19:38:01 +0000]
Includes images into the trigonometry documentation
Change-Id: I2ed87dcad95fb3297995dcf485b7debc71785dca
Sylvestre Ledru [Sat, 23 Jun 2012 21:23:54 +0000]
* Generated on the fly the 2d & 3d plot graphics to be included in the documentation * Update the list of Graphics features to use the generation of the image (and get ride of the static images)
Change-Id: I3c3f91b9d5fe9c64b63fe942f23fc5383e77c2a5
Sylvestre Ledru [Sat, 30 Jun 2012 23:14:01 +0000]
New serie of images in the graphic help.
For the color_management, I use directly all examples.
The script was the following:
function reuseExampleForImage(fileName)
disp(fileName)
doc = xmlRead(fileName);
xp = xmlXPath(doc, "//foo:refsection[foo:title=''Examples'']",["foo" "http://docbook.org/ns/docbook"]);
if (xp.size > 0)
Example=xp(1).children(2).content;
if length(Example)>0
root = xmlElement(doc, "refsection");
root.children(1) = "<title>Sample</title>";
root.children(2) = xmlElement(doc, "scilab:image");
root.children(2).content = Example;
xmlDump(root);
doc.root.children(4.9)=root;
xmlWrite(doc);
end
end
xmlDelete(doc);
endfunction
listHelp=mgetl("helpfile.txt");
for i = 1 : size(listHelp,'*')
reuseExampleForImage(listHelp(i));
end
Quick and dirty!!
Change-Id: I77fe67e3bec45ceef5af784d383a626441a3231d
Sylvestre Ledru [Sat, 30 Jun 2012 21:15:09 +0000]
Provide example for xclear, xdel & xpause
Change-Id: I38ee12fb422539c4dadad583b06890a7df9077c4
Sylvestre Ledru [Sat, 30 Jun 2012 21:28:20 +0000]
Add Make targets to generate only a lang of the help
Change-Id: I0399b9ff610f21fd2b1b147449af373ed12019be
Samuel GOUGEON [Sun, 1 Jul 2012 00:22:41 +0000]
New demo of a mandrelbrot (fractal) based on Matplot1
Change-Id: I044a85a8c066bc88a35e57d5faf4e24be930d668
Sylvestre Ledru [Sat, 30 Jun 2012 20:44:52 +0000]
More samples in the graphic help pages Note that they are automatically generated at build-doc time
Change-Id: I093e4937d2bd000891d87f6351bb4b2c0f0343ec
Sylvestre Ledru [Sun, 1 Jul 2012 17:23:06 +0000]
Disable two images export which fails the build doc process
Change-Id: Id122cb847e36fb5da9ce90279a7639a068cfa748
Calixte DENIZET [Mon, 2 Jul 2012 08:36:22 +0000]
Doc generation: Avoid to regenerate an image which has already been generated for an other language.
Handle a xml attribute "localized" (true or false, false by default) to <scilab:image> to generate the image for each language.
Change-Id: If34282130a4ab400c084199af3006376dad559db
Calixte DENIZET [Thu, 21 Jun 2012 10:36:39 +0000]
Prefs: add a function preferences()
Change-Id: I394684a8cc4623ab27427f045bc9b96bddde42b5
Sylvestre Ledru [Sat, 30 Jun 2012 20:10:17 +0000]
barhomogenize accepts 0 arg (cf the documentation)
Change-Id: I6899282200b056cebcd41aefd10157bf1cb782a2
Manuel Juliachs [Wed, 27 Jun 2012 08:25:12 +0000]
Triangulator amended: better equality test added.
Change-Id: I4976f049295f3fb07705b11ec7db21f795c9c7c6
Manuel Juliachs [Thu, 28 Jun 2012 12:31:15 +0000]
Grayplot facet validity determination corrected for the direct data_mapping case
(facet (i,j)'s validity only depends on the (i,j) grid value).
Change-Id: I64872db591b94ea862531d20c262b5aa46e534f2
Calixte DENIZET [Thu, 28 Jun 2012 09:38:18 +0000]
Bug 11349 fixed: There was an error when path to external editor contained white spaces
Change-Id: I19a9f7e667ec9de2f8c5be052c3c169fd1cc71ca
Antoine ELIAS [Fri, 29 Jun 2012 14:12:41 +0000]
delete current figure, set another figure AND its axes as current axes
Change-Id: I1268603cb70cfd8f0f48d509d808a6b182324543
Clément DAVID [Thu, 28 Jun 2012 13:16:30 +0000]
Xcos help: remove gif equations
Change-Id: Ieca5cdba927c99dcc2e49cfe7b04f4e3b6849cff
Calixte DENIZET [Sun, 24 Jun 2012 17:12:17 +0000]
Bug 11340 fixed: bode, gainplot, nyquist and plzr without args did not show an example
Change-Id: Ifc95fff11f12bde96f128393cefcef9dae2b0360
Sylvestre Ledru [Wed, 27 Jun 2012 15:32:03 +0000]
Improvement of the title of the chapter (switch to UTF8 in french)
Change-Id: If43bbd77ee89c21552ed979745b918662ea62b50
Sylvestre Ledru [Wed, 27 Jun 2012 15:02:17 +0000]
Consistency on the help page
Change-Id: Ia08465276876ee4b79ae6754362779276b7716eb
Samuel Gougeon [Wed, 27 Jun 2012 14:13:17 +0000]
Demo of the hist3d function
Change-Id: I2235511b51cf7785c457f346e52cec1b11b45b6f
Samuel GOUGEON [Tue, 26 Jun 2012 16:46:24 +0000]
Provide a (way) nicer default graphic for the function fgrayplot
Change-Id: I8ecc8fdbd596f093b89f5ecda00d30a0180e0ee4
Sylvestre Ledru [Tue, 26 Jun 2012 16:42:43 +0000]
Documentation
=============
* Bug #11360 fixed - f in synopses was named mtx in the parameter section.
Change-Id: I0817114d4236bc9421364521d3110c1afa91c3bb
Sylvestre Ledru [Sun, 24 Jun 2012 14:38:08 +0000]
Show the actual Scilab error
Change-Id: Id3e3d9652b4f3429e18b18f52f444abf3c4a32e3
Sylvestre Ledru [Sat, 23 Jun 2012 20:22:25 +0000]
Remove the help page of plot2d_old_version which no longer exists
Change-Id: Ie3bac46a4c88090860088f462181f6ba6a896197
Sylvestre Ledru [Tue, 26 Jun 2012 15:22:14 +0000]
Regenerate GIWS wrapper with version 2.0.1
Change-Id: I74e4710458cbc1da49b4a87b1ffc3d190bba7d17
Sylvestre Ledru [Tue, 26 Jun 2012 15:15:20 +0000]
Missing patch in the russian localization
Change-Id: Ic5938de482cd72dea1fcaaa452cf898d29ef3bf4
Clément DAVID [Thu, 21 Jun 2012 07:31:58 +0000]
* Bug #9496 fixed - Xcos flag 5 (ending) was not called if simulation is
stopped from user interface.
Change-Id: I1c2ff682065be18c9afb1af3de0956f50730a6e6
Stanislav KROTER [Tue, 26 Jun 2012 14:39:50 +0000]
Console russian translation
Change-Id: I09f67726b6c94c639d72849464f586e12c0e7bd1
Stanislav KROTER [Tue, 26 Jun 2012 12:50:41 +0000]
Revision of help pages for module "console".
Change-Id: I89826ce02b637f9916488253edf7c94442f7020e
Antoine ELIAS [Tue, 26 Jun 2012 09:53:33 +0000]
graphics nonreg test 9455: Wait for MVC update
Change-Id: Ifd8c75f1481fe7a28d3e68b617d9090837079b02
Antoine ELIAS [Tue, 26 Jun 2012 09:33:22 +0000]
graphics nonreg test 2814: Wait for MVC update
Change-Id: I77bb86efb27cf9dc56e7233b9d27669bc900a52d
Antoine ELIAS [Tue, 26 Jun 2012 07:59:14 +0000]
rollback of codereview.scilab.org/#/c/7712/2
Change-Id: I6143ec1f00bf01ce059b9d35f84c1042bf3d9113
Sylvestre Ledru [Sun, 24 Jun 2012 13:51:12 +0000]
Fix some (trivial) java warnings
Change-Id: Id721bd57dc6a978dd9a18cbfe761262827f103f1
Sylvestre Ledru [Sat, 23 Jun 2012 20:27:06 +0000]
Provide a demo like other graphic function when called without any arg
Change-Id: Ifd6a6211a866a7016f5ee421eb27f0b7f6b7af4f
Calixte DENIZET [Sat, 23 Jun 2012 17:36:59 +0000]
Help generation: add the ability to generate an image from inlined Scilab code
in refentry add: xmlns:scilab="http://www.scilab.org"
and in xml, add: <scilab:image>plot3d();</scilab:image>
Change-Id: I96dccb70716a69da03ec2b76ee5874fdf6618bf2
Sylvestre Ledru [Sat, 23 Jun 2012 20:12:06 +0000]
The help page points to itself
Change-Id: I0d32b3b9065898139b0a32af87ab3257f7877a63
Cedric Delamarre [Fri, 22 Jun 2012 16:04:04 +0000]
Different rendering between Linux and Windows of contourf demo.
Change-Id: I65aa38bb0c27c8ca871e2155a41f473c11d2d348
Cedric Delamarre [Tue, 12 Jun 2012 10:04:24 +0000]
Ticks are displayed when user set it manually in plot2d.
Change-Id: I400c490e250bc72048c1ba259187f8d89091a37c
Sylvestre Ledru [Mon, 25 Jun 2012 18:59:27 +0000]
Check that the input argument is a square matrix
Change-Id: Idbbe8864d378d94eddcf453437e58c7d2103705e
Antoine ELIAS [Mon, 25 Jun 2012 09:08:49 +0000]
Bug #10904 fixed - Test failed for other languages than en_US.
Change-Id: I1727066b39ab996c1b0b3ba452a04213253e5642
Adeline CARNIS [Mon, 25 Jun 2012 14:13:16 +0000]
Add error messages in the cosm function
Change-Id: Ied8db97bfeab53e73517670f7ec9fdd8830099d4
Stanislav KROTER [Sat, 23 Jun 2012 07:02:25 +0000]
Fix typos.
Change-Id: I3b2aa2f68cf2021999eee6beca9d7c28af08d46a
Stanislav KROTER [Fri, 22 Jun 2012 17:25:07 +0000]
Fix a typo.
Change-Id: If14f9ec892ac344d406d14ea2bf41dee91f23276
Sylvestre Ledru [Fri, 22 Jun 2012 17:22:33 +0000]
FFTW russian translation
Change-Id: I356d032af4d8a22ef8e6c9f4922b4fe30c8508f0
Sylvestre Ledru [Fri, 22 Jun 2012 16:59:36 +0000]
Consistency in the title of the help wintools pages
Change-Id: I7cdfb725771cd535d39efe9a2a35ea6726464b2b
Sylvestre Ledru [Fri, 22 Jun 2012 16:57:39 +0000]
the build of the javadoc is also necessary when building the web documentation
Change-Id: I550c4da6b53185a17a5a23ad72a9597e516a2bd6
Vincent COUVERT [Fri, 22 Jun 2012 16:28:50 +0000]
Create new category for 5.4.0-beta-2
Change-Id: If970f1a5397726809c2dbf3233d3a01e08721999
Calixte DENIZET [Fri, 22 Jun 2012 11:13:06 +0000]
Prefs: remove not conected components
Change-Id: Ia3155995f1a88cf2d0f93fefa529fe93bc5da77e
Sylvestre Ledru [Fri, 22 Jun 2012 12:25:25 +0000]
also set the 10.5 Mac OS X flag
Change-Id: I3471a9f9e532cc2c924a24584306b49f8fc4a0c5
Sylvestre Ledru [Fri, 22 Jun 2012 12:45:15 +0000]
Enable by default the antialiasing
Change-Id: I7e6c1b869141673e8628e70088de6ae36a53ca56
Sylvestre Ledru [Thu, 21 Jun 2012 22:03:38 +0000]
Remove (long) dead code
Change-Id: If34bb41c7dba308b08c9cccfd138045fc249ae97
Vincent COUVERT [Fri, 22 Jun 2012 10:12:51 +0000]
Use old save format for ATOMS to improve performances
Change-Id: Ief24654e3af39232520b3fbe87469611c78f7194
Vincent COUVERT [Fri, 22 Jun 2012 09:47:04 +0000]
Temp fix for bug #11323
Change-Id: I5342b3ba2b6da3c2c49903b879ebcd7d03faf221
Vincent COUVERT [Fri, 22 Jun 2012 08:23:39 +0000]
* Bug #11315 fixed - An error occured while going into Xcos demos.
Change-Id: Ieabc23aa6102d5f2795c8ecaf7e91b64ea926395
Vincent COUVERT [Fri, 22 Jun 2012 08:16:41 +0000]
Fix typo
Change-Id: I6302de1624d3a600aa0faa705fdc0f4739b109c7
Vincent COUVERT [Fri, 22 Jun 2012 08:15:23 +0000]
Fixes Windows binary version
Change-Id: Ib0956a713d811ed2b2cd33e262cdd3bac443c8c3
Vincent COUVERT [Fri, 22 Jun 2012 06:55:08 +0000]
Translate a new message since it appears at first Scilab close
Change-Id: I1825dcc9560bb4fccc1d271d8edc503e5c2209e6
Bruno JOFRET [Fri, 22 Jun 2012 06:32:50 +0000]
Fix History Manager Symbol definition/export.
Change-Id: I5a7c07e5f87c97e87645039810c33f5dbff620af
Calixte DENIZET [Thu, 21 Jun 2012 18:21:10 +0000]
Fix a cyclic dependency in Java
Change-Id: I56e6683bc93e807428c517e9890cc6cbe2991367
Stanislav KROTER [Thu, 21 Jun 2012 16:34:12 +0000]
Russian translation of the differential equations module
Change-Id: I8ee4d94e014f58c54641b77b12a340f2f6126998
Calixte DENIZET [Thu, 21 Jun 2012 16:10:44 +0000]
Prefs: avoid segfault on unexisting attribute
Change-Id: Ib3f83fdf0eb71fa2800b2c81a82b023dd3f73f52
Calixte DENIZET [Thu, 21 Jun 2012 15:40:24 +0000]
Prefs: branch history manager prefs
Change-Id: Iee6d4f0d094f88df932b959141f161dbe875aad3
Clément DAVID [Thu, 21 Jun 2012 15:27:12 +0000]
Xcos cmat3d: fix data_bounds and axe box type
Change-Id: I42de61dbb42f30b3c332e23c432b5de18a480cad
Calixte DENIZET [Wed, 20 Jun 2012 19:39:20 +0000]
Prefs: add a way to backup preferences file
Change-Id: I02b83e7fa50ec172c6465e76b70eb6a14f907290
Julie PAUL [Thu, 21 Jun 2012 15:06:41 +0000]
Last review before release
Change-Id: I769b7aee6604761542b98ad993c63761372dd782
Clément DAVID [Thu, 21 Jun 2012 14:45:48 +0000]
Xcos diagram loading: update modified status after UID generation
Change-Id: If75de6ce21630e52425fd15874b35d2bee99fe21
Clément DAVID [Thu, 21 Jun 2012 14:11:00 +0000]
Xcos scopes: use clipgrf='on' on all scopes
Change-Id: Ia7b26e31d90fa3f6e6b53d408bce023eb22365b8
Vincent COUVERT [Thu, 21 Jun 2012 14:30:20 +0000]
Last review
Change-Id: I5fc694d5eae101b85b4cb8a7ec1e72c6f50a5ed2
Calixte DENIZET [Thu, 21 Jun 2012 13:56:55 +0000]
Prefs: remove useless items (for the moment)
Change-Id: Ie379dc2e6617d47a60b4fc1015b5794d976c6419
Vincent COUVERT [Thu, 21 Jun 2012 13:39:44 +0000]
Plug back printing
Change-Id: Iaea7e7e6d21f24f748b0478aa6036efb2644605d
Calixte DENIZET [Thu, 21 Jun 2012 12:31:01 +0000]
Prefs: Warn before clearing the console with clc()
Change-Id: Ic3f0f6712cdef937a919137c1150bbc7c818ab65
Adeline CARNIS [Thu, 21 Jun 2012 12:43:21 +0000]
zoom_rect(rect) is not performed on the current figure
Change-Id: Ifb4ce0a71d05ba4a56efacf0607b3df59838811c
Vincent COUVERT [Thu, 21 Jun 2012 12:51:15 +0000]
Children are a row vector not a column vector.
To test: test_run("gui", ["bug_4782", "bug_4782_v5"])
Change-Id: Ib56525e7e622815fafffc57f5e5b63a1b6bf43ec
Vincent COUVERT [Thu, 21 Jun 2012 12:49:34 +0000]
Fix bug in xsetech, test added to avoid check of data_bounds property for objects if they are not "Axes".
To test: test_run("gui","bug_3675") (this test fails without this commit)
Change-Id: I9adcefef259e9a30de8143a233acd6c14af98c35
Sylvestre Ledru [Thu, 21 Jun 2012 12:13:56 +0000]
About the graphic export
Change-Id: I4d52b22521b4b442150154a1c0ceba26d4ffcdfd
Stanislav KROTER [Mon, 18 Jun 2012 15:48:20 +0000]
Fix bugs in examples in help pages for intg.
Change-Id: Ibffc00e34fa9718bb6e600d253823887da5e6254
Stanislav KROTER [Mon, 18 Jun 2012 15:10:58 +0000]
Insert "no-scilab-exec".
Change-Id: I4b4efd2b2459f01638f9b6c0e9b7d99528ead5cd
Vincent COUVERT [Thu, 21 Jun 2012 12:33:39 +0000]
Fix test after codereview.scilab.org/#/c/7451/
To test: test_run("graphics","bug_4325")
Change-Id: I51f113546be66df00cb6aaeb4919db65ffb31040
Vincent COUVERT [Thu, 21 Jun 2012 12:17:48 +0000]
Wrong bug id fixed
Change-Id: Ifff4a9c578299e917e61e29b9ab51bead3cff57a
Vincent COUVERT [Thu, 21 Jun 2012 11:55:54 +0000]
Add search path for Mac OS X too, icons are needed for the dock when the Scilab Windows are iconified.
Change-Id: Ic760a49687e6887bdbeaa99e89ac6a88f5e43b49
Vincent COUVERT [Thu, 21 Jun 2012 10:07:04 +0000]
Fixes atomsSetConfig unit tests under Windows/Mac OS X plateforms.
To test: test_run("atoms");
Change-Id: I56c0ef69e6ce5e70d6e166d6f00f2502c8a9bbeb
Antoine ELIAS [Thu, 21 Jun 2012 12:00:09 +0000]
fix windows compilation for preferences (ieee and format )
Change-Id: I44aab93825d02cdcf656cccf88f4ce7355325466
Calixte DENIZET [Thu, 21 Jun 2012 11:57:11 +0000]
Prefs: remove useless file
Change-Id: Ia312ba34919c3280e90c8bc6beec14704321e20d
Vincent COUVERT [Thu, 21 Jun 2012 11:56:06 +0000]
Typo fixed.
Change-Id: I5e7b0cb6c4adbfb9f7125a429b573ea0549d33b8
Sylvestre Ledru [Thu, 21 Jun 2012 08:11:10 +0000]
Remove some java warnings
Change-Id: I8189432e995e3a129b134d9be8bef6bb9dda2d32
Antoine ELIAS [Thu, 21 Jun 2012 10:29:47 +0000]
change outout_stream_f optimization O2 -> O0 under windows to prevent trouble with shared struct cha1 (a = acosh crash)
Change-Id: Iab8f33dea3f59c792ff1d75671eceb8b545909e6
Sylvestre Ledru [Thu, 21 Jun 2012 10:12:41 +0000]
Also list the SOD format + new uicontrols in the changes
Change-Id: I8fdf6206d9211ffbe07072ba0e864a417ac06e4c
Sylvestre Ledru [Thu, 21 Jun 2012 11:08:29 +0000]
Fix the Windows build
Change-Id: Ia2b6c2e8c86a394307d8d22e50d687e7c5b68449
Calixte DENIZET [Wed, 20 Jun 2012 21:50:32 +0000]
Preferences: can choose a desktop layout
Change-Id: I2a89b5feb6b859c3d86a588825907784823fce6a
Sylvestre Ledru [Thu, 21 Jun 2012 11:00:44 +0000]
Detail what "Floating point exception" is (in preference)
Change-Id: Ie9d7c4fcb573fe8c544fb378c9642979d10cae75
Calixte DENIZET [Thu, 21 Jun 2012 10:53:22 +0000]
Prefs: workaround an openjdk7 bug with TitledBorder::getTitleFont()
http://bugs.sun.com/view_bug.do;?bug_id=7022041
Change-Id: I9f92eb0334f221045137e760610df0b485f34b1f
Calixte DENIZET [Thu, 21 Jun 2012 09:59:28 +0000]
Prefs: branch ieee and format
Change-Id: Ifb4d6614e1caf908f3515d7c63b0b7bad987d72b
Vincent COUVERT [Thu, 21 Jun 2012 09:50:37 +0000]
Test deactivated because fails under all platforms and freezes under Linux x64
Change-Id: I4c64a1be5fda24fb5a64c197da6974e7988e791c
Vincent COUVERT [Thu, 21 Jun 2012 08:10:43 +0000]
Fix drawlater/drawnow after codereview.scilab.org/#/c/7606/.
To test: test_run("graphics", "draw_later_now")
Change-Id: Ib284aa7ff13e93597cb573e5655ab650bdc26308
Bruno JOFRET [Thu, 21 Jun 2012 09:49:11 +0000]
* Bug #11279 fixed - Docking a figure cleared it and triggered an exception for each mouse mouvement.
Fix Docking System using Swing process.
Change-Id: I2d13a9a5262c94fb9fedcd9b6ae68bbb6a3c7cad
Vincent COUVERT [Thu, 21 Jun 2012 09:40:14 +0000]
Fix .dia.ref file for all platforms. Warning message no more appears.
To test: test_run("graphics","save_load")
Change-Id: Ieaa9feeb5303ff74f2a0c26a35d3ac4d0b4accad
Cedric Delamarre [Tue, 19 Jun 2012 08:07:24 +0000]
bug 10979 : set_data_bounds_property set firstplot to false.
Change-Id: I6a8577c2f833ef9f9035e9d783d2110872cb517c
Vincent COUVERT [Thu, 21 Jun 2012 07:29:38 +0000]
Update of the homepage for the 5.4.0-beta-1 release
Change-Id: I5f5a5fd5c2d9c93c8e0569297af342f8e31f092f
Bruno JOFRET [Thu, 21 Jun 2012 07:26:15 +0000]
Fix MacOSX jvm exception on dispose method.
Change-Id: I8bb11fb78161bd5afafd976f65eb9ff7c9406de3