Changeset 3389644
- Timestamp:
- 11/04/2025 12:16:36 PM (5 months ago)
- Location:
- sheetdb/trunk
- Files:
-
- 1 added
- 1 deleted
- 2 edited
-
assets/js/sheetdb-handlebars-1.2.5.js (deleted)
-
assets/js/sheetdb-handlebars-1.2.6.js (added)
-
readme.txt (modified) (2 diffs)
-
sheetdb.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
sheetdb/trunk/readme.txt
r3389153 r3389644 6 6 Tested up to: 6.9.0 7 7 Requires PHP: 5.4 8 Stable tag: 1.3. 58 Stable tag: 1.3.6 9 9 License: GPLv2 or later 10 10 … … 30 30 * sort-order - sort in `asc` or `desc` order 31 31 * lazy-loading - If you set this attribute to true, the api call will be executed only when the user reaches the point of the table. If your table is lower on the page this can help reduce request consumption. 32 33 HTML rendering and safety: 34 * Using `{{name}}` renders plain text only. Any HTML is escaped and will not be executed or rendered. 35 * Using `{{html:name}}` allows most safe HTML tags to render (e.g. `a`, `p`, `ul`, `li`, `strong`, `em`, `img` with safe attributes). Potentially dangerous tags and attributes (e.g. `<script>`, `<iframe>`, `<object>`, `<embed>`, inline `on*` event handlers, and `javascript:` URLs) are stripped/sanitized. 36 37 This behavior is intentional for security reasons to prevent XSS and code injection from spreadsheet content. 38 39 Security recommendation: 40 * For best security, configure your SheetDB API as read-only: enable only `GET` and disable `POST`, `PATCH`, and `DELETE`. This prevents anyone from modifying your data via exposed API keys or URLs. 32 41 33 42 Additional information: -
sheetdb/trunk/sheetdb.php
r3389153 r3389644 7 7 Plugin name: SheetDB 8 8 Description: The SheetDB wordpress plugin allows you to easily add content from Google Spreadsheet to your wordpress site. 9 Version: 1.3. 59 Version: 1.3.6 10 10 Author: SheetDB 11 11 Author URI: https://sheetdb.io/ … … 46 46 public function enqueueAssets() 47 47 { 48 wp_enqueue_script('sheetdb-js', plugins_url('assets/js/sheetdb-handlebars-1.2. 5.js', __FILE__));48 wp_enqueue_script('sheetdb-js', plugins_url('assets/js/sheetdb-handlebars-1.2.6.js', __FILE__)); 49 49 } 50 50
Note: See TracChangeset
for help on using the changeset viewer.