|  | Commit message (Collapse) | Author | Age | Files | Lines | 
|---|
| | |  | 
| | |  | 
| | |  | 
| | |  | 
| |\  
| | 
| | | Rudimentary support for the section tag | 
| | | 
| | 
| | 
| | | branch | 
| |\ \  
| | | 
| | | | Patch to make w3m’s handling of the a element HTML5 compatible (when the stream is HTML5) | 
| | |/  
| |   
| |   
| |   
| |   
| | | but should be closed when encountering buttons, for example. Many sites that use HTML5-style anchors end up having links displayed with zero-length link texts. The proposed patch correct this behaviour by detecting whether the document is HTML5, then suppressing the close-anchor action in CLOSE_A if it's an HTML5 document. A new macro handles the HTML5-specific cases where anchors are not already always closed.
This also fixes a bug in the tokenizing FSM in etc.c that prevented the !doctype element from being recognized; the fix is necessary because HTML5 detection depends on checking the !doctype element. | 
| |\ \  
| | | 
| | | | Corrections to traditional Chinese translation | 
| | | | |  | 
| | |/  
| |   
| |   
| | | number of serious errors. Style follows existing Pidgin translation, with NAER, mousepad and others as additional references. | 
| |\ \  
| |/  
|/| | Cleaned version of 20200823_q branch. Changes the behaviour of the q … | 
| | | |  | 
| |/  
|   
|   
|   
|   
| | (when m17n and Unicode are configured) to use "smart" quotes if the display charset can handle them. Falls back to old behaviour (ASCII quotes with left/right quote semantics for 6/0 and 2/6) if display charset is us-ascii.
Also changes the behaviour of conv_entity() to convert left/right quotes and some dashes because named entities are needed for the new code for the q tag. | 
| | |  | 
| | |  | 
| |\  
| | 
| | | Rudimentary support for figure, figcaption | 
| |/ |  | 
| | |  | 
| |\  
| | 
| | | Show keyboard shortcuts in a consistent order in help | 
| |/  
|   
|   
|   
|   
|   
|   
|   
|   
|   
|   
|   
|   
| | Perl's hash variables are not ordered so each
time we run the CGI script for the help page
we may get a different order.
This caused bindings and names to appear
differently on each reload.
To fix this sort by keys when generating the
shortcut tables.
Fixes #133 | 
| | |  | 
| | 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| | - Begin a sentence on a new line.
- Split long lines (> 80).
- Fix warnings from "mandoc -Tlint"
- Remove space at end of lines.
- Change a HYPHEN-MINUS (code 0x55, 2D) to a dash (minus) if it matches
  " -[:alpha:]" or \[aq]-[:alpha:] (for options).
- Use the macros .MT/.ME for e-mail addresses
Origin: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=963801#5 | 
| | |  | 
| |\  
| | 
| | | Change the encoding of the Japanese docs to UTF-8 | 
| | | |  | 
| |\ \  
| |/  
|/| | Add COPYING file | 
| |/ |  | 
| | |  | 
| | |  | 
| | |  | 
| | 
| 
| 
| 
| | Origin: http://cvsweb.netbsd.org/bsdweb.cgi/~checkout~/pkgsrc/www/w3m/patches/patch-main.c?rev=1.1&content-type=text/plain
Bug: https://sourceforge.net/p/w3m/patches/76/ | 
| | |  | 
| | |  | 
| | |  | 
| | |  | 
| | |  | 
| | |  | 
| | |  | 
| | |  | 
| |\  
| | 
| | | Add command to go home. | 
| |/  
|   
|   
|   
|   
|   
|   
|   
|   
| | When w3m is launched, if no other options are specified, it attempts to
read HTTP_HOME and WWW_HOME from the environment and upon finding a
value for one of these load the url specified.  Once launched, though,
w3m provides no convenience for navigating to the home page.
Here, that ability is added.  A new command GOTO_HOME is defined with a
default key binding of C-_. | 
| | |  | 
| |\  
| | 
| | | entities: support ' entity | 
| |/  
|   
|   
|   
|   
|   
|   
|   
|   
|   
|   
|   
|   
|   
|   
|   
|   
|   
|   
|   
|   
|   
| | The XHTML standard encompasses the XML standard.
From the beginning, the XML standard [1] has always included required
support for five character entities:
 1. the ampersand (&) as &
 2. the left angle bracket (<) as <
 3. the right angle bracket (>) as >
 4. the double-quote character (") as "
 5. the apostrophe or single-quote character (') as '
See section "2.4 Character Data and Markup" of the XML standard [1]
for further details.
Add support for the character single-quote character entity (')
in order to fully support XHTML pages.
[1]: https://www.w3.org/TR/REC-xml/
Signed-off-by: Kyle J. McKay <mackyle@gmail.com> | 
| | |  | 
| | |  | 
| | |  | 
| |\  
| | 
| | | Allow setting User Agent in Siteconf | 
| |/  
|   
|   
|   
|   
| | Since Google gives usable search results to Lynx but not to w3m, and
many other sites block Lynx but /not/ w3m, we want to be able to set
the User Agent string on a per-site basis. |