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

generate sitemap.xml per site and per access public #188

Open
wants to merge 25 commits into
base: master-ibexa-4.5
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
bb3f0d4
generate sitemap.xml per siteAccess && inject the multilingual and mu…
mohamed-larbi-jebari May 24, 2024
b00a797
Ibexa 4.6 seo (#190)
erdnaxelaweb Jun 4, 2024
7238354
generate sitemap.xml per siteAccess && inject the multilingual and mu…
mohamed-larbi-jebari Jun 4, 2024
93d8588
fix: issue when () are used in metas on Ibexa 4.6
Jun 24, 2024
a15adb6
fix: issue when () are used in metas on Ibexa 4.6
Jun 24, 2024
2b50789
generate sitemap.xml per siteAccess && inject the multilingual and mu…
mohamed-larbi-jebari Jun 25, 2024
370ac91
fix: CS
Jun 27, 2024
37e66d3
feat: switch ddev to node 18
Jun 27, 2024
1dbee60
Add ibexa_menu.*.yml translation file
RemyNovactive Jun 27, 2024
d194f99
Merge pull request #196 from Novactive/ezmenumanagerbundle/ibexa-4-6/…
erdnaxelaweb Jun 28, 2024
37fc577
feat: add support for siteaccess aware configuration
Jun 28, 2024
36969f0
Merge pull request #198 from Novactive/feat-SA-aware-saml-config
erdnaxelaweb Jun 28, 2024
39d78d2
Add ibexa_menu.*.yml translation file
RemyNovactive Jun 28, 2024
cff4695
novactive/ezsolrsearchextrabundle
RemyNovactive Jun 28, 2024
83f900f
Merge pull request #200 from Novactive/ezsolrsearchextrabundle/ibexa-…
erdnaxelaweb Jul 1, 2024
11472ff
Merge pull request #199 from Novactive/ibexatranslationuibundle/ibexa…
erdnaxelaweb Jul 1, 2024
7132731
Manage source url with site Access in UrlWildcardRouter
mohamed-larbi-jebari Jul 9, 2024
2671594
fix Ibexa 4.6 version in CI as later skeleton require PHP > 8.1
Jul 23, 2024
11299ac
Merge pull request #203 from Novactive/fix-ci
erdnaxelaweb Jul 23, 2024
5334fe7
fix: issue with filter tag removing `(` `)` from value
Jul 23, 2024
a84773e
Merge pull request #202 from Novactive/fix-solr-filter-tag
erdnaxelaweb Jul 23, 2024
b4e4f94
fix: issue with redirect where source is a siteaccess with en URI match
Jul 26, 2024
1afa9d1
Merge remote-tracking branch 'origin/fix-redirect' into sitemapxml_mu…
Jul 26, 2024
9ab75f9
Merge remote-tracking branch 'origin/master' into sitemapxml_multisit…
mohamed-larbi-jebari Sep 25, 2024
4ed17c2
Migration ibexa 4.6.11 && fix error $fieldTypeRegistry must not be ac…
mohamed-larbi-jebari Sep 26, 2024
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
2 changes: 1 addition & 1 deletion .ddev/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ web_environment:
- PANTHER_CHROME_ARGUMENTS='--disable-dev-shm-usage --ignore-certificate-errors'
- PANTHER_NO_SANDBOX=1
- PANTHER_NO_HEADLESS=0
nodejs_version: "16"
nodejs_version: "18"
webimage_extra_packages:
- pngquant
- jpegoptim
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/main-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ jobs:
strategy:
matrix:
include:
- ibexa_version: 4.6.7
php: 8.1
node: 18.x
- ibexa_version: 4.5.*
php: 8.1
node: 14.x
Expand Down
2 changes: 1 addition & 1 deletion bin/ci-should
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ $requiredIbexaVersion = $config['required_ibexa_version'] ?? null;
if ( $requiredIbexaVersion && $ibexaVersion )
{
if(!Semver::satisfies( $ibexaVersion, $requiredIbexaVersion )) {
exit( 0 );
exit( 1 );
}
}
exit( ( $config[$action] ?? false ) === true ? 0 : 1 );
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
menu_manager: Menu manager
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
menu_manager: Gestion des menus
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public function listAction(
$urlExists = $urlWildcardService->translate($destination);
$errors[] = $translator->trans('nova.redirect.create.exists', ['url' => $destination], 'redirect');
} catch (Exception $e) {
$e->getMessage();
$errors[] = $e->getMessage();
}

if (('' !== $source || '' !== $destination) && ($source !== $destination) && (null === $urlExists)) {
Expand Down Expand Up @@ -109,7 +109,7 @@ public function listAction(
}

$page = $request->query->get('page') ?? 1;
$pagerfanta = new Pagerfanta(new ArrayAdapter($urlWildcardService->loadAll()));
$pagerfanta = new Pagerfanta(new ArrayAdapter((array) $urlWildcardService->loadAll()));

$pagerfanta->setMaxPerPage(self::URL_LIMIT);
$pagerfanta->setCurrentPage(min($page, $pagerfanta->getNbPages()));
Expand Down
Loading
Loading