- π§π·Brazil rafmagsouResolve extra issues with most recent 4.x version 
- π§π·Brazil rafmagsouFix, error when entity generation tries to get file entity 
- π©πͺGermany gbyte BerlinPlease create a merge request so the review/merging process is smoother. 
- π§π·Brazil rafmagsouSorry, I'll sooner, first I need to reach a fully version of patch 100% funcional and tested 
- Just adding a new verification. In case that the field "link_count" exists, the hook update 8305 will not be runned again, since this hook is beeing called on hook 8407 and in some cases this made the update fail. 
- Removed the truncate() from the code on #48, this way will not be necessary run the sitemap build after the hook execution 
- last updateover 2 years ago 32 pass
- last updateover 2 years ago 32 pass
- πΊπΈUnited States emanatonReroll of the excellent work in #49 for the 4.1.7 branch: 
- πΊπΈUnited States emanatonReroll of the excellent work in #49 for the 4.1.7 branch, this time without bugs!!! 
- π§π¬Bulgaria vflirtThank you for working on this however it is not working. 
 In patch 40 there was added section to support "overrides_entity_type" to be array however in 43 and after that was removed. As a result of that removal the isOverwrittenForEntityType for file is always false because the check $plugin['settings']['overrides_entity_type'] === $entity_type_name will always fail. I will provide updated patch soon.
- π§π·Brazil murilohpThe #51 works great but it has some unnecessary files like .idea/php.xml, .idea/workspace.xml, .idea/vcs.xml, this new patch removes them making it easier to review. 
- πΊπΈUnited States emanatonHa! Sorry about that. Thanks for the cleanup of me file-piddle there, murilohp. 
- πΊπΈUnited States mikepadiernosThe patch from #53 had a slight issue that ended up redeclaring function simple_sitemap_update_8408()so I ended up changing the second asfunction simple_sitemap_update_8409().
 Other than that everything else remains the same to #53
- last updateover 1 year ago 32 pass
- πΊπΈUnited States newme154@mikepadiernos i'm still getting the 8408 issue here. Could not apply patch! Skipping. The error was: The " https://www.drupal.org/files/issues/2024-04-01/simple-sitemap-files-supp... β " file could not be downloaded (HTTP/1.1 404 Not Found) 
- πΊπΈUnited States emanaton@newme154 - It appears that your error is due to an incorrect file name; you have 55at the end instead of the53that @mikepadiernos used. i.e. What you've pasted here show the file ashttps://www.drupal.org/files/issues/2024-04-01/simple-sitemap-files-support-for-version-4-2947456-55.patch, but it should have beenhttps://www.drupal.org/files/issues/2024-04-01/simple-sitemap-files-support-for-version-4-2947456-53.patch(the later being the link from comment #55).
- πΊπΈUnited States mikepadiernos@newme154 here's the proper path https://www.drupal.org/files/issues/2024-04-16/simple-sitemap-files-support-for-version-4-2947456-55.patch
 The date on your path was wrong and should be 2024-04-16 not 2024-04-01
- πΊπΈUnited States eukHere is the re-roll, however I haven't had a chance to test it yet 
- πΊπΈUnited States vetchneonsI get an error when I try to set a mimetype that has a '.' in it in config. Drupal\Core\Config\ConfigValueException: application/vnd.ms-excel.addin.macroEnabled.12 key contains a dot which is not supported. in Drupal\Core\Config\ConfigBase->validateKeys() (line 209 of core/lib/Drupal/Core/Config/ConfigBase.php).This appears to be happening in the filterFileMimeTypesOptionsin the patch.I don't know if this is the best approach, but could we change the '.' in the config key to something like a '_' instead so that the config can save? private function filterFileMimeTypesOptions(array $types_allowed = [], $by_extension = TRUE) { $all_file_types = $this->getAllFileMimeTypesOptions(); $mimetypes_key = preg_replace('/\./', '_', $all_file_types['mimetypes']); if (empty($types_allowed)) { $options = ['' => $this->t('- All types -')]; $options += array_combine($mimetypes_key, $all_file_types['mimetypes']); return $options; } if ($by_extension) { return $this->filterFileMimeTypesOptionsByExtension($all_file_types, $types_allowed); } return $this->filterFileMimeTypesOptionsByMimeType($all_file_types, $types_allowed); }
- πΊπΈUnited States vetchneonsThis is breaking with custom forms that extend EntityForm. I'm not sure where this should be addressed, but this breaks the loading of the access_scheme forms for workbench_access. Specifically this line, https://git.drupalcode.org/project/simple_sitemap/-/merge_requests/114/d... I created the MR from the existing patch. I'm not sure I have time to dedicate to working on this issue. Does anyone have any suggestions for fixing this? I'm not sure just checking if the method getBundleEntityType exists is enough. 
- π§π·Brazil murilohpJust rebased the branch with 4.x and also made it compatible with Drupal 11, apparently the mime type changed the API and now the MR is compatible. The following patch was tested on version 4.2.2 and Drupal 11.2. 
- πΊπΈUnited States avattikonda BostonThe patch available here https://www.drupal.org/files/issues/2024-04-16/simple-sitemap-files-supp... β is no longer compatible with Drupal core version 10.5.0 and Simple Sitemap module version 4.2.2. Iβve made the necessary adjustments, and here is the updated patch that works with: Drupal core 10.5.0 
 Simple Sitemap 4.2.2https://www.drupal.org/files/issues/2025-06-26/simple-sitemap-files-supp... β 
- πΊπΈUnited States rgristrophJust a note that the patch in #67, https://www.drupal.org/files/issues/2025-06-26/simple-sitemap-files-supp... β requires Drupal 11 and doesn't work with 10.5. 
- π§π·Brazil murilohpThis patch has a fix from #66, it works with drupal 11 and simple_sitemap 4.2.2 
- The patch file in #66 and #70 includes this line: - $entity_settings = $entity_settings[$this->sitemap->id()]; - within /src/Plugin/simple_sitemap/UrlGenerator/EntityUrlGenerator.php which seems entirely unnecessary and breaks the function.