Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Documentation: add how to grab a plugin_id #214

Merged
merged 1 commit into from
Mar 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added docs/static/repository_plugins_plugin_id.webp
Binary file not shown.
11 changes: 11 additions & 0 deletions docs/usage/profile.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,24 @@ QDT expects to find this file in the folder of each profile stored in the source

## Publish them

> TO DO

## Good practices and recomendations

- do not store the entire profile folder, but only files that contans something specific to your profile
- keep only the lines of `*.ini` files which are custom to your profile:
- QGIS will fill them automatically if needed
- it reduces the surface of possible conflicts when dealing to upgrade a profile

## How to get a plugin ID

1. Open the repository in your browser. Example for the official set on QGIS 3.28: <https://plugins.qgis.org/plugins/plugins.xml?qgis=3.28>
1. Open the RAW mode (or source), typing `Ctrl + U` or right-click and select `View page source`
1. Use your browser search `Ctrl + F` to look for the plugin you want
1. Grab the `plugin_id` attribute:

![Plugin ID into official repository - Example QuickOSM](/static/repository_plugins_plugin_id.webp)

----

## Model definition
Expand Down