XML.orgXML.org
FOCUS AREAS |XML-DEV |XML.org DAILY NEWSLINK |REGISTRY |RESOURCES |ABOUT
OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index]
Re: [xml-dev] Engineering versus Science, Anecdote versus Evidence... [Was: Designing an experiment to gather evidence on approaches todesigning web services]

What is astonishing is how bad XML document designs frequently are.  Its as though people make up a schema and never look at the documents that they define or at the documents that are generated based on those schemas.  The android schema below is a good example.  Another example is one that I was given by some developers a few months ago.  They were frankly puzzled by what they were being sent by a partner organisation and by how long it was taking to process.  It had thousands of distinct namespace prefixes and hundreds of distinct namespaces.  There was a separate namespace for every element and it was not a small document.  

The qualities of documents: their ease of understanding, the ease of writing the things, maximised simplicity, maximised performance, just general aesthetics, all seem to get lost at times when things are expected to just technically work.  Addressing this type of design madness through rules (an engineering approach) would require definition of all possible pathologies so that rules could be defined.  The role of aesthetics in engineering seems to be less well understood than the role of aesthetics in the traditional sciences, but plugging into the aesthetics of what we do seems to be the simplest answer sometimes. 

On Wed, Jan 4, 2012 at 9:10 PM, Andrew Welch <andrew.j.welch@gmail.com> wrote:
... snip...
 
To bring it kind of back on topic, in Android (which uses Java so
would be the better choice for your friend) you can use XML for
specifying the layout, however whoever designed it made a bad mistake
- the elements are in no namespace, but the attributes are in the
android namespace... so you end up with the 'android' prefix
everywhere:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
             android:layout_width="fill_parent"
             android:layout_height="fill_parent"
             android:orientation="vertical" >
   <TextView android:id="@+id/text"
             android:layout_width="wrap_content"
             android:layout_height="wrap_content"
             android:text="Hello, I am a TextView" />
   <Button android:id="@+id/button"
           android:layout_width="wrap_content"
           android:layout_height="wrap_content"
           android:text="Hello, I am a Button" />
</LinearLayout>

...so as you can imagine, the xml layout isn't very popular.



[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index]


News | XML in Industry | Calendar | XML Registry
Marketplace | Resources | MyXML.org | Sponsors | Privacy Statement

Copyright 1993-2007 XML.org. This site is hosted by OASIS