Witold Filipczyk
b32edcc5a6
[setup] github urls
2019-11-11 16:29:09 +01:00
Witold Filipczyk
b3e01b3298
[scripting] python scripting with Python3.
...
Only utf-8 encoding is supported.
2019-11-11 13:33:37 +01:00
rkd77
e8addcb561
Merge pull request #36 from sgerwk/master
...
document '-remote reload()'
2019-09-30 21:57:02 +02:00
sgerwk
9d2755d101
add autogen.sh to compiling instructions
2019-09-30 17:57:47 +02:00
sgerwk
abc7a8f20a
document '-remote reload()'
2019-09-30 17:43:06 +02:00
Witold Filipczyk
41164c9d73
[configure.ac] gcc9
2019-08-24 12:42:49 +02:00
Witold Filipczyk
5115a3225d
[terminal] Detect gnome-terminal as x-terminal. Refs #35
2019-08-24 10:28:01 +02:00
Witold Filipczyk
a53486b31d
[encoding] Read whole file.zst to memory and decompress.
2019-07-14 22:25:03 +02:00
Witold Filipczyk
90086599da
[encoding] Experimental zstd encoding
2019-07-14 18:54:39 +02:00
Witold Filipczyk
e4b536f8ab
[gopher] Nothing is easy as it seems. Refs #34
2019-05-13 12:46:44 +02:00
Witold Filipczyk
12b270e8d2
[gopher] Allow unix like line endings. Refs #34
2019-05-13 12:09:26 +02:00
Witold Filipczyk
3d23424b9f
[gopher] Another try for #33 .
...
This time replace /URL -> URL for h type.
2019-05-12 22:56:54 +02:00
Witold Filipczyk
41c3485add
Revert "[gopher] Skip '/'. Refs #33 "
...
This reverts commit 5106b31f6c
.
2019-05-12 22:16:48 +02:00
Witold Filipczyk
5106b31f6c
[gopher] Skip '/'. Refs #33
2019-05-05 16:18:29 +02:00
Witold Filipczyk
3d96b0d7d7
Revert "Compile with C++."
...
This reverts commit 4f4df33638
.
2019-04-21 12:27:40 +02:00
Witold Filipczyk
8d7112c27d
Revert "Fix some issues with js."
...
This reverts commit 6322d2936a
.
2019-04-21 12:26:27 +02:00
Witold Filipczyk
6322d2936a
Fix some issues with js.
2019-02-17 23:33:12 +01:00
Witold Filipczyk
4f4df33638
Compile with C++.
...
Weak points:
- alignof
- js problems
Todo:
- make js work with C++ and mozjs-17
- then mozjs-24
- then mozjs-52
- then mozjs-60
- decrease number of warnings
2019-02-17 20:46:16 +01:00
Witold Filipczyk
25dd2ecae9
Changed ecmascript engine to mozjs-17.0.
...
Was not tested, especially smjs is likely buggy.
2019-02-10 21:00:37 +01:00
rkd77
9cebc108fd
Merge pull request #30 from jwilk-forks/spelling
...
pl.po: Fix typos
2019-02-05 20:19:26 +01:00
Jakub Wilk
aa4d023987
pl.po: Fix typos
2019-02-05 17:24:52 +01:00
Witold Filipczyk
e78d2b5096
manual depends on txt. Try to fix #28
2019-01-25 22:20:14 +01:00
rkd77
f648ea4cdf
Merge pull request #27 from aelmahmoudy/gnutls36
...
Compat with gnutls 3.6.4
2019-01-24 18:27:21 +01:00
أحمد المحمودي (Ahmed El-Mahmoudy)
a1bea9349f
Compat with gnutls 3.6.4
2019-01-24 07:53:19 +01:00
rkd77
8d33172841
Merge pull request #26 from aelmahmoudy/typos
...
Fix spelling mistakes
2019-01-14 09:37:34 +01:00
أحمد المحمودي (Ahmed El-Mahmoudy)
dbab898f38
Fix spelling mistakes
2019-01-14 04:51:10 +01:00
Witold Filipczyk
6dfdd36398
form_control -> el_form_control
2018-09-09 19:18:53 +02:00
Witold Filipczyk
d8be2c505e
Rename struct box to struct el_box.
...
In the future I want to copy some code from netsurf, so I'm preparing.
2018-09-09 19:14:56 +02:00
rkd77
58a2ff2fb6
Merge pull request #25 from aelmahmoudy/updateNEWS
...
An attempt to update NEWS
2018-08-29 14:54:40 +02:00
أحمد المحمودي (Ahmed El-Mahmoudy)
eee14322eb
An attempt to update NEWS
2018-08-29 04:02:04 +02:00
Witold Filipczyk
6ec3fc3f33
More user friendly method to set expires in cookie dialog.
2018-08-25 22:44:11 +02:00
Witold Filipczyk
9eaf03cf2a
Added HttpOnly cookies
2018-08-25 15:28:29 +02:00
Witold Filipczyk
6f001ea50f
Check for NULL to avoid segmentation fault.
...
Entering in cookie dialog expires:
123456789012345678
and then Info button, caused segfault.
2018-08-18 20:53:40 +02:00
rkd77
b4766aa0cd
Merge pull request #23 from sgerwk/master
...
when searching in a node, only search within its box
2018-06-25 13:45:05 +02:00
sgerwk
2f58dfce13
when searching in a node, only search within its box
2018-06-25 10:47:51 +02:00
rkd77
bf6d32fb30
Merge pull request #22 from fducroquet/search-fix
...
Move check on number of search points to move_search_do
2018-06-07 19:54:18 +02:00
Fabienne Ducroquet
3665ee2ef7
Move check on number of search points to move_search_do
...
If doc_view->document->number_of_search_points is 0, move_search_number
crashes at:
pt = doc_view->document->search_points;
x = pt[number].x;
y = pt[number].y;
so it is not sufficient to make find_first_search_in_view return
immediately in this case, move_search_do should return immediately.
2018-06-07 17:25:21 +02:00
Witold Filipczyk
f2c0a380ab
Check if nothing has found. Refs #21
2018-04-15 18:08:54 +02:00
Witold Filipczyk
ad5f8165b2
Wraparound search
2018-04-15 16:45:23 +02:00
Witold Filipczyk
798a7cc4e6
Reuse existing functions to scroll. Added horizontal_scroll_extended.
2018-04-15 14:32:18 +02:00
Witold Filipczyk
7a006b6dd2
Rewritten searching. Refs #21
...
Before only visible part of screen was searched for pattern.
Now whole document is searched, and beginings of found text
is remembered in document->search_points.
2018-04-14 21:49:52 +02:00
Witold Filipczyk
fd1ae61131
Let search for more unbreakable spaces. Refs #20
2018-04-07 11:43:28 +02:00
Witold Filipczyk
fbfbe4013c
Interpret 0xA0 (nbsp in UTF-8 mode) as space char for searches. Issue #20
2018-04-06 20:02:49 +02:00
Witold Filipczyk
3b279e5ec6
No warning
2018-03-10 10:36:25 +01:00
Witold Filipczyk
00d34fd0ed
ruby: missing change PTR to LEN
2018-03-10 10:27:46 +01:00
rkd77
eed78fbcff
Merge pull request #19 from doughdemon/ruby
...
Fix compatibility with Ruby >= 1.9
2018-03-10 10:18:25 +01:00
Felix Janda
7a403ef735
Fix compatibility with Ruby >= 1.9
...
Based on patch by Ian Abbott
Bug: https://bugs.gentoo.org/424789
2018-03-09 17:34:30 -05:00
Witold Filipczyk
0dd3aaabe6
int -> size_t
2018-02-25 17:14:46 +01:00
rkd77
2a0748d533
Merge pull request #18 from doughdemon/guile
...
Update guile scripting
2018-02-25 17:02:50 +01:00
Felix Janda
254f440de4
Remove references to internal-hooks.scm
2018-02-24 15:08:17 -05:00