Matthias Pfefferle
7be74c1837
fix upgrade call
2023-01-23 21:24:54 +01:00
Matthias Pfefferle
a55dc90379
fix length
2023-01-23 21:13:50 +01:00
Matthias Pfefferle
4d75ade22b
strong is not supported
2023-01-23 21:08:59 +01:00
Matthias Pfefferle
c93f02615d
always escape output
2023-01-23 20:59:39 +01:00
Matthias Pfefferle
fe4e0961c8
I would keep it simple for now
2023-01-23 20:47:02 +01:00
Matthias Pfefferle
cb1c26a365
use static method to upgrade post content to shortcodes
2023-01-23 20:31:14 +01:00
Matthias Pfefferle
d4b88f228d
mastodon sadly does not support target on links
...
See https://github.com/mastodon/mastodon/blob/main/lib/sanitize_ext/sanitize_config.rb#L77
2023-01-23 20:24:03 +01:00
Matthias Pfefferle
b458cc6b88
coding standard
2023-01-23 20:13:56 +01:00
Matthias Pfefferle
3666f89f6e
with shortcode_atts
there is no need to check if attr is set
2023-01-23 20:11:18 +01:00
Matthias Pfefferle
75cc35c66e
I think it is enough to check if $post or $post_id is set
2023-01-23 20:08:06 +01:00
Matthias Pfefferle
aec21a489c
coding standards
2023-01-23 19:43:34 +01:00
Greg
71f3a47589
Converted shortcode class to static.
...
And added options for shortlink/permalink type.
2023-01-23 11:59:13 -05:00
Greg
3a82891948
Minor cleanups.
2023-01-22 11:27:13 -05:00
Greg
740a73b00f
Add size attribute to the image shortcode.
2023-01-22 01:25:50 -05:00
Greg
b5fa16b464
Move the shortcodes to their own class.
2023-01-22 01:13:46 -05:00
Greg Ross
621911d1bf
Merge branch 'pfefferle:master' into switch-to-shortcodes
2023-01-22 00:36:06 -05:00
Matthias Pfefferle
0d255d219b
change priority
...
because of #182
2023-01-16 20:28:45 +01:00
Matthias Pfefferle
0498433ce7
Merge pull request #256 from toolstack/fix-rewrite-rules
...
Move the activitypub endpoint rule to the main rewrite addition function
2023-01-16 20:17:25 +01:00
Matthias Pfefferle
3dfdf2ac0a
Use a single page to explain all topics (glossar)
2023-01-16 20:12:14 +01:00
Greg
47bd6eb3b4
Move the activitypub endpoint rule to the main rewrite addition function.
...
This is for two reasons:
- No need to add the endpoint every time the plugin loads.
- The old code didn't flush the rewrite rules, making the endpoint non-functional until something did (like the user saving the permalink settings)
2023-01-16 13:19:26 -05:00
Greg
bc8e46e121
Fix shortcode output.
2023-01-16 12:51:18 -05:00
Greg
4a17bb4ea7
Separate the shortcode upgrade function and call it in the settings.
2023-01-16 10:27:27 -05:00
Greg
caea1ecbed
Make sure we have a post before using it to set class variables with.
2023-01-16 10:26:38 -05:00
Matthias Pfefferle
2f0dbde2a4
fix phpcs issues
2023-01-16 15:28:10 +01:00
Matthias Pfefferle
5118f00a1e
Merge pull request #247 from toolstack/fix-the-excerpt
...
Make the excerpt code actually crop the excerpt at 400 characters.
2023-01-16 15:04:47 +01:00
Greg
bf6cf24b17
Add length to excerpt shortcode.
2023-01-13 16:11:52 -05:00
Greg
e7d3cf9d68
Convert template codes to shortcodes.
...
As well as add new shortcodes for:
[ap_hashcats] - The post's categories as hashtags
[ap_image] - The URL for the post's featured image, full size
[ap_thumbnail] - The URL for the post's featured image thumbnail size
[ap_author] - The author's name
[ap_authorurl] - The URL to the author's profile page
[ap_date] - The post's date
[ap_time] - The post's time
[ap_datetime] - The post's date/time formated as "date @ time"
[ap_blogurl] - The URL to the site
[ap_blogname] - The name of the site
[ap_blogdesc] - The description of the site
2023-01-13 15:47:13 -05:00
Greg
27aeaeb4e4
Fix incorrect setting of target length and spelling mistake.
2023-01-13 11:02:16 -05:00
Matthias Pfefferle
5dac683c48
switch to constants to define pathes
2023-01-13 09:19:02 +01:00
Matthias Pfefferle
c7044f7ede
Merge pull request #248 from mexon/configure-number-of-images
...
configuration item for number of images to attach
2023-01-13 08:58:45 +01:00
Matthias Pfefferle
c06a7d44cf
re-added max_images check
...
props @mexon
2023-01-12 22:21:48 +01:00
Matthias Pfefferle
6992fbbe22
simplified ACTIVITYPUB_MAX_IMAGE_ATTACHMENTS
2023-01-12 21:55:33 +01:00
Matthew Exon
1e7e6bba28
standardise and improve name of attachment setting
2023-01-12 21:29:21 +01:00
Matthew Exon
d1765b56dd
configuration item for number of images to attach
2023-01-07 17:58:50 +01:00
Greg
43f347bc7c
Make the excerpt code actually crop the excerpt at 400 characters.
...
The existing implementation crops at words and may return very short strings based upon filters, or very long strings based upon user inputted excerpts.
Make sure we never return a excerpt longer than we expect.
2023-01-06 20:04:31 -05:00
Matthias Pfefferle
a548d1fe0f
get_post_meta need the post ID
2022-12-27 16:58:49 +01:00
Matthias Pfefferle
10a8a2de1d
use unique meta
2022-12-27 16:01:59 +01:00
Matthias Pfefferle
6878b86922
fix test
2022-12-27 15:56:46 +01:00
Matthias Pfefferle
c221daef86
store permalink in post meta for trashed posts
...
this should quick fix #16 without changing the permalink structure
2022-12-27 15:48:14 +01:00
Matthias Pfefferle
bf0b51ceb3
only save public activities
...
first step to #72
2022-12-27 14:43:37 +01:00
Matthias Pfefferle
9acd0732d4
hide users that can not publish posts
...
fixes #230
2022-12-27 14:03:10 +01:00
Matthias Pfefferle
45b6e63f32
fix phpcs issues
2022-12-23 13:17:12 +01:00
Matthias Pfefferle
733bc88faf
fix phpcs issues
2022-12-23 12:12:12 +01:00
Matthias Pfefferle
f1dfd52329
Merge branch 'master' into Comments
2022-12-23 12:03:13 +01:00
Django Doucet
b04538a2ab
remove comment_type
2022-12-19 14:16:56 -07:00
Eana Hufwe
e48986dd99
Add Custom Post Type support to outbox API
2022-12-19 14:16:55 -07:00
Django Doucet
a6657edd4a
fix pagination
2022-12-19 14:16:55 -07:00
Django Doucet
fe7def2c84
Fix js assets enqueue
2022-12-19 14:16:55 -07:00
Django Doucet
5dbf365c58
associate comments to back compat post
2022-12-19 14:16:54 -07:00
Django Doucet
b1f64f6828
fix file path
2022-12-19 14:16:54 -07:00
Django Doucet
d7c9e10c21
Separate file for Comment processing hooks
2022-12-19 14:16:54 -07:00
Django Doucet
18a8752c6a
move js file to assets/js
2022-12-19 14:16:54 -07:00
Django Doucet
8cce944edd
Post class fix attributes
2022-12-19 14:16:54 -07:00
Django Doucet
1ef6fc21c1
Comments class missing attributes
2022-12-19 14:16:54 -07:00
Django Doucet
f87dbd87be
replace ap_comment_id to reuse replytocom var
2022-12-19 14:16:54 -07:00
Django Doucet
de74f1d70b
Fix send_delete_activity
2022-12-19 14:16:54 -07:00
Django Doucet
c801d072c8
more style fixes
2022-12-19 14:16:54 -07:00
Django Doucet
852634360b
style fix
2022-12-19 14:16:53 -07:00
Django Doucet
055c22e9c3
Add comments view, warnings to migrate page
2022-12-19 14:16:53 -07:00
Django Doucet
8707387ab8
Improve migration UX
2022-12-19 14:16:53 -07:00
Django Doucet
ecbe724b82
code cleanup
2022-12-19 14:16:53 -07:00
Django Doucet
6a69a40295
Fix announce, clarified language
2022-12-19 14:16:53 -07:00
Django Doucet
63bf62402d
regression fix
2022-12-19 14:16:53 -07:00
Django Doucet
aa1b54462e
code cleanup
2022-12-19 14:16:53 -07:00
Django Doucet
be9b74478d
Migrate tools
2022-12-19 14:16:53 -07:00
30a37dab6e
fix webfinger for email identifiers
...
fix #152
2022-12-19 14:16:53 -07:00
Django Doucet
3db5fb2626
bugfix
2022-12-19 14:09:55 -07:00
Django Doucet
5d8e3a9ba9
Migrate / Update script
2022-12-19 14:09:55 -07:00
Django Doucet
e5080f8693
code standards cleanup
2022-12-19 14:09:55 -07:00
Django Doucet
8e1c9ff6bb
Replies Collection, settings, other fixes
2022-12-19 14:09:54 -07:00
Django Doucet
51643142aa
coding standards
2022-12-19 14:09:54 -07:00
Django Doucet
73e6be9782
webfinger_extract remove extra param
2022-12-19 14:09:53 -07:00
Django Doucet
8938c67073
Comments update
2022-12-19 14:09:53 -07:00
6772d300b4
phpcs fixes
2022-12-19 14:09:53 -07:00
8733957963
fix #135
2022-12-19 14:09:52 -07:00
338200b386
fix "Follow" issue
...
fix #133
2022-12-19 14:09:52 -07:00
Alex Kirk
034ba0554d
Don't access transient when receiving a WP_Error
2022-12-15 11:37:00 +01:00
Matthias Pfefferle
e21806d06f
Merge pull request #217 from akirk/fix-typo
2022-12-11 09:23:00 +01:00
Alex Kirk
7e6fbd60b3
Fix typo
2022-12-11 09:16:50 +01:00
Matthias Pfefferle
bf883418ec
fix #214
...
thanks @mexon
2022-12-10 17:58:24 +01:00
Matthias Pfefferle
9869daffeb
Merge branch 'master' into feature-guidance
2022-12-07 18:03:19 +01:00
Matthias Pfefferle
35b2a9512e
fix phpcs issue
2022-12-06 22:18:14 +01:00
Matthias Pfefferle
d5dac9699a
fix user count
...
props @mediaformat
fix #209
2022-12-06 22:17:06 +01:00
Matthias Pfefferle
6042b7bd44
add missing namespace
2022-12-06 17:38:32 +01:00
Matthias Pfefferle
13ea3f09dd
better wording
2022-12-06 17:20:01 +01:00
Matthias Pfefferle
bb9f9d5776
fix broken namespace
2022-12-06 11:03:33 +01:00
Matthias Pfefferle
2a8cd2a54f
use tab instead of different settings pages
2022-12-06 10:58:32 +01:00
Matthias Pfefferle
07d93e809b
fix phpcs issue
2022-12-05 20:55:13 +01:00
Matthias Pfefferle
c6657d2fa8
move method
to webfinger class
2022-12-05 20:48:07 +01:00
Matthias Pfefferle
d6b7cd0235
Merge branch 'master' into feature-guidance
2022-12-05 20:30:04 +01:00
Matthias Pfefferle
229e1cd6ed
Merge pull request #172 from akirk/add-friends-plugin-support
...
Add a parser to the Friends Plugin
2022-12-05 20:28:53 +01:00
Matthias Pfefferle
03704fb74e
use install thickbox
2022-12-05 20:27:04 +01:00
Matthias Pfefferle
c1e128fbcd
some text improvements
...
props @krafit
2022-12-05 17:45:56 +01:00
Matthias Pfefferle
603199c9e8
add recommended plugins
2022-12-02 18:23:56 +01:00
Alex Kirk
a82dea0685
Add unit test
2022-12-02 12:46:42 +01:00
Matthias Pfefferle
19117323f9
Added some debug data
2022-11-22 00:05:17 +01:00
Eana Hufwe
dacbed6614
Add Custom Post Type support to outbox API
2022-11-19 16:01:16 -08:00
Matthias Pfefferle
6232bddcd7
load only an activitypub settings pages
2022-11-19 13:15:21 +01:00
Matthias Pfefferle
30919b1f7b
be more descriptive
2022-11-15 20:50:56 +01:00
Matthias Pfefferle
2f8579cfe1
use ActivityPub instead of Fediverse
...
to be consistent
2022-11-15 20:49:05 +01:00