Changeset 3237927
- Timestamp:
- 02/10/2025 12:43:52 PM (14 months ago)
- Location:
- topirank-integration
- Files:
-
- 32 added
- 3 edited
-
tags/1.0.6 (added)
-
tags/1.0.6/admin (added)
-
tags/1.0.6/admin/admin-page.php (added)
-
tags/1.0.6/admin/menu.php (added)
-
tags/1.0.6/assets (added)
-
tags/1.0.6/assets/css (added)
-
tags/1.0.6/assets/css/topirank-admin-style.css (added)
-
tags/1.0.6/assets/css/topirank-editor-style.css (added)
-
tags/1.0.6/assets/css/topirank-normalize.css (added)
-
tags/1.0.6/assets/css/topirank-post-admin-style.css (added)
-
tags/1.0.6/assets/js (added)
-
tags/1.0.6/assets/js/topirank-admin-scripts.js (added)
-
tags/1.0.6/assets/js/topirank-normalize.js (added)
-
tags/1.0.6/includes (added)
-
tags/1.0.6/includes/api-integration.php (added)
-
tags/1.0.6/includes/create-template.php (added)
-
tags/1.0.6/includes/extract-and-create.php (added)
-
tags/1.0.6/includes/file-upload.php (added)
-
tags/1.0.6/includes/helpers.php (added)
-
tags/1.0.6/includes/init.php (added)
-
tags/1.0.6/includes/process-folders.php (added)
-
tags/1.0.6/includes/register-files.php (added)
-
tags/1.0.6/includes/resource-cleaner.php (added)
-
tags/1.0.6/includes/topirank-template.php (added)
-
tags/1.0.6/includes/update-content-and-seo.php (added)
-
tags/1.0.6/includes/update-functionality.php (added)
-
tags/1.0.6/languages (added)
-
tags/1.0.6/languages/topirank-integration-fr_FR.mo (added)
-
tags/1.0.6/languages/topirank-integration-fr_FR.po (added)
-
tags/1.0.6/languages/topirank-integration.pot (added)
-
tags/1.0.6/readme.txt (added)
-
tags/1.0.6/topirank-integration.php (added)
-
trunk/assets/js/topirank-admin-scripts.js (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/topirank-integration.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
topirank-integration/trunk/assets/js/topirank-admin-scripts.js
r3220350 r3237927 62 62 const skipAllButton = document.querySelector('.skip-all'); 63 63 64 function clickButtonsSequentially(buttons, delay = 100) { 65 let i = 0; 66 67 function clickNextButton() { 68 if (i < buttons.length) { 69 buttons[i].click(); 70 i++; 71 setTimeout(clickNextButton, delay); 72 } 73 } 74 75 clickNextButton(); 76 } 77 64 78 if (updateAllButton) { 65 79 updateAllButton.addEventListener('click', function() { 66 document.querySelectorAll('.update-post').forEach(button => { 67 button.click(); 68 }); 80 const updateButtons = document.querySelectorAll('.update-post'); 81 clickButtonsSequentially(updateButtons, 200); 69 82 }); 70 83 } 71 84 72 85 if (skipAllButton) { 73 86 skipAllButton.addEventListener('click', function() { 74 document.querySelectorAll('.skip-post').forEach(button => { 75 button.click(); 76 }); 87 const skipButtons = document.querySelectorAll('.skip-post'); 88 clickButtonsSequentially(skipButtons, 200); 77 89 }); 78 90 } 91 79 92 80 93 const copyDomainButton = document.getElementById('copyDomainButton'); -
topirank-integration/trunk/readme.txt
r3236026 r3237927 4 4 Requires at least: 6.0 5 5 Tested up to: 6.7.1 6 Stable tag: 1.0. 56 Stable tag: 1.0.6 7 7 Requires PHP: 7.3 8 8 License: GPLv2 or later … … 58 58 == Changelog == 59 59 60 = 1.0.6 = 61 * Improved update posts functionality. 62 60 63 = 1.0.5 = 61 64 * Minor admin panel style fixes. -
topirank-integration/trunk/topirank-integration.php
r3236026 r3237927 3 3 Plugin Name: Topirank Integration 4 4 Description: Plugin for parsing pages 5 Version: 1.0. 55 Version: 1.0.6 6 6 Author: Topirank 7 7 License: GPLv2 or later
Note: See TracChangeset
for help on using the changeset viewer.