aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* bring filed items to mod hqMario2024-10-195-18/+111
|
* remove attach_upgrade() after 7 years it should not be required anymoreMario2024-10-182-38/+0
|
* i guess a couple of weeks have passed by nowMario2024-10-181-7/+0
|
* fix edit button not clickable if below right asideMario2024-10-182-2/+2
|
* fix tags rendering in the editorMario2024-10-171-6/+10
|
* Merge branch 'fix-cleanup-bbcode-url-regex' into 'dev'Mario2024-10-124-29/+47
|\ | | | | | | | | Fix naked URLs immediately followed by a newline See merge request hubzilla/core!2150
| * Fix some whitespace issues in zid.php.Harald Eilertsen2024-10-121-14/+14
| | | | | | | | No functional change.
| * Change config used by Markdown tests to reflect actual use.Harald Eilertsen2024-10-122-10/+31
| | | | | | | | | | | | | | This makes the configuration used align better with how it is being used in the mdpost addon. This also reveals some issues that are less than ideal for Markdown posts. The relevant test cases have been adjusted to pass with the new config, but have been commented.
| * Fix regex to detect URLs in cleanup_bbcode.Harald Eilertsen2024-10-121-5/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This fixes the issue where the text after the URL would be included in the link if it was immediately followed by a newline. Example: https://example.com this is a test. Would become: #^[url=https://example.com_this]https://example.com_this[/url] is a test
* | Merge branch 'remove-repo-handling-from-admin-addons' into 'dev'Mario2024-10-1275-8481/+3
|\ \ | | | | | | | | | | | | Remove addon repo management from admin/addons. See merge request hubzilla/core!2149
| * | emove another PHPGit related file.Harald Eilertsen2024-10-091-7/+0
| | |
| * | Remove now unused PHPGit from library.Harald Eilertsen2024-10-0970-7861/+0
| | |
| * | Remove addon repo management from admin/addons.Harald Eilertsen2024-10-094-613/+3
| | | | | | | | | | | | | | | | | | This functionality was broken anyways, and needs to be rethought. Addon reporitories can still be managed from the terminal using the tools in util/.
* | | Merge branch 'drop-unused-html5-library' into 'dev'Mario2024-10-126-6469/+0
|\ \ \ | | | | | | | | | | | | | | | | Remove HTML5 parser lib deprecated in Hubzilla 5.0 See merge request hubzilla/core!2148
| * | | Remove HTML5 parser lib deprecated in Hubzilla 5.0drop-unused-html5-libraryHarald Eilertsen2024-10-096-6469/+0
| |/ /
* | | Merge branch 'first-tests-for-module-magic' into 'dev'Mario2024-10-122-2/+115
|\ \ \ | | | | | | | | | | | | | | | | tests: Add some tests for the Zotlabs\Magic module. See merge request hubzilla/core!2147
| * | | tests: Add some tests for the Zotlabs\Magic module.Harald Eilertsen2024-10-062-2/+115
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Only tests the delegate functionality at the moment. This patch also includes some minor fixes to the Magic module, triggered by the tests with empty destination URL's.
* | | | Fix duplicate posts from forum clonesMario Vavti2024-10-121-1/+3
| |_|/ |/| |
* | | revertMario Vavti2024-10-102-255/+43
| | |
* | | resolve merge conflictMario Vavti2024-10-102-43/+255
| | |
* | | changelogMario Vavti2024-10-101-0/+2
| | |
* | | also discard Add/Remove at the AP sideMario Vavti2024-10-102-7/+22
| |/ |/|
* | also dismiss add/remove collection activities in fetch_conversation()Mario2024-10-091-5/+15
| |
* | dismiss add/remove collection activities until we support themÃMario2024-10-091-0/+13
|/
* css fixesMario2024-10-041-1/+1
|
* remove bogus icon idMario2024-10-041-1/+1
|
* more fa2bi fixesMario2024-10-042-5/+5
|
* changelogMario2024-10-041-0/+6
|
* Reflect change to btn-link in js templateMario2024-10-041-1/+1
|
* Fix modal backdrop not removed when like/unlike from the modalMario2024-10-041-0/+3
|
* Fix missing handle icon in mod pdledit_guiMario2024-10-041-1/+1
|
* due to popular demand: indicate reacted state via icon colorMario2024-10-033-23/+19
|
* changelogMario2024-10-021-0/+9
|
* Merge branch 'tests-for-activitystreams' into 'dev'Mario2024-10-021-0/+136
|\ | | | | | | | | tests: Add a basic test for ActivityStreams See merge request hubzilla/core!2146
| * tests: Add a basic test for ActivityStreamsHarald Eilertsen2024-10-021-0/+136
| | | | | | | | | | This is just a basic test that parses a specific object, and tests that all the referenced objects are fetched from the originating servers.
* | Merge branch 'markdown/dont-link-urls-in-code-blocks' into 'dev'Mario2024-10-023-17/+21
|\ \ | | | | | | | | | | | | markdown: Don't link URLs in code blocks. See merge request hubzilla/core!2145
| * | markdown: Don't link URLs in code blocks.Harald Eilertsen2024-09-303-17/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When passing a content throught the `markdown_to_bb` function to convert any markdown in the content, any recognized URLs in the content would be converted to BBCode links as a post processing step after the main conversion. After commit a1ccacb825edac6ae36e5db4f62ebfe7aeaebe9f this did no longer consider content within code blocks, and would thus convert them as to BBCode links. Example: The following content [code] example url: https://example.com [/code] Would be converted to [code] example url: [url=https://example.com]https://example.com[/url] [/code] Prior to commit a1ccacb825edac6ae36e5db4f62ebfe7aeaebe9f, code blocks would be protected, so this would not happen. This patch removes the post processing step for converting plain URLs to links completely from this routine. This functionality is in any case covered in the actual BBCode parser where it belongs. This will have some other side effects as well, such as images and links created using Markdown, will not be converted to [zmg] or [zrl] tags where that would be done automatically before. If you intend to use a [zrl] or [zmg] tag, you now need to do so explicitly.
* | | rewrite sql logic to rename photos - there are more DB queries involved now ↵Mario Vavti2024-10-021-21/+19
| |/ |/| | | | | but the previous logic was throwing error in postgresql (while the result was correct anyway)
* | update symfony/polyfill-php81Mario2024-09-305-22/+22
| |
* | update sabre/vobjectMario2024-09-309-36/+138
| |
* | update spomky-labs/otphpMario2024-09-3010-60/+59
| |
* | update ramsey/uuidMario2024-09-305-24/+26
| |
* | update scssphpMario2024-09-3013-63/+138
| |
* | fix german about page titleMario2024-09-301-1/+1
| |
* | Merge branch 'more-help-improvements' into 'dev'Mario2024-09-306-38/+33
|\ \ | | | | | | | | | | | | Fix help for other languages than english See merge request hubzilla/core!2144
| * | Tests: Unbreak help test.Harald Eilertsen2024-09-291-2/+2
| | |
| * | Help: Drop language specifier in URL when redirectingHarald Eilertsen2024-09-291-2/+2
| | | | | | | | | | | | This finally fixes the help for languages other than english.
| * | Replace drop shadow in help toc with brighter color.Harald Eilertsen2024-09-291-2/+2
| | | | | | | | | | | | | | | | | | The drop shadow looked terrible in dark mode. While that could be fixed, I think it looks better with just using the link hover color and making the selected item bold.
| * | Move some help related styling from redbasic to module css.Harald Eilertsen2024-09-292-14/+14
| | |
| * | Use html details element for toc on top of help pages.Harald Eilertsen2024-09-293-19/+12
| | | | | | | | | | | | | | | This allows us to get rid of some more unneccessary JavaScript that just implements stuff that web browsers now do anyways.