mirror of
https://github.com/friendica/friendica
synced 2024-11-08 18:22:54 +00:00
spelling: attachment
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
parent
2da2a38d48
commit
c7b358f446
4 changed files with 16 additions and 16 deletions
|
@ -20,7 +20,7 @@ javascript:(function(){f='https://myfriend.myfami.ly/bookmarklet/?url='+encodeUR
|
||||||
|
|
||||||
*Please copy the whole script, not only the part mentioned here!*
|
*Please copy the whole script, not only the part mentioned here!*
|
||||||
|
|
||||||
Then create a new bookmark, give it a name like "share2Friendica" and paste the script in the address field. Save it. Now you can click on that bookmarklet every time you want to share a website, you are currently reading. A new small window will open where title is prefilled and the website you want to share is put as attachement in the body of the new post.
|
Then create a new bookmark, give it a name like "share2Friendica" and paste the script in the address field. Save it. Now you can click on that bookmarklet every time you want to share a website, you are currently reading. A new small window will open where title is prefilled and the website you want to share is put as attachment in the body of the new post.
|
||||||
|
|
||||||
## Additional notes if it doesn't work
|
## Additional notes if it doesn't work
|
||||||
|
|
||||||
|
|
|
@ -27,7 +27,7 @@ use Friendica\Core\Storage\Exception\StorageException;
|
||||||
/**
|
/**
|
||||||
* Interface for writable storage backends
|
* Interface for writable storage backends
|
||||||
*
|
*
|
||||||
* Used for storages with CRUD functionality, mainly used for user data (e.g. photos, attachements).
|
* Used for storages with CRUD functionality, mainly used for user data (e.g. photos, attachments).
|
||||||
* There's only one active writable storage possible. This type of storage is selectable by the current administrator.
|
* There's only one active writable storage possible. This type of storage is selectable by the current administrator.
|
||||||
*/
|
*/
|
||||||
interface ICanWriteToStorage extends ICanReadFromStorage
|
interface ICanWriteToStorage extends ICanReadFromStorage
|
||||||
|
|
|
@ -55,7 +55,7 @@ class Status extends BaseFactory
|
||||||
/** @var Card */
|
/** @var Card */
|
||||||
private $mstdnCardFactory;
|
private $mstdnCardFactory;
|
||||||
/** @var Attachment */
|
/** @var Attachment */
|
||||||
private $mstdnAttachementFactory;
|
private $mstdnAttachmentFactory;
|
||||||
/** @var Error */
|
/** @var Error */
|
||||||
private $mstdnErrorFactory;
|
private $mstdnErrorFactory;
|
||||||
/** @var Poll */
|
/** @var Poll */
|
||||||
|
@ -70,7 +70,7 @@ class Status extends BaseFactory
|
||||||
Mention $mstdnMentionFactory,
|
Mention $mstdnMentionFactory,
|
||||||
Tag $mstdnTagFactory,
|
Tag $mstdnTagFactory,
|
||||||
Card $mstdnCardFactory,
|
Card $mstdnCardFactory,
|
||||||
Attachment $mstdnAttachementFactory,
|
Attachment $mstdnAttachmentFactory,
|
||||||
Error $mstdnErrorFactory,
|
Error $mstdnErrorFactory,
|
||||||
Poll $mstdnPollFactory,
|
Poll $mstdnPollFactory,
|
||||||
ContentItem $contentItem
|
ContentItem $contentItem
|
||||||
|
@ -81,7 +81,7 @@ class Status extends BaseFactory
|
||||||
$this->mstdnMentionFactory = $mstdnMentionFactory;
|
$this->mstdnMentionFactory = $mstdnMentionFactory;
|
||||||
$this->mstdnTagFactory = $mstdnTagFactory;
|
$this->mstdnTagFactory = $mstdnTagFactory;
|
||||||
$this->mstdnCardFactory = $mstdnCardFactory;
|
$this->mstdnCardFactory = $mstdnCardFactory;
|
||||||
$this->mstdnAttachementFactory = $mstdnAttachementFactory;
|
$this->mstdnAttachmentFactory = $mstdnAttachmentFactory;
|
||||||
$this->mstdnErrorFactory = $mstdnErrorFactory;
|
$this->mstdnErrorFactory = $mstdnErrorFactory;
|
||||||
$this->mstdnPollFactory = $mstdnPollFactory;
|
$this->mstdnPollFactory = $mstdnPollFactory;
|
||||||
$this->contentItem = $contentItem;
|
$this->contentItem = $contentItem;
|
||||||
|
@ -206,7 +206,7 @@ class Status extends BaseFactory
|
||||||
$tags = $this->mstdnTagFactory->createFromUriId($uriId);
|
$tags = $this->mstdnTagFactory->createFromUriId($uriId);
|
||||||
if ($item['has-media']) {
|
if ($item['has-media']) {
|
||||||
$card = $this->mstdnCardFactory->createFromUriId($uriId);
|
$card = $this->mstdnCardFactory->createFromUriId($uriId);
|
||||||
$attachments = $this->mstdnAttachementFactory->createFromUriId($uriId);
|
$attachments = $this->mstdnAttachmentFactory->createFromUriId($uriId);
|
||||||
} else {
|
} else {
|
||||||
$card = new \Friendica\Object\Api\Mastodon\Card([]);
|
$card = new \Friendica\Object\Api\Mastodon\Card([]);
|
||||||
$attachments = [];
|
$attachments = [];
|
||||||
|
@ -250,7 +250,7 @@ class Status extends BaseFactory
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach ($this->mstdnAttachementFactory->createFromUriId($shared_uri_id) as $attachment) {
|
foreach ($this->mstdnAttachmentFactory->createFromUriId($shared_uri_id) as $attachment) {
|
||||||
if (!in_array($attachment, $attachments)) {
|
if (!in_array($attachment, $attachments)) {
|
||||||
$attachments[] = $attachment;
|
$attachments[] = $attachment;
|
||||||
}
|
}
|
||||||
|
|
|
@ -500,7 +500,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Convert attachmant bbcode into an array.
|
* Convert attachment bbcode into an array.
|
||||||
*
|
*
|
||||||
* @param {string} content Text content with the attachment bbcode.
|
* @param {string} content Text content with the attachment bbcode.
|
||||||
* @returns {object || null}
|
* @returns {object || null}
|
||||||
|
|
Loading…
Reference in a new issue