XML is a file extension, short for eXtendable Markup Language. XML can be used to exchange, share, and store data.

learn more… | top users | synonyms

0
votes
1answer
20 views

Theme ListView text pulled from XML?

I've been working on my msm touch app and got to a point were I get the needed info from an XML file, but it is unthemed, and not as good looking as other "direct" text is. Its black and further to ...
0
votes
0answers
14 views

Is there any good `XPATH` evaluator like `xpathvisualization` in `windows notepad++`

I am using Ubuntu13.04. I am looking for any good XPATH evaluator like xpathvisualization in windows notepad++. I need it to test xpath expression for my XMLs. Can anyone suggest any?
-1
votes
0answers
29 views

How to get child node's text values into varibales [closed]

I have a XML file. I want to search for a node with "id" attribute value and to store its child node's text values into variables. How can I do it with PHP code. Example. <Server> ...
1
vote
3answers
45 views

Print text between two XML tags

Consider the following excerpt from a large XML file: ... <serverName someKey="false" anotherKey="0.05" thirdKey="0.04"> <default>blah.blah.blah</default> <region ...
0
votes
2answers
50 views

Generating menu in ubuntu

I want to change GUI menu of ubuntu. That is, I want to add a icon at the menu (top of screen), after clicking that a menu will be shown and selecting particular option will run a particular ...
9
votes
1answer
198 views

How do I get a list of all applications that can be executed from Ubuntu Dash Home? Is there is some xml file that stores this information?

I'm building an application and it's very important to me to know how to get this information. In LXDE, there is /usr/share/lubuntu/openbox/menu.xml that lists all the programs that can be executed ...
1
vote
0answers
67 views

How do I install CDK - The Chemical Development Kit from the tarball?

If you need to download the tarball yourself to know how to help me here's the file. I'm running 12.10 if it is relevant. I don't know where to go in installing CDK I know the README file says to ...
2
votes
1answer
255 views

How to interpret the contents of ~/.gconf?

Consider a key like /apps/metacity/global_keybindings/cycle_windows I can access this this key using gconf-editor. However when I cd to ~/.gconf/apps/metacity I find an empty file named ...
0
votes
1answer
157 views

xsltproc killed, out of memory

I'm trying to split up a 13GB xml file into small ~50MB xml files with this XSLT style sheet. But this process kills xsltproc after I see it taking up over 1.7GB of memory (that's the total on the ...
2
votes
1answer
103 views

Do dconf use EXI binary XML?

A question came to my mind reading an answer to the question What are the differences between gconf and dconf?. In an reply to the above question, Oli said: Binary read access is far faster than ...
1
vote
1answer
567 views

How do I increase the terminal border size in xfce?

The terminal (and other applications) borders seem to be only 1 pixel wide which makes them almost impossible to click. I am aware that alt+right click has the same function, but I need the borders ...
0
votes
1answer
169 views

ODT via DocBook XML and template XSL becomes XSL-FO to fop to become PDF [closed]

Well I recently asked a question about getting a PDF-file to become an XML-file and then return it to a PDF-file preferably exactly the same as the original, but at least almost the same. I've been ...
2
votes
1answer
366 views

PDF to XML sure thing, but the other way around?

This is my first post so excuse me if I'm breaking any conventions. Well the thing is I'm developing a long term archive system in Ubuntu environment. For different reasons XML is a very strong ...
0
votes
1answer
1k views

Convert XML to CSV shell command line

I have a Large XML file (600MB) and i want to convert that into CSV through Terminal Commands. I have tried to convert the XML into TXT through xml2 command using the following syntax. xml2 < ...
1
vote
1answer
153 views

How can I 'span' images in wallpapers.xml

I'm trying to set up some Backgrounds and wrote a custom xml for that (later on I want to make a custom slideshow of these). The images should span over my dual monitor. $ cat ...
0
votes
0answers
38 views

Reformating xml document [closed]

I have an xml document in the format below: <key>value</key> <key>value</key> <key>value</key> But need to convert it to the following: <tag k='key' ...
0
votes
1answer
466 views

Split a large XML file by a certain node into smaller files

I've got a XML file with 1GB (about 6000000 Lines). The goal is to split this file into smaller .xml files with more or less 20000 lines each. <?xml version="1.0" encoding="UTF-8"?> ...
4
votes
2answers
2k views

How to open .xmi files

Is there any app that can open .xmi files in Ubuntu? File created in the XMI (XML Metadata Interchange) format, an XML file format most commonly used for exchanging UML diagrams; stores model design ...
2
votes
1answer
507 views

Visual editor for xslt

I was wondering if it is included in Ubuntu any GUI tool to support the creation of xslt -- bonus points if it also shows how it transforms some reference xml source as I write the xslt document. ...
3
votes
1answer
452 views

How do I stop XML Copy Editor from crashing when opening a file?

I tried installing XML Copy Editor, and whenever I try to open an XML file in it, it crashes. It seems like it just shuts off, as though I clicked close, because it doesn't generate and error log. How ...
3
votes
1answer
346 views

Load configuration from XML (Xfconf)

I'm trying to make an app to switch your XFCE4-Panel's layout between 3 layouts. I applied those layouts and copied the XML file where Xfconf stores its configuration for the panel. The general idea ...