1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-24 10:27:10 +02:00

Clipper: Fixes #809: Saves full URL with note, including query parameters

This commit is contained in:
Laurent Cozic 2018-09-22 17:41:09 +01:00
parent afb8b92528
commit e7a12bb0dd
3 changed files with 6 additions and 1 deletions

View File

@ -80,7 +80,7 @@
title: title,
html: html,
base_url: baseUrl(),
url: location.origin + location.pathname,
url: location.origin + location.pathname + location.search,
parent_id: command.parent_id,
};
}

View File

@ -339,6 +339,10 @@ for (let portToTest = 41184; portToTest <= 41194; portToTest++) {
<td>If <code>body_html</code> is provided and contains relative URLs, provide the <code>base_url</code> parameter too so that all the URLs can be converted to absolute ones. The base URL is basically where the HTML was fetched from, minus the query (everything after the &#39;?&#39;). For example if the original page was <code>https://stackoverflow.com/search?q=%5Bjava%5D+test</code>, the base URL is <code>https://stackoverflow.com/search</code>.</td>
</tr>
<tr>
<td>source_url</td>
<td>The <em>full URL</em> of the page.</td>
</tr>
<tr>
<td>image_data_url</td>
<td>An image to attach to the note, in <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/Data_URIs">Data URL</a> format.</td>
</tr>

View File

@ -87,6 +87,7 @@ source_url | The URL the note comes from
author | The note author
parent_id | The notebook (ID) to move the note to
base_url | If `body_html` is provided and contains relative URLs, provide the `base_url` parameter too so that all the URLs can be converted to absolute ones. The base URL is basically where the HTML was fetched from, minus the query (everything after the '?'). For example if the original page was `https://stackoverflow.com/search?q=%5Bjava%5D+test`, the base URL is `https://stackoverflow.com/search`.
source_url | The *full URL* of the page.
image_data_url | An image to attach to the note, in [Data URL](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/Data_URIs) format.
crop_rect | If an image is provided, you can also specify an optional rectangle that will be used to crop the image. In format `{ x: x, y: y, width: width, height: height }`