use of org.dom4j.Attribute in project openolat by klemens.
the class ItemParser method parse.
/**
* @see org.olat.ims.qti.editor.beecom.parser.IParser#parse(org.dom4j.Element)
*/
public Object parse(Element element) {
// assert element.getName().equalsIgnoreCase("item");
Item item = new Item();
Attribute tmp = element.attribute("ident");
if (tmp != null)
item.setIdent(tmp.getValue());
else
item.setIdent("" + CodeHelper.getRAMUniqueID());
tmp = element.attribute("title");
if (tmp != null)
item.setTitle(tmp.getValue());
tmp = element.attribute("label");
if (tmp != null)
item.setLabel(tmp.getValue());
tmp = element.attribute("maxattempts");
if (tmp != null) {
try {
item.setMaxattempts(Integer.parseInt(tmp.getValue()));
} catch (NumberFormatException nfe) {
item.setMaxattempts(0);
}
}
// if editor can't handle type of item, just keep raw XML
if (!(item.getIdent().startsWith(ITEM_PREFIX_SCQ) || item.getIdent().startsWith(ITEM_PREFIX_MCQ) || item.getIdent().startsWith(ITEM_PREFIX_FIB) || item.getIdent().startsWith(ITEM_PREFIX_ESSAY) || item.getIdent().startsWith(ITEM_PREFIX_KPRIM))) {
item.setRawXML(new QTIXMLWrapper(element));
return item;
}
// for render_fib that contains rows attribute and convert them to essay
if (item.getIdent().startsWith(ITEM_PREFIX_FIB) && element.selectNodes(".//render_fib[@rows]").size() > 0) {
item.setIdent(item.getIdent().replaceFirst("FIB", "ESSAY"));
}
// DURATION
Duration duration = (Duration) parserManager.parse(element.element("duration"));
item.setDuration(duration);
// CONTROLS
List itemcontrolsXML = element.elements("itemcontrol");
List itemcontrols = new ArrayList();
for (Iterator i = itemcontrolsXML.iterator(); i.hasNext(); ) {
itemcontrols.add(parserManager.parse((Element) i.next()));
}
if (itemcontrols.size() == 0) {
itemcontrols.add(new Control());
}
item.setItemcontrols(itemcontrols);
// OBJECTIVES
Element mattext = (Element) element.selectSingleNode("./objectives/material/mattext");
if (mattext != null)
item.setObjectives(mattext.getTextTrim());
// QUESTIONS
if (item.getIdent().startsWith(ITEM_PREFIX_SCQ))
item.setQuestion(ChoiceQuestion.getInstance(element));
else if (item.getIdent().startsWith(ITEM_PREFIX_MCQ))
item.setQuestion(ChoiceQuestion.getInstance(element));
else if (item.getIdent().startsWith(ITEM_PREFIX_FIB))
item.setQuestion(FIBQuestion.getInstance(element));
else if (item.getIdent().startsWith(ITEM_PREFIX_ESSAY))
item.setQuestion(EssayQuestion.getInstance(element));
else if (item.getIdent().startsWith(ITEM_PREFIX_KPRIM))
item.setQuestion(ChoiceQuestion.getInstance(element));
// FEEDBACKS
List feedbacksXML = element.elements("itemfeedback");
List feedbacks = new ArrayList();
item.setItemfeedbacks(feedbacks);
Question question = item.getQuestion();
for (Iterator i = feedbacksXML.iterator(); i.hasNext(); ) {
Element el_feedback = (Element) i.next();
if (el_feedback.element("solution") != null) {
// fetch solution
Element el_solution = el_feedback.element("solution");
question.setSolutionText(getMaterialAsString(el_solution));
} else if (el_feedback.element("hint") != null) {
// fetch hint
Element el_hint = el_feedback.element("hint");
question.setHintText(getMaterialAsString(el_hint));
} else {
QTIObject tmpObj = (QTIObject) parserManager.parse(el_feedback);
if (tmpObj != null)
feedbacks.add(tmpObj);
}
}
return item;
}
use of org.dom4j.Attribute in project openolat by klemens.
the class QTIImportProcessor method getMaterials.
@SuppressWarnings("unchecked")
protected List<String> getMaterials(Element el) {
List<String> materialPath = new ArrayList<String>();
// mattext
List<Element> mattextList = el.selectNodes(".//mattext");
for (Element mat : mattextList) {
Attribute texttypeAttr = mat.attribute("texttype");
if (texttypeAttr != null) {
String texttype = texttypeAttr.getValue();
if ("text/html".equals(texttype)) {
String content = mat.getStringValue();
findMaterialInMatText(content, materialPath);
}
}
}
// matimage uri
List<Element> matList = new ArrayList<Element>();
matList.addAll(el.selectNodes(".//matimage"));
matList.addAll(el.selectNodes(".//mataudio"));
matList.addAll(el.selectNodes(".//matvideo"));
for (Element mat : matList) {
Attribute uriAttr = mat.attribute("uri");
String uri = uriAttr.getValue();
materialPath.add(uri);
}
return materialPath;
}
use of org.dom4j.Attribute in project openolat by klemens.
the class QTIExportProcessor method collectResourcesInMatText.
/**
* Collect the file and rewrite the
* @param el
* @param container
* @param materials
* @param paths
*/
private void collectResourcesInMatText(Element el, VFSContainer container, ItemsAndMaterials materials) {
// mattext
@SuppressWarnings("unchecked") List<Element> mattextList = el.selectNodes(".//mattext");
for (Element mat : mattextList) {
Attribute texttypeAttr = mat.attribute("texttype");
String texttype = texttypeAttr.getValue();
if ("text/html".equals(texttype)) {
@SuppressWarnings("unchecked") List<Node> childElList = new ArrayList<Node>(mat.content());
for (Node childEl : childElList) {
mat.remove(childEl);
}
for (Node childEl : childElList) {
if (Node.CDATA_SECTION_NODE == childEl.getNodeType()) {
CDATA data = (CDATA) childEl;
boolean changed = false;
String text = data.getText();
List<String> materialPaths = findMaterialInMatText(text);
for (String materialPath : materialPaths) {
VFSItem matVfsItem = container.resolve(materialPath);
if (matVfsItem instanceof VFSLeaf) {
String exportUri = generateExportPath(materials.getPaths(), matVfsItem);
materials.addMaterial(new ItemMaterial((VFSLeaf) matVfsItem, exportUri));
text = text.replaceAll(materialPath, exportUri);
changed = true;
}
}
if (changed) {
mat.addCDATA(text);
} else {
mat.add(childEl);
}
} else {
mat.add(childEl);
}
}
}
}
}
use of org.dom4j.Attribute in project openolat by klemens.
the class QTIExportProcessor method collectResourcesInMatMedias.
@SuppressWarnings("unchecked")
private void collectResourcesInMatMedias(Element el, VFSContainer container, ItemsAndMaterials materials) {
// matimage uri
List<Element> matList = new ArrayList<Element>();
matList.addAll(el.selectNodes(".//matimage"));
matList.addAll(el.selectNodes(".//mataudio"));
matList.addAll(el.selectNodes(".//matvideo"));
for (Element mat : matList) {
Attribute uriAttr = mat.attribute("uri");
String uri = uriAttr.getValue();
VFSItem matVfsItem = container.resolve(uri);
if (matVfsItem instanceof VFSLeaf) {
String exportUri = generateExportPath(materials.getPaths(), matVfsItem);
ItemMaterial iMat = new ItemMaterial((VFSLeaf) matVfsItem, exportUri);
materials.addMaterial(iMat);
mat.addAttribute("uri", exportUri);
}
}
}
use of org.dom4j.Attribute in project atlas by alibaba.
the class ManifestFileUtils method main.
public static void main(String[] args) throws DocumentException {
File manifest = new File("/Users/lilong/.gradle/caches/transforms-1/files-1.1/recyclerview-v7-25.3.1.aar/1046cd92fdcfb77468417d61ed21e0db/AndroidManifest.xml");
Document document = XmlHelper.readXml(manifest);
Element element = document.getRootElement();
Attribute attribute = element.attribute("meta-data");
}
Aggregations