Changeset 2509604
- Timestamp:
- 04/05/2021 06:40:11 PM (5 years ago)
- Location:
- documents-from-git/trunk
- Files:
-
- 3 edited
-
documents-git.php (modified) (1 diff)
-
includes/providers/class-gitlab-loader.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
documents-from-git/trunk/documents-git.php
r2386570 r2509604 4 4 * Plugin URI: https://github.com/gis-ops/wordpress-markdown-git 5 5 * Description: Render and cache various document formats in any post/page directly from a remote Git repository of your favorite platform via shortcodes. Currently supported: Markdown, Jupyter Notebooks. 6 * Version: 1.1. 06 * Version: 1.1.1 7 7 * Author: GIS-OPS UG 8 8 * Author URI: https://gis-ops.com -
documents-from-git/trunk/includes/providers/class-gitlab-loader.php
r2386570 r2509604 67 67 $exploded_path_last = explode('/', $exploded_path[1]); 68 68 $branch = $exploded_path_last[1]; 69 $file_path = implode('/', array_slice($exploded_path_last, 2));69 $file_path = urlencode(implode('/', array_slice($exploded_path_last, 2))); 70 70 71 71 $this->domain = $domain; -
documents-from-git/trunk/readme.txt
r2386570 r2509604 7 7 Author: GIS-OPS UG 8 8 Requires at least: 5.0.0 9 Tested up to: 5. 5.19 Tested up to: 5.7.0 10 10 Requires PHP: 7.0 11 Stable tag: 1.1. 012 Version: 1.1. 011 Stable tag: 1.1.1 12 Version: 1.1.1 13 13 License: GPLv3 14 14 License URI: https://github.com/gis-ops/wordpress-markdown-git/blob/master/LICENSE … … 228 228 == Changelog == 229 229 230 = v1.1.1 = 231 * fix Gitlab URLs for subdirectory markdown paths 232 230 233 = v1.1.0 = 231 234 * implement static caching
Note: See TracChangeset
for help on using the changeset viewer.