Explorer Plugin 3.7
Description
The Explorer Plugin provides a Portlet Explorer to browse Publication in a similar way of what you could find using the Windows explorer or the Mac OS Finder.
This version requires JCMS 9 SP2.
Screenshots
Installation
- Install plugin
- Follow plugin's documentation
- Ask all yours question on plugin's dedicated forum in JaliosXperience
This plugin requires JCMS 9.1 SP2 or above.
Changes
Suivre le lien suivant : http://issues.jalios.com/browse/EXPLORER?report=com.atlassian.jira.plugin.system.project:changelog-panel, pour consulter le suivi des anomalies et des évolutions par rapport aux précédentes versions.
FAQ
La version 3.2 ajoute de nouvelles options d'affichage pour la colonne de gauche de l'explorateur en proposant de choisir le mode d'affichage de chaque bloc entre "affiché", "plié", et "caché".
Afin de convertir la configuration antérieure en son nouveau format vous pouvez exécuter le script perl suivant :
#!/usr/bin/perl
$storeFilename = shift @ARGV;
open(storeFile, $storeFilename) || die "Cannot open store file '$storeFilename': $!\n";
while(<storeFile>) {
my $line = $_;
$line =~ s/^(<generated.PortletExplorer .* )showNavigation="true"/$1navigationState="show"/g;
# $line =~ s/^(<generated.PortletExplorer .* )showNavigation="false"/$1navigationState="collapse"/g;
$line =~ s/^(<generated.PortletExplorer .* )showNavigation="false"/$1navigationState="hide"/g;
$line =~ s/^(<generated.PortletExplorer .* )showSearchOptions="true"/$1searchOptionsState="show"/g;
# $line =~ s/^(<generated.PortletExplorer .* )showSearchOptions="false"/$1searchOptionsState="collapse"/g;
$line =~ s/^(<generated.PortletExplorer .* )showSearchOptions="false"/$1searchOptionsState="hide"/g;
print $line;
}
Commande pour l'appliquer sur le store (application arrêtée)
$ ./convertPortletExplorerDisplayOptions.pl store.xml > newStore.xml