summaryrefslogtreecommitdiff
path: root/render
Commit message (Collapse)AuthorAgeFilesLines
* [project @ 2006-01-02 13:19:34 by bursa]James Bursa2006-01-021-1/+1
| | | | | | Fix comment typo. svn path=/import/netsurf/; revision=1948
* [project @ 2006-01-01 23:55:24 by rjw]Richard Wilson2006-01-011-24/+22
| | | | | | Tidy up code. svn path=/import/netsurf/; revision=1932
* [project @ 2005-12-11 21:54:30 by bursa]James Bursa2005-12-111-0/+1
| | | | | | Disable some log messages. svn path=/import/netsurf/; revision=1896
* [project @ 2005-12-10 14:31:32 by adrianl]Adrian Lees2005-12-101-0/+3
| | | | | | ArtWorks support svn path=/import/netsurf/; revision=1891
* [project @ 2005-11-06 11:00:33 by bursa]James Bursa2005-11-061-4/+8
| | | | | | Fix crash when a frame contains floats. svn path=/import/netsurf/; revision=1877
* [project @ 2005-10-30 21:23:24 by bursa]James Bursa2005-10-301-32/+65
| | | | | | Treat HTML objects (frames) as part of the box tree during layout. svn path=/import/netsurf/; revision=1875
* [project @ 2005-10-30 21:23:03 by bursa]James Bursa2005-10-302-16/+179
| | | | | | Add page, index, and box to struct content_html_data. Implement html_replace_object() and html_find_target(). No longer combine box trees of frames and frameset (was causing crashes). svn path=/import/netsurf/; revision=1874
* [project @ 2005-08-31 20:29:11 by bursa]James Bursa2005-08-311-0/+5
| | | | | | Fix submitting of forms with more than one image button. svn path=/import/netsurf/; revision=1856
* [project @ 2005-08-22 22:49:52 by bursa]James Bursa2005-08-225-48/+63
| | | | | | More work towards frame targets: add target parameter to box_create(), and copy target down the box tree during construction. svn path=/import/netsurf/; revision=1853
* [project @ 2005-08-21 12:04:17 by bursa]James Bursa2005-08-211-35/+40
| | | | | | Change void * parameters to intptr_t to make them correct for storing integers or pointers. svn path=/import/netsurf/; revision=1852
* [project @ 2005-08-20 22:52:20 by bursa]James Bursa2005-08-205-22/+70
| | | | | | Work towards implementing link target frames: add target attribute to struct box, add frame to struct content_html_object and html_fetch_object(). svn path=/import/netsurf/; revision=1849
* [project @ 2005-08-14 23:56:15 by jmb]John Mark Bell2005-08-145-2/+699
| | | | | | | Move imagemap.[ch] into render/ Make imagemap URL extraction use box_extract_link svn path=/import/netsurf/; revision=1847
* [project @ 2005-08-14 21:43:36 by bursa]James Bursa2005-08-141-1/+2
| | | | | | Fix box_contains_point() for non-rectangular inlines. svn path=/import/netsurf/; revision=1846
* [project @ 2005-08-08 19:19:20 by bursa]James Bursa2005-08-081-0/+32
| | | | | | Fix redraw of underlines and other text-decoration. svn path=/import/netsurf/; revision=1845
* [project @ 2005-08-07 21:28:48 by bursa]James Bursa2005-08-074-31/+24
| | | | | | Improvements to frames. Fix bug with BR at end of inline container. svn path=/import/netsurf/; revision=1843
* [project @ 2005-08-06 23:34:30 by bursa]James Bursa2005-08-061-1/+5
| | | | | | Fix vertical positioning of floats when an empty block with top padding is present. svn path=/import/netsurf/; revision=1842
* [project @ 2005-08-06 22:29:30 by bursa]James Bursa2005-08-061-2/+7
| | | | | | Use given width as initial min/max width of fixed-width table columns. This improves the layout of certain tables with colspans. svn path=/import/netsurf/; revision=1841
* [project @ 2005-08-04 22:51:42 by bursa]James Bursa2005-08-041-0/+1
| | | | | | Fix strndup() compiler warnings. svn path=/import/netsurf/; revision=1840
* [project @ 2005-07-31 21:57:07 by bursa]James Bursa2005-07-311-1/+12
| | | | | | Implement clear on <br>. svn path=/import/netsurf/; revision=1834
* [project @ 2005-07-31 11:21:46 by bursa]James Bursa2005-07-311-9/+7
| | | | | | Fix certain cases of relative positioning, and make the recursion more efficient (don't recurse for BOX_TEXT). svn path=/import/netsurf/; revision=1831
* [project @ 2005-07-30 23:32:48 by jmb]John Mark Bell2005-07-301-1/+132
| | | | | | Position: relative; support. svn path=/import/netsurf/; revision=1830
* [project @ 2005-07-27 22:49:53 by jmb]John Mark Bell2005-07-271-0/+11
| | | | | | Mark invalid CSS contents with an error so they get flushed from the cache. svn path=/import/netsurf/; revision=1828
* [project @ 2005-07-24 14:29:32 by bursa]James Bursa2005-07-241-5/+12
| | | | | | Fix position of certain floats. svn path=/import/netsurf/; revision=1822
* [project @ 2005-07-21 21:48:41 by bursa]James Bursa2005-07-212-2/+27
| | | | | | Fix layout min max bug with blocks with negative margins. Add assert()s to check that 0 <= min_width <= max_width at the end of each layout_minmax_X() function. svn path=/import/netsurf/; revision=1813
* [project @ 2005-07-20 22:25:56 by bursa]James Bursa2005-07-201-0/+10
| | | | | | Fix fixed width table min / max width calculations. svn path=/import/netsurf/; revision=1811
* [project @ 2005-07-20 22:08:56 by bursa]James Bursa2005-07-201-2/+4
| | | | | | Fix min / max bug with negative margins (treat as 0 for now). svn path=/import/netsurf/; revision=1810
* [project @ 2005-07-18 16:38:59 by adrianl]Adrian Lees2005-07-181-92/+155
| | | | | | Fix text selection jitter svn path=/import/netsurf/; revision=1804
* [project @ 2005-07-18 14:22:26 by jmb]John Mark Bell2005-07-181-1/+1
| | | | | | Fix erroneous attempt to uppercase address of character instead of the character itself svn path=/import/netsurf/; revision=1802
* [project @ 2005-07-06 19:56:34 by bursa]James Bursa2005-07-061-2/+3
| | | | | | Fix broken code in table_find_cell(). svn path=/import/netsurf/; revision=1788
* [project @ 2005-07-03 15:57:10 by jmb]John Mark Bell2005-07-031-5/+16
| | | | | | Handle forms with no action attribute svn path=/import/netsurf/; revision=1783
* [project @ 2005-07-02 23:37:41 by bursa]James Bursa2005-07-021-42/+50
| | | | | | Improvements to layout_minmax_line(). Fix width of floats / inline blocks without an explicit width (space for margins, borders, padding was added twice). svn path=/import/netsurf/; revision=1781
* [project @ 2005-07-02 20:08:24 by bursa]James Bursa2005-07-021-0/+7
| | | | | | Fix hidden form inputs being rendered. svn path=/import/netsurf/; revision=1780
* [project @ 2005-07-02 18:19:41 by bursa]James Bursa2005-07-022-0/+2
| | | | | | Fix copyright comments. svn path=/import/netsurf/; revision=1779
* [project @ 2005-07-02 18:17:51 by bursa]James Bursa2005-07-024-679/+490
| | | | | | Rewrite calculation of box minimum and maximum widths to improve layout of many pages. Move calculation of column types and border collapsing to box tree normalising stage, since they are layout independent. Add window height parameter to layout and make <html> and <body> at least window height. svn path=/import/netsurf/; revision=1777
* [project @ 2005-07-02 18:06:10 by bursa]James Bursa2005-07-022-0/+391
| | | | | | New files for some table layout functions. svn path=/import/netsurf/; revision=1776
* [project @ 2005-07-02 17:58:32 by bursa]James Bursa2005-07-021-1/+2
| | | | | | Bring comment showing permitted child nodes up to date. svn path=/import/netsurf/; revision=1775
* [project @ 2005-07-02 17:49:40 by bursa]James Bursa2005-07-021-0/+11
| | | | | | Display contents of table->col[] in box_dump(). svn path=/import/netsurf/; revision=1774
* [project @ 2005-06-26 22:18:37 by jmb]John Mark Bell2005-06-261-9/+37
| | | | | | | Improve clarity of use of utf8_to_enc. Remove use of curl_escape - url_escape does similar things, just better. svn path=/import/netsurf/; revision=1766
* [project @ 2005-06-26 01:55:20 by jmb]John Mark Bell2005-06-263-41/+117
| | | | | | | | Move acceptable character set determination to form submission time, rather thanat box tree creation time. Use UTF-8 encoding, if specified, else use first specified encoding. Improve use of utf8_to_enc - falling back to document encoding then 8859-1 where appropriate. svn path=/import/netsurf/; revision=1765
* [project @ 2005-06-23 17:22:28 by rjw]Richard Wilson2005-06-231-0/+5
| | | | | | Allow images to be unloaded to disk or compressed in memory. Provide thumbnails in all tree windows (hotlist, history). Optimise the application initialisation times. Part 1 of 2. svn path=/import/netsurf/; revision=1761
* [project @ 2005-06-07 22:52:56 by bursa]James Bursa2005-06-071-1/+1
| | | | | | Fix bug causing an extra line to be inserted for <br> at the end of a paragraph. svn path=/import/netsurf/; revision=1746
* [project @ 2005-06-07 21:29:26 by jmb]John Mark Bell2005-06-071-4/+13
| | | | | | | Lose cnv_str_local_enc and friends. UTF-8 conversion functions now return an enumerated type allowing for fallbacks, if appropriate. svn path=/import/netsurf/; revision=1744
* [project @ 2005-06-05 20:54:37 by bursa]James Bursa2005-06-056-47/+98
| | | | | | More work on borders / padding / margins on inline elements. Add BOX_INLINE_END to hold the right border / padding / margin (left is in the BOX_INLINE). svn path=/import/netsurf/; revision=1742
* [project @ 2005-06-04 12:12:38 by bursa]James Bursa2005-06-045-26/+26
| | | | | | Fix text-decoration and borders on inline elements by replacing inline_parent in box structure with end_inline_children. svn path=/import/netsurf/; revision=1741
* [project @ 2005-05-25 23:06:26 by jmb]John Mark Bell2005-05-251-2/+2
| | | | | | Fix textarea submission svn path=/import/netsurf/; revision=1740
* [project @ 2005-05-24 20:21:47 by bursa]James Bursa2005-05-241-9/+9
| | | | | | Convert remaining BOX_INLINEs in forms to BOX_TEXT. svn path=/import/netsurf/; revision=1736
* [project @ 2005-05-23 22:14:09 by bursa]James Bursa2005-05-232-151/+241
| | | | | | Start to implement borders on inline elements. Note: borders of form controls are rendered incorrectly (text boxes in form controls need changing from INLINE to TEXT). svn path=/import/netsurf/; revision=1734
* [project @ 2005-05-22 22:16:00 by jmb]John Mark Bell2005-05-221-1/+1
| | | | | | Fix inversion of overline and line-through plot offsets svn path=/import/netsurf/; revision=1733
* [project @ 2005-05-22 21:50:14 by bursa]James Bursa2005-05-226-57/+176
| | | | | | Add BOX_TEXT type to distinguish boxes which came from an inline element to boxes which came from a text node. Add inline_parent pointer to box structure. Rewrite text-decoration support to take advantage of the new data (line colours are now correct). Note: there is a clipping issue in redraw. svn path=/import/netsurf/; revision=1732
* [project @ 2005-05-22 19:09:43 by bursa]James Bursa2005-05-221-0/+1
| | | | | | Fix crash due to uninitialised variable. svn path=/import/netsurf/; revision=1731