1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400
|
2010-03-02 Marek Habersack <mhabersack@novell.com>
* Makefile.am: if DMCS was found use it to compile everything, or
otherwise the browser won't work (monodoc.dll is built with dmcs
on trunk)
2010-02-23 Michael Hutchinson <mhutchinson@novell.com>
* Makefile.am:
* theme-icons/*: Add Jakub's great new icons.
2010-02-11 Marek Habersack <mhabersack@novell.com>
* Makefile.am (geckorender_assemblies): added $(GNOME_SHARP_LIBS)
to fix the build
2009-10-13 Jo Shields <directhex@apebox.org>
* WebKitHtmlRender.cs: WebKit (1.1.15+) now raises NavigationRequested
events for initial loads from html, with about:blank uri. We only
want to deal with user-generated navigation events, so ignore these.
2009-09-29 Jonathan Pryor <jpryor@novell.com>
* browser.cs: The make-index, make-search-index, and merge-changes
options shouldn't display the GUI.
2009-08-13 Jonathan Pryor <jpryor@novell.com>
* browser.cs: Rename --docdir to --docrootdir. Add --docdir option
which will read .source files from the specified directory.
2009-08-13 Jonathan Pryor <jpryor@novell.com>
* browser.cs: Provide more accurate help for --engine.
2009-08-13 Jonathan Pryor <jpryor@novell.com>
* Makefile.am: Use Mono.Options for option parsing.
* browser.cs: Use Mono.Options for option parsing (yay consistency;
--engine=ENGINE will actually work). Add --docdir=DIR parameter to
load documentation from the specified directory.
2009-04-25 Jonathan Pryor <jpryor@novell.com>
* browser.cs: Browser.GetHtml() needs to cope with
RootTree.RenderUrl() returning a null match node, which can happen
because an EcmaUncompiledHelpSource always sets the match node to
null, but will return a non-null string. Fixes #505476.
2009-04-30 Marek Habersack <mhabersack@novell.com>
* browser.cs: NodePageVisit.Go () - it seems n.tree is almost
never a RootTree, so the cast to that type caused monodoc to throw
invalid cast exception and bail out. The fix is to use
browser.help_tree instead of n.tree.
2009-04-25 Jonathan Pryor <jpryor@novell.com>
* browser.cs: Enable use of the webdoc cache, if present. This
requires writing the HTML header (style & script information)
instead of letting monodoc.dll generate this, as the cache doesn't
contain <style/> and <script/>.
2009-01-29 Andreia Gaita <shana@jitted.com>
* MonoWebBrowserHtmlRender.cs: remove first load logic, there is no first
load anymore.
[Fixes #468694]
2008-11-13 Andreia Gaita <shana@jitted.com>
* MonoWebBrowserHtmlRender.cs: Add printing support
2008-11-13 Andreia Gaita <shana@jitted.com>
* MonoWebBrowserHtmlRender.cs: Update status bar when hovering over links
2008-11-12 Jonathan Pryor <jpryor@novell.com>
* browser.cs: Probe for MonoWebBrowser before Gecko, as (1) Gecko is
effectively unmaintained, (2) Gecko doesn't work on my machine, and
(3) MonoWebBrowser suffers from neither (1) nor (2) (and it doubles
as using our own dogfood, which is even better).
2008-11-12 Andreia Gaita <shana@jitted.com>
* browser.cs: Update usage
* MonoWebBrowserHtmlRender.cs: Fix click handling, first load, image loading
2008-10-28 Mike Kestner <mkestner@novell.com>
* docbrowser/Makefile.am: make admin.exe build conditional on GTKHTML.
2008-10-24 Jonathan Pryor <jpryor@novell.com>
* monodoc.in: Update messages to suggest the mdoc equivalents instead
of the older md* programs and/or remove functionality (e.g.
mdnormalize is no longer present, so don't call it). Update the
--help text, removing all deprecated arguments and improving the
description of the TOPIC string.
2008-07-30 Andreia Gaita <avidigal@novell.com>
* browser.cs: Fix loader not to dump an exception when it a backend assembly
doesn't exist. Change backend loading order.
2008-06-17 Andreia Gaita <avidigal@novell.com>
* browser.cs: Fix alternate engine loading so it tries every available
engine if the first one fails.
2008-06-15 Andreia Gaita <avidigal@novell.com>
* browser.cs: Uncomment exception message
* WebKitHtmlRender.cs: Add missing return value. Add handler to
allowing monodoc to update the status bar on mouse hover.
2008-06-14 Andreia Gaita <avidigal@novell.com>
* WebKitHtmlRender.cs, browser.cs: Add Anchor, Copy and Print support
2008-06-14 Andreia Gaita <avidigal@novell.com>
* WebKitHtmlRender.cs: Enable link click events
2008-06-14 Andreia Gaita <avidigal@novell.com>
* browser.cs: Fix loader to not load all the backends. Instead, try
loading the selected engine, then the fallback if the first fails,
then any other available engine if the fallback fails (and then
throw hands in the air and give up). Sprinkle try/catch blocks
liberally.
* Makefile.am: Enable webkit detection.
2008-05-27 Sebastien Pouliot <sebastien@ximian.com>
* Makefile.am: Fix build.
2008-05-02 Andreia Gaita <avidigal@novell.com>
* GeckoHtmlRender.cs: Fix image loading. Fix javascript: urls.
2008-03-27 Wade Berrier <wberrier@novell.com>
* Makefile.am: add monowebbrowser_sources to EXTRA_DIST so we
can build from a tarball.
2008-03-27 Andreia Gaita <avidigal@novell.com>
* MonoWebBrowserHtmlRender.cs: Take out debugging output. Fix url
getter.
2008-03-11 Andreia Gaita <avidigal@novell.com>
* GeckoHtmlRender.cs: Apply #341815 fix with null check.
In case something goes wrong with gtkhtml printing, catch it so
monodoc doesn't bail out needlessly.
* monodoc.in: Remove forced gtkhtml engine, as gecko is working again.
2008-03-10 Andreia Gaita <avidigal@novell.com>
* GeckoHtmlRender.cs: Set gecko's CompPath property to the launcher-detected
MOZILLA_HOME env var so that gecko uses the runtime path as the basis for
loading components (#341815)
2008-03-08 Alp Toker <alp@nuanti.com>
* monodoc.in: Remove obsolete --no-gecko in launcher script and document the
new --engine flag.
2008-03-08 Andreia Gaita <avidigal@novell.com>
* MonoWebBrowserHtmlRender.cs,
BrowserWidget.cs,
Makefile.am: Mono.Mozilla backend
* IHtmlRender.cs,
GeckoHtmlRender.cs,
GtkHtmlHtmlRender.cs,
WebKitHtmlRender.cs: Support for checking backend capabilities. Added
Initialize method to detect if the backend is functional on load.
* browser.cs: Take out --no-gecko option, and add instead a --engine option,
taking an engine name (equivalent to IHtmlRender.Name). Scan the filesystem
for assemblies that can be loaded as backends, load the requested engine or
fallback to GtkHtml. Remove UseGecko checks and use the backend Capabilities
flags instead.
2008-03-07 Alp Toker <alp@nuanti.com>
* WebKitHtmlRender.cs:
* Makefile.am:
* browser.cs: Initial WebKit backend for monodoc (not enabled yet).
2008-03-03 Wade Berrier <wberrier@novell.com>
* Makefile.am: Use gmcs to build, as monodoc is migrating to gmcs.
2008-01-16 Wade Berrier <wberrier@novell.com>
* monodoc.desktop.in: no extension on icon, remove
'Application' from Categories. (standards enforced by rpmlint)
2007-12-12 Jonathan Pryor <jonpryor@vt.edu>
* GtkHtmlHtmlRender.cs: Hack: "fix" the URLs retrieved from GTKHTML --
s/</</g, s/>/>/g -- so that the engine can properly lookup generic
types.
2007-11-23 Mario Sopena <mario.sopena@gmail.com>
* browser.cs:
- fix #324305. Now, when search results panel lost focus,
unselects the selected search result
- fix #322097. Solution based on the patch provided
by gabriel.burt@gmail.com
- Use CSS when gecko is used as renderer
2007-11-15 Wade Berrier <wberrier@novell.com>
* monodoc.in: force --no-gecko because xulrunner crashes on some distros
(See https://bugzilla.novell.com/show_bug.cgi?id=341815 )
2007-11-09 Wade Berrier <wberrier@novell.com>
* AssemblyInfo.cs.in: use TOOLS_VERSION because it is
in an mcs friendly format (for svn revisions)
2007-11-08 Mike Kestner <mkestner@novell.com>
* PrintManager.cs: extracted existing duplicated print
code from the two renderers and put it here, along with a
new Gtk.Print based implementation for gtkhtml-sharp 3.14
and beyond.
* GeckoHtmlRender.cs: refactor to use PrintManager.
* GtkHtmlHtmlRender.cs : ditto.
* Makefile.am : add some gtkhtml library install magic.
2007-10-01 Raja R Harinath <rharinath@novell.com>
* Makefile.am (browser_sources): Move AssemblyInfo.cs ...
(browser_built_sources): ... here.
2007-07-06 Wade Berrier <wberrier@novell.com>
* monodoc.in: search gre.d to aid in finding libgtkembedmoz
(Stolen from monodevelop wrapper)
2007-03-17 Kevin Reay <kevintreay@gmail.com>
* browser.cs: Fixed bug where ctrl-clicking link a would cause crash
due to AddTab() affecting the current CurrentTab.html.Url variable.
* browser.glade: Make browser more gnome HIG compliant; added
common HIG-related features.
* browser.cs: Fixed paste bug that would cause selected text to
not be overridden (in editing mode).
2007-03-15 Kevin Reay <kevintreay@gmail.com>
* browser.cs: Fix #80575. Add missing check for null CurrentTab.
* browser.glade: Added Contributing menu. Reordered some menu items.
* browser.cs: Added contributor statistics feature.
2006-12-19 Ankit Jain <jankit@novell.com>
* browser.cs (Main): Add a "--remote-mode" option and implement. With
this we accept urls on standard input. This is used by monodevelop.
Add a "--about" option.
(Browser): Make MainWindow public.
* monodoc.in: Add "--about" to "--help" output.
2006-11-19 Miguel de Icaza <miguel@novell.com>
* mondoc.in: Make this work with XulRunner, otherwise this crashes
with some crash inside AppendText inside Mozilla.
2006-08-09 Mike Kestner <mkestner@novell.com>
* browser.cs: fix a few event handler sigs.
* GeckoHtmlRender.cs : some print namespace clarification.
* GtkHtmlHtmlRender.cs : some print namespace clarification.
2006-06-01 Alp Toker <alp@atoker.com>
* browser.cs: Fix a crash when search field is empty
2006-05-04 Alp Toker <alp@atoker.com>
* monodoc.desktop.in: Fix #77012
- Gtk+ automatically supports StartupNotify, so enable it
- Make Comment imperative as suggested by spec
- Version is the version of the spec -- 1.0 seems acceptable
2006-02-21 Hector E. Gomez Morales <hectorgm@ciencias.unam.mx>
* Makefile.am:
- Removed monodoc.in and addead monodoc to DISTCLEANFILES.
2005-11-20 Rafael Ferreira <raf@ophion.org>
* browser.cs:
- Added try/catch just in case the provider
throws an exception
* BookmarkManager.cs:
- Removed try/catch logic since it will be
handled by the browser
2005-11-05 Rafael Ferreira <raf@ophion.org>
* browser.cs:
- Changes to make the browser a public object,
removed old bookmark logic
* BookmarkManager.cs:
- Manages all of the bookmark logic (new)
* browser.glade:
- removed edit_bookmark, added manage_bookmarks_dialog
and add_bookmark_dialog
* Makefile.am:
- added BookmarkManager.cs
2005-10-27 Ben Maurer <bmaurer@ximian.com>
* Makefile.am (monodocdir): Don't use -pkg, but rely on the stuff
from configure.in.
* monodoc.in: Set LD_LIBRARY_PATH to include gecko, borrowed from
Monodevelop.
* GeckoHtmlRender.cs: Use an error dialog.
This removes the dependency on gtkhtml.
* Makefile.am: GtkHtml is put in its own assembly
* GtkHtmlHtmlRender.cs: Don't use a private api, so that we can
put this in another assembly
* browser.cs: gtkhtml rendering is now loaded dynamically
* GeckoHtmlRender.cs: Make printing optional
2005-10-21 Mario Sopena <mario.sopena@gmail.com>
* browser.cs: Workaround to fix the stealing focus bug #76346
2005-10-10 Mario Sopena <mario.sopena@gmail.com>
* browser.cs: when saving edit changes, take into account that uncompiled
sources are handled differently
2005-09-16 Mario Sopena <mario.sopena@gmail.com>
* GeckoHtmlRender.cs: add a woraround for the bug 245960 of gtkmozembed
* browser.cs: search panels are created programatically. A new panel
appears when the index are not found that let build new index
* ProgressPanel.cs: added. New panel widget that allow perform a
programable task (used for building the index)
* browser.glade: remove the search panels
* Makefile.am: add the new ProgressPanel.cs
2005-09-12 Miguel de Icaza <miguel@novell.com>
* browser.cs (EditedTextChanged): Only update the preview every
second, otherwise its too slow to type with Mozilla.
2005-09-08 Rafael Ferreira <raf@ophion.org>, Mario Sopena <mario.sopena@gmail.com>
Landed monodoc's simple printing subsystem
* IHtmlRender.cs: new Print method
* GeckoHtmlRender.cs: implemented new Print method with GtkHtml widget
* GtkHtmlHtmlRender.cs: implemented Print method
* browser.cs:
- add printing support
- activate/deactivate print menu item when in view/edit mode
* browser.glade:
- Added print menu option
- Update Contributors list
* Makefile.am:
- Fixed GeckoHtmlRender.dl.mdb clean up
2005-09-05 Mario Sopena Novales <mario.sopena@gmail.com>
Implement basic searching capabilities
* browser.cs:
- Added a new "--make-search-index" parameter
- Added a TreeView to show the search results
- Added a function to Highlight the search result
* browser.glade:
- Repair index and search icons
- Added a TreeView to show the search results
* monodoc.in:
- Added a new "--make-search-index" parameter
2005-08-22 Mario Sopena Novales <mario.sopena@gmail.com>
* browser.cs:
- Update the treeview everytime we change the tab
- Added a new CurrentNode property to Tabs
- update the save process to include the new NodeUrl property
- dont set the browser mode to viewer every time a row is activated
- added a new button Restore to delete contributions
* GeckoHtmlRender.cs: cleaned
2005-08-17 Mario Sopena Novales <mario.sopena@gmail.com>
* browser.cs: Added Menu Items for changing the font size when using
gecko. Also added a Reload function.
* history.cs: Added a Count property
2005-08-09 Mario Sopena Novales <mario.sopena@gmail.com>
* browser.cs:
- Allow render with CSS
- Detect fonts for CSS rendering
2005-07-30 Mario Sopena Novales <mario.sopena@gmail.com>
* Makefile.am: build gecko support in a separate dll: GeckoHtmlRender.dll
* monodoc.in: Change "--gecko" parameter to "--no-gecko"
* HtmlRender.cs: splitted in 3 files (deleted):
* IHtmlRender.cs: interface
* GtkHtmlHtmlRender.cs: GtkHtml based renderer
* GeckoHtmlRender.cs: Gecko-sharp based renderer
2005-07-07 Mario Sopena Novales <mario.sopena@gmail.com>
Move the rendering logic to an interface IHtmlRender and write
two implementatios of it, one uses gtkhtml and the other gecko.
* configure.in: Add gecko-sharp dependency
* docbrowser/monodoc.in: Add "--gecko" parameter
* docbrowser/Makefile.am: Add HtmlRender to sources and gecko libs references for compiling
* docbrowser/HtmlRender.cs: New file with the interface IHtmlRender and the two
implementations: GeckoHtmlRender, GtkHtmlHtmlRender
* docbrowser/browser.cs: Use the new HtmlRender for rendering
2005-05-31 Raja R Harinath <rharinath@novell.com>
* monodoc.in: Emit warnings to stderr. Fix fallbacks.
(--updater): Since it has no fallback, exit with failure.
(monodocdir): Set to match Makefile.am.
2005-05-25 Ben Maurer <bmaurer@ximian.com>
* monodoc.desktop.in: Desktop file
* monodoc.in: execution script.
2005-05-21 Joshua Tauberer <tauberer@for.net>
When loading EcmaUncompiledHelpSources, don't
created the help source in browser.cs because it
needs to be created and added to help_sources at the
same time, because of the static id variable being
incremented in the HelpSource constructor. The
DLL is affected too.
* browser.cs: Send the paths to uncompiled
help, rather than the help sources.
2005-05-08 Ben Maurer <bmaurer@ximian.com>
* Makefile.am: use $(RUNTIME) rather than `mono'
2005-04-27 Mike Kestner <mkestner@novell.com>
* Makefile.am : build admin.exe.
* admin.* : moved here from monodoc/browser.
2005-04-23 Mike Kestner <mkestner@novell.com>
* Makefile.am : distcheck fixes.
2005-04-23 Mike Kestner <mkestner@novell.com>
* Makefile.am : removed the browser.exe targets. Use /package monodoc.
* browser.glade : moved to mono-tools.
* browser.cs : moved to mono-tools.
* list.cs : moved to mono-tools.
* elabel.cs : moved to mono-tools.
* history.cs : moved to mono-tools.
2005-04-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* monodoc.xml: removed the monkeyguide.
2005-02-03 Atsushi Enomoto <atsushi@ximian.com>
* xhtml-provider.cs : added more URI scheme. Without them monkeyguide
fails to build.
* ecma-provider.cs : MS.NET will complain about access to nonpublic
class on XSL extension object (which mono currently does
not check. see bug #70841). So make the class public for now.
2005-01-20 Mario Sopena novales <masono1@teleco.upv.es>
* browser/browser.cs: Add support for Tabs:
* add new Tab class that manages everything inside a Tab
* move the necesary code from Browser class to Tab class
* add two new methods in Browser: AddTab and ChangeTab
* handle ctrl-pageup and pagedown to change tab
* handle ctrl-click for new tabs
* add CurrentTab to let reference the current tab from within
Browser class
* browser/browser.glade: Add support for Tabs:
* remove all the code to generate what goes inside the tab
* added a new menu entry: New Tab
* browser/history.cs: added a new property Active (which let only the
history object of the active tab to react to the button pressed
event).
2005-01-24 Chris Toshok <toshok@ximian.com>
* monodoc.xml: add Mono Development Tools node, with a spot under
it to hang debugger info.
2005-01-24 Joshua Tauberer <tauberer@for.net>
* mono-ecma.xsl: Indent the namespace summaries with blockquote.
Show namespace-relative type names in the namespace remarks
sections.
* ecma-provider.cs: Since there are namespace Xml files repeated
in the different assembly directories, Monodoc would use the
last one, whereas only one would have the real namespace
summary/remarks. Now it ignores an Xml file if it contains
an empty or "To be added." namespace summary.
2005-01-22 Joshua Tauberer <tauberer@for.net>
* ecma-provider.cs: For editing, generating XPath locations
of the edited node was different for properties than methods/
constructors, but it should have been the same since properties
can have parameters too. It made some indexers uneditable.
(I meant to commit this at least a month ago.)
* browser.cs: Renamed the local XML docs editing feature to
simply '--edit'
* mono-ecma.xsl: Cosmetic change to [Edit] links.
2004-12-07 Atsushi Enomoto <atsushi@ximian.com>
* cs2ecma.cs : added.
It converts C# xml documentation file to ECMA format.
* Makefile.am : added cs2ecma.cs.
2004-12-04 Joshua Tauberer <tauberer@for.net>
* ecmaspec-provider.cs: For sections that have subsections,
display links to the subsections in the HTML. This also
makes a simple table of contents for the root page.
2004-12-01 Raja R Harinath <rharinath@novell.com>
* Makefile.am (monodoc_gtk_data): Rename from monodoc_gtk_DATA to
prevent an automake error.
2004-11-30 Miguel de Icaza <miguel@ximian.com>
* xhtml-provider.cs (GetAbsoluteLink): Avoid munging urls that
start with our "magic" prefixes, keep them as they are.
2004-11-30 Atsushi Enomoto <atsushi@ximian.com>
* configure.in,
browser/monodoc.dll.config.in,
browser/Makefile.am : Windows build is now available.
- Skip browser.exe and dependency check on Windows.
- Fixed gacutil installation location.
- Rewrite document location in config (it just contains '.')
2004-11-04 Jonathan Pryor <jonpryor@vt.edu>
* colorizer.cs: If a language is unrecognized, escape the XML so that it
will be properly rendered within monodoc;
- Fix ColorizeXml. Due to an ordering dependency, the regex to colorize
double-quoted strings was also replacing the attributes used in a prior
substitution (to colorize XML tags). This garbled the XML, making it
unreadable. Handling double-quoted strings earlier fixes this.
- Cleanup braces to follow code conventions.
2004-11-01 Richard Torkar <richard.torkar@htu.se>
* index.cs: Make sure we catch the System.UnauthorizedAccessException
that is thrown when the user has no write permissions to store the
index file when using "monodoc --make-index".
2004-09-06 Joshua Tauberer <tauberer@for.net>
Editing of ECMA-style documentation directly off of the
"uncompiled" source XML documents. Invoked with the
"--local-edit path-to-doc-sources" command line argument, e.g.:
--local-edit ../class/corlib/en
Some improvements to the way type names and member signatures
are displayed in links in the ECMA pages.
Some fixes to the way URLs are parsed by the ECMA provider.
2004-08-25 Peter Williams <peter@newton.cx>
* provider.cs: Allow a .source file to add nodes to the tree
with <node> elements. They will automatically be placed below
the "Various" node. Something of a hack, but needed for more
complicated third-party docs.
2004-07-31 Peter Williams <peter@newton.cx>
* xhtml-provider.cs: Keep a list of the temporary files we
create, and delete them after we're done creating the zip file.
2004-07-31 Peter Williams <peter@newton.cx>
* browser.cs (OnCopyActivate): If in editing mode, copy from
the text editor's selection, not the HTML view.
2004-07-28 Peter Williams <peter@newton.cx>
* browser.cs: Add support for pasting from the clipboard.
* browser.glade: Add a Paste menu item.
2004-07-26 Ben Maurer <bmaurer@ximian.com>
* mono-ecma.xsl: rendering editing urls is fairly slow, so limit
it in large enums.
2004-07-16 Peter Williams <peter@newton.cx>
* xhtml-provider.cs: Take a tocFile parameter telling us which file to load.
(XhtmlProvider): Pass the tocFile parameter.
2004-07-19 Miguel de Icaza <miguel@ximian.com>
* ecma-provider.cs: Index enumeration values and delegates as
well. The table of context index on my system is now half the
size of the actual data. We need a mechanism to compress data.
2004-07-15 Peter Williams <peter@newton.cx>
* ecmaspec-html.xsl: There are nested lists in the ECMA spec: see ecma334/10.8.xml.
Support them by iterating on <list>s as well as <list_item>s.
2004-06-30 Ben Maurer <bmaurer@ximian.com>
* mono-ecma.xsl: you can put an element <since version="blah" />
below the Docs element of a type or member and it will give
a notice for what versions it is available in.
2004-06-25 Mike Kestner <mkestner@ximian.com>
* monodoc.xml : s/gtkmozembed/gecko
2004-06-23 Miguel de Icaza <miguel@ximian.com>
* web/monodoc.ashx: Make the code cope with nulls in content by
rendering some help instead of crashing; Throw exceptions on failure.
2004-06-23 Ben Maurer <bmaurer@ximian.com>
* ecma-provider.cs: use fully qualified type names.
2004-06-22 Fernando Herrera <fherrera@onirica.com>
* browser/browser.cs: Expand/Collapse tree on double click.
2004-06-21 Ben Maurer <bmaurer@ximian.com>
* admin.cs: give a warning if the change is from an old version
* browser.cs: Add hook to check for upgrade
* editing.cs: Add version to each Change. Do not display a change
if it is from a previous version. Close files when done.
* provider.cs: add monodoc version # field
* settings.cs (CheckUpgrade): New func to check if th user has
upgraded monodoc. LastSeenVersion is a new settign for the last
version of monodoc to launch (so we can check for fist launch
of a new version). Close files.
2004-06-19 John Luke <jluke@cfl.rr.com>
* browser.glade: stockify the Close and Save buttons while editing
2004-06-17 Ben Maurer <bmaurer@ximian.com>
* error-provider.cs: Use XmlWriter correctly. Fixes bug #60307.
2004-06-12 Radek Polak <psonek2@seznam.cz>
* editing.cs: Creating backup file of your changes.
2004-06-04 Miguel de Icaza <miguel@ximian.com>
* editing.cs: Use the `using' statement to properly close the
file.
2004-06-03 Raja R Harinath <rharinath@novell.com>
* list.cs (ButtonPressEventHandler): Use Settings.DoubleClickTime.
See bug #50820.
2004-06-03 Raja R Harinath <rharinath@novell.com>
* Makefile.am (monodoc.dll.config): Create here instead of from
config.status.
(install-data-local, uninstall-data-local): Simplify.
2004-05-13 Joshua Tauberer <tauberer@for.net>
* Better sort order for types in namespace type list
2004-05-11 Joshua Tauberer <tauberer@for.net>
* ecma-provider.cs: Recognize MulticastDelegate as also the base type of delegates.
2004-05-10 Joshua Tauberer <tauberer@for.net>
* browser.cs/glade: New browser menu item View-->Show Inherited Members for the member listing page.
* ecma-provider.cs:
Nested types are shown in the type tree as OuterType+InnerType, and lookups were fixed to handle that.
Namespace nodes now have all of the types within them sorted.
At run time, the type hierarchy information is inserted into the type XML data based on
the XML content, so the type hierarchy can be shown without using reflection.
At the same time, inherited members are dynamically copied into the XML data, if the setting is on.
* mono-ecma.xsl: The type hierarchy, inherited members support,
* settings.cs: A setting for showing inherited members in the member listing.
2004-05-03 Todd Berman <tberman@sevenl.net>
* Makefile.am: modifying gacutil to add gtk-sharp package.
* provider.cs: oops, removing C.WL
2004-05-01 Todd Berman <tberman@sevenl.net>
* AssemblyInfo.cs.in: New file, for signing monodoc.dll.
* monodoc.dll.config: renamed from monodoc.config.
* Makefile.am: install using the gac.
* provider.cs: reflect the namechange.
2004-04-25 Joshua Tauberer <tauberer@for.net>
* Moved operators out of the Methods listing into their own group,
and list them with nice names and proper C# declarations.
* Fixed some stylesheet spacing issues.
2004-03-25 Joshua Tauberer <tauberer@for.net>
* ecma-provider.cs: Fixed member resolution problems,
removed really old code
2004-03-25 Miguel de Icaza <miguel@ximian.com>
* browser.cs: Use Markup.
2004-03-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* elabel.cs: make it compile with CVS gtk#.
2004-02-10 Todd Berman <tberman@sevenl.net>
* browser.cs:
* list.cs:
* elabel.cs: Update to cvs gtk-sharp.
2004-01-22 Lluis Sanchez Gual <lluis@ximian.com>
* browser.cs: In ConfigWizard constructor, check for the MONODOCTESTING
env var, like in Upload. Also Check for version 1, not 0.
* server.cs: In Submit, on error do not close and null the connection,
the finally block does it.
2004-01-18 John Luke <jluke@cfl.rr.com>
* error-provider.cs: draw the root heading like the other providers
2004-01-09 Ben Maurer <bmaurer@users.sourceforge.net>
* ecma-provider.cs, editing.cs, provider.cs: Add sane
urls. The ones we had before were *sickening*.
2003-12-22 John Luke <jluke@cfl.rr.com>
* browser.glade: fix typo in "Add bokmark"
2003-12-15 Duncan Mak <duncan@ximian.com>
* browser.cs: Reformatted the code to make coding style more
consistent.
(BookmarkEdit): Renamed for Bookmark_edit to be consistent with
naming conventions.
(BookLink): Rename the public fields text and url to
Text and Url to confirm with the .NET naming conventions.
(BookmarkEdit.AppendItem): Renamed from addList to be more
descriptive.
(BookmarkEdit.Load): Renamed from loadList.
2003-12-15 Duncan Mak <duncan@ximian.com>
* browser.cs:
* browser.glade: Commit bookmarks support code from Borja S�nchez
Zamorano <borsanza@terra.es>.
2003-12-04 John Luke <jluke@cfl.rr.com>
* mono-ecma.xsl: insert <br /> when remarks is empty to prevent
extra indentation, fixes bug #46692
2003-12-02 Peter Williams <peter@newton.cx>
* browser.glade: Add some quick keybindings.
2003-11-16 Ben Maurer <bmaurer@users.sourceforge.net>
* mono-ecma.xsl: make enum values editable
2003-10-22 Duncan Mak <duncan@ximian.com>
* browser.glade: Don't show the tabs in the submission dialog.
2003-10-14 John Luke <jluke@cfl.rr.com>
* ecma-provider.cs: fix http://bugzilla.ximian.com/show_bug.cgi?id=47729
2003-10-14 Richard Torkar <richard.torkar@htu.se>
* browser.cs: KeyPressEventHandler and keypress_event_cb
added for taking care of Alt_L+Right|Left for navigation.
* history.cs: Changed access modifiers for BackClicked and
ForwardClicked to "internal" thus reusing these methods.
2003-10-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* provider.cs: the ToUpper () fix by Fawad Halim <fawad@fawad.net>.
* browser.cs: use threadnotify when we're not in the main thread, fixed
condition in RegisterDone.
* server.cs: a bunch of small fixes.
2003-10-11 Miguel de Icaza <miguel@ximian.com>
* browser.cs: Added new class to handle the account configuration
wizard for the edit changes.
* settings.cs: Modify setup slightly, use separate class to
load/save than class for settings.
Warning: to run this you need my soap client patch.
2003-10-08 Miguel de Icaza <miguel@ximian.com>
* settings.cs: Split settings class into Settings and
SettingsHandler and make fields public.
2003-10-01 John Luke <jluke@cfl.rr.com>
* mono-ecma.xsl: use cellpadding in example, and top table
* ecmaspec-html.xsl: use cellpadding, render examples like ecma-docs
* provider.cs: make /root: look more like other pages (table w/ bgcolor)
* error-provider.cs: make /root: node look like other headings
* ecma-spec-provider.cs: make /root: render and look like other headings
* xhtml-provider.cs: make /root: node look like other headings
2003-09-23 Miguel de Icaza <miguel@ximian.com>
* list.cs: Replace massive ellipsises array with hashtable, which
loads data on demand, rather than the 152k array (in my case).
2003-09-29 Ben Maurer <bmaurer@users.sourceforge.net>
* Settings.cs: use freedesktop.org standard here untill we get
this in sys.env
2003-09-28 Ben Maurer <bmaurer@users.sourceforge.net>
* settings.cs, Makefile.am, browser.cs, ecma-provider.cs: Editing
on/off via gui. (most of the credit goes to jluke).
* browser.cs, editing.cs: merge changes to multiple dirs.
2003-09-12 John Luke <jluke@cfl.rr.com>
* browser.cs: add IsEditable property, OnEditingActivated and
OnCollapseActivated events
* browser.glade: add Collapse All, Settings, Editing menu items
2003-09-08 Alp Toker <alp@atoker.com>
* Makefile.am: csc fixes
* list.cs: eliminate redraw artifacts
* elabel.cs: csc fix: use double-quote for strings
2003-09-04 Ben Maurer <bmaurer@users.sourceforge.net>
* browser.cs, ecma-provider.cs, editing.cs, provider.cs: Add real
support for editing. We still need a UI though...
2003-09-03 Alp Toker <alp@atoker.com>
* list.cs: Complete keynav (pgup, pgdown, home, end) and implement
ItemActivated event for enter keystrokes, double-clicks on a single
item
* browser.cs: Activation, not selection now triggers page loads during
ordinary and synoptic keynav. Updated variable names to reflect this.
* list.cs: Initial stab at accessibility with Atk, move the
ellipsizing code into...
* elabel.cs: A a new ellipsizing label widget. Ellipsizing
optimisation -- apply a guess metric based on the font's en width
* browser.cs: Use elabel for title_label
* Makefile.am: add elabel.cs, remove obsolete System.Web reference
2003-09-01 Miguel de Icaza <miguel@ximian.com>
* browser.cs (ShowNode): Update to 2.2 API, and also fix the bug
where items were not getting selected.
2003-08-31 John Luke <jluke@cfl.rr.com>
* ecmaspec-provider.cs: return the match_node
* browser.glade: update about info (new providers)
2003-09-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* provider.cs:
* web/monodoc.ashx: added Last-Modified and IF-Modified-Since support.
2003-08-31 Alp Toker <alp@atoker.com>
* list.cs: Implemented an ellipsis cache and eliminated unnecessary
page reloads
* list.cs: Interactive list item selection by dragging
2003-08-30 Ben Maurer <bmaurer@users.sourceforge.net>
* ecma-provider.cs: remove bug that method grouping introduced
when going to url of overloaded methods where you specified the
params. Also, #if'd out the section where we do a recursive search
of the tree. I cant seem to tell where this is used, and it is
*very* buggy right now, mostly because it has suffered bitrot.
2003-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* provider.cs: don't create the zipentry twice. If you've used this
version to build yor docs, rebuild them.
2003-08-28 Ben Maurer <bmaurer@users.sourceforge.net>
* Makefile.am, TODO, assembler.cs, error-provider.cs, monodoc.xml,
provider.cs: Added new error provider.
2003-08-28 Alp Toker <alp@atoker.com>
* list.cs: Make BigList focusable and give it its own keynav ability
* list.cs: Update colour according to focus state
* list.cs: Support dynamic style changes
2003-08-27 Alp Toker <alp@atoker.com>
* list.cs, browser.cs: Synoptic keynav for the index view
* list.cs: Bounds checking fixes
* list.cs: Ellipsizing for long list items
* list.cs: Fix adjustment bounds following changes to the list
2003-08-25 Alp Toker <alp@atoker.com>
* browser.cs: Change bar colour dynamically to match style, remove URL
display
2003-08-25 Alp Toker <alp@atoker.com>
* browser.cs: New compact toolbar with information about present page
About box tweaks and modality, Alt-I focuses index search entry, error
messages reworded
* browser.glade: UI tweaks to eliminate wasted screen real-estate, tab
icons, lookup dialog fixes
* list.cs: Set background to base colour
* Makefile.am: Add reference to System.Web (for the html escape method)
2003-08-25 Ben Maurer <bmaurer@users.sourceforge.net>
* REMOVED website-handler.cs
All this functionality has been moved to the web folder already.
2003-08-25 Ben Maurer <bmaurer@users.sourceforge.net>
* mono-ecma.xsl: fix issue that adds extra spaces and italics in
monodoc gui.
2003-08-24 Ben Maurer <bmaurer@users.sourceforge.net>
* mono-ecma.xsl: dont display the inheritance for strucs, enums,
delegates, and objects that simply inherit from System.Object.
2003-08-24 Ben Maurer <bmaurer@users.sourceforge.net>
* ecma-provider.cs: Group overloads together when the tree is
built. Requires a vew changes to the internal ecma: url style.
* mono-ecma.xml: Render overload pages.
* TODO: make list shorter ;-).
2003-08-24 John Luke <jluke@cfl.rr.com>
* Makefile.am: build mod.exe
* mod.cs: add
2003-08-24 Ben Maurer <bmaurer@users.sourceforge.net>
* browser.cs (MatchModel.GetValue) For ECMA docs, give full type
information to disambiguate index.
2003-08-07 Ben Maurer <bmaurer@users.sourceforge.net>
* ecma-provider.cs: Use XPathDocument, not XmlDocument when doing
transforms. Improves speed of managed xslt. Include the <summary>
and <remarks> elements in the generated namespace summaries, so
that we do not have to merge the documents at runtime.
2003-08-06 Ben Maurer <bmaurer@users.sourceforge.net>
* provider.cs: set matched node when rendering root:, and root:/xxx
* browser.cs: root: is the homepage.
2003-08-05 John Luke <jluke@cfl.rr.com>
* Makefile.am: add assemblies to CLEANFILES, build normalize.exe
* *: rename validate.cs to normalize.cs
2003-07-30 Ben Maurer <bmaurer@users.sourceforge.net>
* Makefile.am: monodoc.dll depends on mono-ecma.xsl, browser.exe
does not.
2003-07-24 Ben Maurer <bmaurer@users.sourceforge.net>
* provider.cs: Dont crash when the helpsource is on the tree but
does not exist.
* mono-ecma.xsl: Render namespace summary
* ecma-provider.cs: Compile an mastersummary.xml file that holds
a summary for all the namespaces.
2003-07-14 Ben Maurer <bmaurer@users.sourceforge.net>
* browser.cs: Added support for visiting nodes from the root tree.
ie, the root: urls.
* ecma-provider.cs: Render the root: url with a list of namespaces
* provider.cs: Send the root:/xxx to the help sources. Handle
root:
* xhtml-provider.cs: handle root:. Returns the inner html of <body> like
other providers
* monohb-provider.cs: Fix typo that makes header purple in moz.
2003-07-23 Miguel de Icaza <miguel@ximian.com>
* browser.cs (RowActivated): Bug fix: Use LinkPageVisit instead of
NodePageVisit here. xo
(Browser): do not call into the index browser if the index failed
to load.
(IndexBrowser.MakeIndexBrowser): If there is no index, visually
tell the user what to do.
2003-07-22 Duncan Mak <duncan@ximian.com>
* validate.cs: New file to run modified XML file(s) thru the
System.Xml plumbing to normalize all changes. This should help
minimize the amount of whitespace related changes we send to the
mailing list.
2003-07-16 Miguel de Icaza <miguel@ximian.com>
* ecma-provider.cs (PopulateIndex): Add more interesting things to
the toc.
* list.cs (SizeAllocatedHandler): Track size, use the computed
rows size; Also set the adjustment so its nicer to use
* browser.cs (Render): Call End method
* ecma-provider.cs: Replace wrong name: Struct to Structure.
2003-07-15 Duncan Mak <duncan@ximian.com>
* browser.cs (Render): BeginContent is now just Begin.
2003-07-15 Miguel de Icaza <miguel@ximian.com>
* list.cs (ScrollHandler): Add scrolling wheel support.
(ButtonHandler): Add the line number.
* ecma-provider.cs: Add methods, properties, events and fields to
the index list.
2003-07-10 Ben Maurer <bmaurer@users.sourceforge.net>
* mono-ecma.xsl: Don't generate the excess monodoc namespaces.
2003-07-10 Miguel de Icaza <miguel@ximian.com>
* list.cs: Add suppot for selecting a particular line visually.
Needs some loving to get a better "feel" to it.
* mono-ecma.xsl: Add small tiny, tiny experimental feature.
* index.cs: Change sorting criteria (explicitly pass true to
Strng.Compare)
* ecma-provider.cs: Add a small extension method to test doing
in-line editing.
* browser.cs: Refactor code, move all the index tab code into
IndexBrowser, and add incremental search feature.
2003-07-08 Miguel de Icaza <miguel@ximian.com>
* browser.cs (RowActivated): Small adjustment: if the provider
does not return a matching node, use the node from the clicked
event.
2003-07-02 Martin Willemoes Hansen <mwh@sysrq.dk>
* monodoc.xml: add DiaCanvas
2003-07-01 John Luke <jluke@cfl.rr.com>
* monodoc.xml: add GtkMozEmbed
2003-06-26 Ben Maurer <bmaurer@users.sourceforge.net>
* xhtml-provider.cs
(GetTextFromUrl): Now we generate a stack
trace when we get an exception. Removed encoding
stuff, as it was causing bugs with linux.html
(.ctor) removed enc var, as we do not use it
any more due to the first change.
2003-06-25 Ben Maurer <bmaurer@users.sourceforge.net>
* xhtml-provider.cs (IncludeAttribLinks): Fixed case where
referenced attribute is not present. Now we do not get a
nullref. This was showing up in anchor <a> tags
2003-06-25 Duncan Mak <duncan@ximian.com>
* Makefile.am: Add 'monodoc.png' to EXTRA_DIST and also as
dependency to the browser.exe rule.
* browser.cs: Set the window icon of MainWindow to 'monodoc.png'.
2003-06-23 John Luke <jluke@cfl.rr.com>
* browser.cs: switch to new treeview style
2003-06-23 Miguel de Icaza <miguel@ximian.com>
* index.cs: Load IndexEntries from disk.
* browser.cs: Show a new list if there are multiple matches for
the same term.
* list.cs: Add support for highlighting the selection, emitting an
event when an item is selected;
* monodoc.xml: New layout.
2003-06-14 Miguel de Icaza <miguel@ximian.com>
* provider.cs (LoadTree): Provide better description error.
* monodoc.xml: Add Handbook to the root map.
2003-06-05 Miguel de Icaza <miguel@ximian.com>
* assembler.cs: Add sorting for the ecma provider.
2003-06-02 Miguel de Icaza <miguel@ximian.com>
* ecma-provider.cs (PopulateIndex): Add full type names.
* index.cs (SaveIndexEntries): Sort the keys before saving them.
2003-06-01 Lee Mallabone <gnome@fonicmonkey.net>
* xhtml-provider.cs, monohb-provider.cs: New files for dealing with XHTML.
* browser.cs: Handle jumping to anchors in the same file.
* browser.cs, assembler.cs: Hook in the XHTML provider.
2003-05-27 Miguel de Icaza <miguel@ximian.com>
* index.cs: Use factory method to load the file; Abort
gracefully.
2003-05-26 Joshua Tauberer <tauberer@for.net>
* provider.cs: Dots in method signature, the dot in .ctor confused method lookups
P: E: and C: member lookups are handled
* mono-ecma.xsl: New stylesheet is in.
2003-05-18 Rachel Hestilow <rachel@nullenvoid.com>
* mono-ecma.xsl: Add support for rendering bulleted lists.
2003-05-11 Ben Maurer <bmaurer@users.sourceforge.net>
* ecma-provider.cs (Htmlize)
Removed line that saved stuff to /tmp/blah.xml. Increases
speed and will prepare for yoros's ASP.NET version which
will need to handle multiple requests at one time.
2003-04-17 Miguel de Icaza <miguel@ximian.com>
* simple-provider.cs: Add new sample reference provider.
* assembler.cs: Hook up simple provider.
* provider.cs: Remove IPopulate interface, add all the code to
Provider; Make the HelpSource instantiatable. Hook up Simple
Provider.
* monodoc.xml: Add new "Various" node for testing.
2003-04-15 Miguel de Icaza <miguel@ximian.com>
* ecma-provider.cs (CleanSignature): Also add `protected' to the list.
Factor some code out for rendering. Need to
factor out Summary rendering next.
* history.cs (BackClicked): Set back.sensitive accordingly; Fix
the handling of history as well.
* browser.cs (RowActivated): Use a different node to track the
match state, because it might be null.
2003-04-14 Miguel de Icaza <miguel@ximian.com>
* ecma-provider.cs: For fields, use the field name rather than the
signature.
* browser.cs (ShowNode, OpenTree): Add support for opening the
tree and selecting a node.
* provider.cs, ecma-provider.cs, browser.cs: Keep track of the
node rendered, so we can automatically select it on the tree
representation.
2003-04-12 Miguel de Icaza <miguel@ximian.com>
* mono-ecma.xsl, html-helper.cs: Add a border for our embeded
tables to make the output nicer.
Update TODO.
2003-04-03 Miguel de Icaza <miguel@ximian.com>
* provider.cs (GetHelpStream): use more efficient mechanism.
(RootTree): Load help layout file. Load providers.
2003-04-01 Miguel de Icaza <miguel@ximian.com>
* history.cs: History manager. Uses a PageVisit class to
implement page visits, will probably gone later when we track
Nodes.
2003-03-31 Lee Mallabone <mono-docs@fonicmonkey.net>
* html-helper.cs: Lighten the method signature color: consistent
with Gtk+ API docs now.
* mono-ecma.xsl: Put a very light blue background on examples.
2003-03-31 Miguel de Icaza <miguel@ximian.com>
* browser.cs: Show the url to be rendered on a status bar.
* browser.glade: Add forward/back buttons. They are not yet
hooked up.
* provider.cs: Track the help source, so we can encode this in a
url later to fetch information.
* ecma-provider.cs: Big reorganization: move helper routines to
EcmaDoc. Move all the rendering to EcmaHelpSource and keep the
compilation code in EcmaProvider.
Render a `source-id:' on the summary pages where needed so we can
find the proper HelpSource from it later.
2003-03-25 Miguel de Icaza <miguel@ximian.com>
* ecma-provider.cs: Small fix to add the proper prefixes.
2003-03-10 Miguel de Icaza <miguel@ximian.com>
* ecma-provider.cs (CloseTree): Put all the children inside a
top-level container.
(RenderNamespaceLookup): use /elements as the root
2003-03-06 Miguel de Icaza <miguel@ximian.com>
* ecma-provider.cs: Small one line fixer, a face saver in the
presence of multiple sources.
2003-03-05 Miguel de Icaza <miguel@ximian.com>
* ecma-provider.cs: Encode namespace summaries, compute namespace
members.
* provider.cs: A couple new utility methods.
2003-02-19 Miguel de Icaza <miguel@ximian.com>
* ecma-provider.cs: Sort members.
* mono-ecma.xsl: Updated stylesheet from Peter Williams to render
a few more tags.
2003-02-11 Duncan Mak <duncan@ximian.com>
* ecma-provider.cs (RenderProperty): Make it look for the same
node as RenderMethod.
2003-01-29 Duncan Mak <duncan@ximian.com>
* ecma-provider.cs (PopulateClass):
(GetTypeKind): Special case for delegates.
* makefile (alltree): Split them up so that I won't run out of
handles all the time.
2003-01-28 Duncan Mak <duncan@ximian.com>
* ecma-provider.cs (GetTypeKind): It should say 'Structure'
instead of just 'Struct'.
* all.xml:
* makefile: New targets for generating docs for gtk-sharp.
2003-01-27 Miguel de Icaza <miguel@ximian.com>
* ecma-provider.cs, provider.cs: Provide support to compress the
source files and render from a compressed source. Can be
optimized, currently we have no cache for loaded documents.
Note: This will not work with the Gtk# docs right now, as they are
too large, and that exposes a finalization leak in the runtime.
2003-01-19 Duncan Mak <duncan@ximian.com>
* ecma-provider.cs (RenderEvent): Implemented.
2003-01-16 Miguel de Icaza <miguel@ximian.com>
* ecma-provider.cs: Render summaries for everything.
2003-01-16 Rodrigo Moya <rodrigo@ximian.com>
* browser.glade: added title to window.
2003-01-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* browser.cs: use glade Autoconnect instead of setting the variables
'by hand'.
2003-01-16 Miguel de Icaza <miguel@ximian.com>
* ecma-provider.cs: Added support for Method summary; Render a
few more links too.
(RenderClassSumary): Fix Xpath, we were not pulling the remarks.
2003-01-15 Duncan Mak <duncan@ximian.com>
* html-helper.cs (RenderException): New method for rendering an
exception to a table.
* ecma-provider.cs (RenderProperty):
(RenderField):
(RenderConstructor): Implemented.
(RenderExceptionsList): New method, renders a table of the
exceptions thrown and the conditions that trigger them.
(GetArguments): New method, returns the arguments of a node as a
string.
(ConvertCTSName): New method, copied from monodoc editor to
convert CTS names to C# equivalents.
2003-01-12 Miguel de Icaza <miguel@ximian.com>
* provider.cs (Node.LookupNode): New function used when we want to
merge nodes instead of creating a new node.
* browser.cs, browser.glade: Add help browser. Currently it only
displays the compressed tree
* ecma-provider.cs: Merge nodes at the namespace level.
2003-01-10 Miguel de Icaza <miguel@ximian.com>
* provider.cs: Add nice and cozy tree binary file format, with
delayed loading.
This is helpful because we never load the entire tree in advance,
the tree is delayed-loaded. I love my clever file format.
* dump.cs: new tool to dump the tree. Not many options right now.
|