b45cfd767a
Merge pull request #949 from bentley/openbsd
...
Include netinet/in.h everywhere except Windows
2023-05-27 12:53:21 +03:00
df164aefe5
Include netinet/in.h everywhere except Windows
...
According to POSIX, sockaddr_in is declared in netinet/in.h.
Some POSIX systems (notably OpenBSD and FreeBSD) declare it in
only this header, so including it is required. Others, like Linux,
are are more lax in exposing symbols to the namespace, providing
sockaddr_in via additional headers, but it does no harm to include
the standard header on such systems.
2023-05-27 12:42:29 +03:00
58890a3f97
Merge pull request #952 from kiwix/use-focal-ci
...
Few CI changes (mostly Linux Bionic to Focal)
2023-05-27 12:42:12 +03:00
2d58142c58
No need anymore to change directory
2023-05-26 14:09:02 +02:00
0afa5e569c
Ubuntu 20.04 & macos 11 as OS in CI
2023-05-26 14:07:03 +02:00
ae605dc26d
Use latest version 27 of docker base image
2023-05-26 14:05:31 +02:00
d8f02ac225
Uses actions/checkout
2023-05-26 14:00:46 +02:00
e4595f357d
Use Ubuntu Focal as CI base image
2023-05-26 13:54:52 +02:00
881c121142
Merge pull request #918 from kiwix/translatewiki
...
Localisation updates from https://translatewiki.net .
2023-05-20 16:36:20 +04:00
2d51e1f0c6
Updated the list of translations
2023-05-20 16:18:12 +04:00
b24f681c24
Localisation updates from https://translatewiki.net .
2023-05-18 13:06:38 +02:00
deb02d92e2
Merge pull request #942 from kiwix/opds_response_charset_info
2023-04-25 16:56:06 +02:00
dc58e278c7
git mv src/server/internalServer_catalog{_v2,}.cpp
2023-04-25 12:48:49 +04:00
9994302312
Explicit charset in OPDS response MIME types
2023-04-25 12:48:29 +04:00
8c190cf34f
Moved InternalServer::handle_catalog()
2023-04-25 12:48:10 +04:00
1273570e01
Deduplication of OPDS MIME type strings
2023-04-25 12:47:02 +04:00
9bd2df2327
ServerTest.MimeTypes tests all OPDS endpoints
2023-04-25 12:46:24 +04:00
08834d6f17
Merge pull request #939 from kiwix/welcome_page_opds_api_upgrade
...
Got rid of legacy OPDS API usage in kiwix-serve
2023-04-21 20:19:07 +02:00
47950f132e
Got rid of legacy OPDS API usage in kiwix-serve
2023-04-21 17:03:13 +04:00
1a92d4a0b5
Merge pull request #934 from kiwix/mulNames
...
Display MUL on tile when multiple languages are available
2023-04-18 16:58:27 +02:00
272dc142c5
Display MUL on tile when multiple languages are available
...
If a book contains multiple languages, the language label now shows "MUL".
On hover, it displays the list of all languages available in the ZIM.
2023-04-18 18:53:07 +05:30
bf1d207651
Merge pull request #936 from kiwix/opds_xml_fix
2023-04-18 14:07:31 +02:00
6f0e55d603
A slight simplification of the mustache template
...
Got rid of the partial vs full entries logic in the mustache template -
now it is entirely contained in `OPDSDumper::dumpOPDSFeedV2()`.
2023-04-18 14:45:51 +04:00
ebe16f92a5
Fixed OPDS XML output for multiple filters
...
In XML any & symbols acting as parameter separators in URL search
components must be HTML-escaped.
2023-04-18 14:33:40 +04:00
4f6a5759aa
LibraryServerTest.catalog_v2_entries_multiple_filters
2023-04-18 14:24:00 +04:00
d85eb1b747
Merge pull request #935 from kiwix/revert-macos-ci-fix
...
Revert "Unlink and remove some linked python3 files"
2023-04-18 07:37:59 +02:00
41a1124585
Revert "Unlink and remove some linked python3 files"
...
This reverts commit 95bde675ef
.
2023-04-18 07:29:29 +02:00
98853a0708
Merge pull request #931 from kiwix/brew-overwrite
...
Fix macOS CI python dependency install
2023-04-11 17:30:05 +02:00
95bde675ef
Unlink and remove some linked python3 files
...
meson and ninja both depends on python3 which received an update.
This python3 update fails to install when linking.
This temp fix removes those files. Hopefully a future update will remove the need
for this hack
2023-04-11 17:04:24 +02:00
fcde243117
Merge pull request #930 from kiwix/pdf-friendly-kiwix-serve
2023-04-11 17:01:30 +02:00
9fd7f7da34
Really enable Chromium to display PDFs in the viewer iframe
...
The previous "fix" (merged PR #924 ) was buggy. It not only didn't work
in Chromium v90, but in more recent versions too.
I verified that this fix works in Firefox (v111) and Chromium (v90):
- Attempts by the ZIM content to break out of the viewer iframe are
blocked.
- PDFs are displayed in the viewer.
2023-04-10 16:42:21 +04:00
453f02cc85
Merge pull request #924 from kiwix/pdf-friendly-kiwix-serve
2023-04-05 15:41:37 +02:00
a6659cbe96
Enable Chromium to display PDFs in the viewer iframe
...
This fix requires Chromium version above 90.
2023-04-05 15:08:29 +02:00
e13fed8670
Merge pull request #897 from kiwix/nojs
...
A gift to javascript naysayers
2023-03-29 16:15:43 +02:00
25f589ee73
noscript text on welcome page
...
Added a <noscript> elements which hides everything on the welcome page if javascript is not enabled.
It displays a text to tell the user to navigate to /nojs endpoint
2023-03-29 19:03:30 +05:30
208f0f5f69
Tests for /nojs
...
Added 4 tests for /nojs endpoint
Test 1: no_js_default - Without any filters
Test 2: no_js_eng_lang - With lang=eng as filter
Test 3: no_js_no_books - For 0 results case
Test 4: no_js_download - To test download page
2023-03-29 19:03:30 +05:30
951e15c665
No results display in /nojs
...
Shows a link to reset filter if there are no books.
2023-03-29 19:03:30 +05:30
cc35fe503f
Translations for /nojs endpoint
...
Uses the string from #846 for translations.
A couple new translations are also added for <title> tag.
2023-03-29 19:03:29 +05:30
37aadb86fb
language/category filtering in /nojs endpoint
...
Adds language and category filter in /nojs.
Unlike the main page, the filtering is only done after user submits the form.
2023-03-29 19:02:58 +05:30
f843ea48f0
Add Results label
...
Shows "x results" label where x = number of books based on filters
2023-03-29 19:02:58 +05:30
a48e2e6f06
Add search form for /nojs endpoint
...
Adds an html form to search books by the q= parameter
2023-03-29 19:02:58 +05:30
0f7e11bd86
Add download-links to tiles in /nojs
...
The download-link links to /nojs/download/<bookname> for all 4 types of downloads.
2023-03-29 19:02:56 +05:30
dbded6eee2
Add links to content for tiles in /nojs
...
If the tiles are now clicked, they redirect to main page of book.
2023-03-28 21:50:47 +05:30
c1d7cc37fd
Add tags in tiles for /nojs endpoint
...
Adds span elements for tags
2023-03-28 21:49:31 +05:30
6071b98fb7
Import book tiles
...
Tries to copy the same design of tiles as main page with javascript enabled
2023-03-28 21:49:31 +05:30
dca47d35f7
Introduce /nojs endpoint
...
Adds /nojs endpoint for fallback.
Currently, it serves an HTML with book names in library
2023-03-28 20:25:44 +05:30
d8656ec149
Introduce HTMLDumper
...
HTMLDumper class will be used to dump library in HTML format. It inherits from LibraryDumper
2023-03-28 20:25:44 +05:30
f1873876b2
Extract LibraryDumper from OPDSDumper
...
This change creates a new common class for dumping the library into various formats: LibraryDumper
2023-03-28 20:25:44 +05:30
cb20317047
Merge pull request #920 from kiwix/iconFeedToolTip
...
Parameterised feed tool tip
2023-03-27 22:26:44 +02:00
ae58f009fb
Feed tooltip based on filters
...
The feed logo tooltip text is now based on filters.
If no filters are set, it shows "All entries"
2023-03-27 23:59:15 +05:30