fix build problem with message bundles, changed list to map in wizard config, added null checks when using custom types and fixed topic.gif

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2560 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Gavin Cornwell
2006-03-21 15:45:04 +00:00
parent ebf71bf211
commit 6d7516ecd1
6 changed files with 66 additions and 52 deletions

View File

@@ -57,8 +57,15 @@
<fileset dir="${dir.config.webclient}" excludes="**/*.sample" /> <fileset dir="${dir.config.webclient}" excludes="**/*.sample" />
</copy> </copy>
<!-- clean up previously generated properties files -->
<delete>
<fileset dir="${dir.assemble}/WEB-INF/classes/alfresco/messages">
<include name="*_en_US.properties" />
</fileset>
</delete>
<copy todir="${dir.assemble}/WEB-INF/classes/alfresco/messages"> <copy todir="${dir.assemble}/WEB-INF/classes/alfresco/messages">
<fileset dir="${dir.assemble}/WEB-INF/classes/alfresco/messages"/> <fileset dir="${dir.assemble}/WEB-INF/classes/alfresco/messages"/>
<mapper type="glob" from="*.properties" to="*_en_US.properties"/> <mapper type="glob" from="*.properties" to="*_en_US.properties"/>
</copy> </copy>

View File

@@ -584,20 +584,23 @@ public class AdvancedSearchBean
for (String type : types) for (String type : types)
{ {
QName idQName = Repository.resolveToQName(type); QName idQName = Repository.resolveToQName(type);
TypeDefinition typeDef = dictionaryService.getType(idQName); if (idQName != null)
if (typeDef != null && dictionaryService.isSubClass(typeDef.getName(), ContentModel.TYPE_CONTENT))
{ {
// try and get label from the dictionary TypeDefinition typeDef = dictionaryService.getType(idQName);
String label = typeDef.getTitle();
// else just use the localname if (typeDef != null && dictionaryService.isSubClass(typeDef.getName(), ContentModel.TYPE_CONTENT))
if (label == null)
{ {
label = idQName.getLocalName(); // try and get label from the dictionary
String label = typeDef.getTitle();
// else just use the localname
if (label == null)
{
label = idQName.getLocalName();
}
this.contentTypes.add(new SelectItem(idQName.toString(), label));
} }
this.contentTypes.add(new SelectItem(idQName.toString(), label));
} }
} }

View File

@@ -508,38 +508,41 @@ public abstract class BaseContentWizard extends AbstractWizardBean
for (ConfigElement child : typesCfg.getChildren()) for (ConfigElement child : typesCfg.getChildren())
{ {
QName idQName = Repository.resolveToQName(child.getAttribute("name")); QName idQName = Repository.resolveToQName(child.getAttribute("name"));
TypeDefinition typeDef = this.dictionaryService.getType(idQName); if (idQName != null)
if (typeDef != null &&
this.dictionaryService.isSubClass(typeDef.getName(), ContentModel.TYPE_CONTENT))
{ {
// look for a client localized string TypeDefinition typeDef = this.dictionaryService.getType(idQName);
String label = null;
String msgId = child.getAttribute("displayLabelId");
if (msgId != null)
{
label = Application.getMessage(context, msgId);
}
// if there wasn't an externalized string look for one in the config if (typeDef != null &&
if (label == null) this.dictionaryService.isSubClass(typeDef.getName(), ContentModel.TYPE_CONTENT))
{ {
label = child.getAttribute("displayLabel"); // look for a client localized string
String label = null;
String msgId = child.getAttribute("displayLabelId");
if (msgId != null)
{
label = Application.getMessage(context, msgId);
}
// if there wasn't an externalized string look for one in the config
if (label == null)
{
label = child.getAttribute("displayLabel");
}
// if there wasn't a client based label try and get it from the dictionary
if (label == null)
{
label = typeDef.getTitle();
}
// finally, just use the localname
if (label == null)
{
label = idQName.getLocalName();
}
this.objectTypes.add(new SelectItem(idQName.toString(), label));
} }
// if there wasn't a client based label try and get it from the dictionary
if (label == null)
{
label = typeDef.getTitle();
}
// finally, just use the localname
if (label == null)
{
label = idQName.getLocalName();
}
this.objectTypes.add(new SelectItem(idQName.toString(), label));
} }
} }

View File

@@ -713,7 +713,7 @@ public class WebClientConfigTest extends BaseTest
assertEquals("description-id", "advanced_space_details_description", wizard.getDescriptionId()); assertEquals("description-id", "advanced_space_details_description", wizard.getDescriptionId());
assertNull("title should be null", wizard.getTitle()); assertNull("title should be null", wizard.getTitle());
assertNull("description should be null", wizard.getDescription()); assertNull("description should be null", wizard.getDescription());
List<StepConfig> steps = wizard.getSteps(); List<StepConfig> steps = wizard.getStepsAsList();
assertNotNull("steps should not be null", steps); assertNotNull("steps should not be null", steps);
// retrieve step1 information and check it is correct // retrieve step1 information and check it is correct

View File

@@ -158,7 +158,7 @@ public class WizardsConfigElement extends ConfigElementAdapter
{ {
protected String name; protected String name;
protected String managedBean; protected String managedBean;
protected List<StepConfig> steps = new ArrayList<StepConfig>(4); protected Map<String, StepConfig> steps = new LinkedHashMap<String, StepConfig>(4);
public WizardConfig(String name, String bean, public WizardConfig(String name, String bean,
String title, String titleId, String title, String titleId,
@@ -185,7 +185,7 @@ public class WizardsConfigElement extends ConfigElementAdapter
public void addStep(StepConfig step) public void addStep(StepConfig step)
{ {
this.steps.add(step); this.steps.put(step.getName(), step);
} }
public int getNumberSteps() public int getNumberSteps()
@@ -193,25 +193,26 @@ public class WizardsConfigElement extends ConfigElementAdapter
return this.steps.size(); return this.steps.size();
} }
public List<StepConfig> getSteps() public Map<String, StepConfig> getSteps()
{ {
return this.steps; return this.steps;
} }
public StepConfig getStepByName(String name) public List<StepConfig> getStepsAsList()
{ {
StepConfig step = null; List<StepConfig> stepList = new ArrayList<StepConfig>(this.steps.size());
for (StepConfig currentStep : this.steps) for (StepConfig stepCfg : this.steps.values())
{ {
if (currentStep.getName().equals(name)) stepList.add(stepCfg);
{
step = currentStep;
break;
}
} }
return step; return stepList;
}
public StepConfig getStepByName(String name)
{
return this.steps.get(name);
} }
/** /**

Binary file not shown.

Before

Width:  |  Height:  |  Size: 581 B

After

Width:  |  Height:  |  Size: 1.4 KiB