SGMLXML.net A place for SGML and XML application developers.

April 7, 2005

Avant Broswer

Filed under: Software — cangione @ 1:45 am




For those of us stuck using Internet Explorer for some things, I suggest using the "Avant Browser". It is the Internet Explorer window embedded in something that actually can do Tab Browsing. I've been fairly happy with it. Still prefer Firefox and that set of commands.

CA

Reinventing the Wheel by Steve Kemper

Filed under: Books — cangione @ 1:35 am




"Reinventing the Wheel" by Steve Kemper. Describes the history of the Segway Human Transporter. Having worked with products from inception to manufacturing, it gave me a good laugh. Also gives good insight into the inventors mind.

CA

CSS maxheight and maxwidth properties

Filed under: CSS — cangione @ 1:35 am




Internet Explorer does not support the maxheight and maxwidth properties of CSS2. Firefox supports them fine.

CA

April 4, 2005

Customizing XML Application Behavior with Java and Type based Business Objects (TBOs) – A Case Study

Filed under: Software — @ 3:11 pm






Documentum XML Applications control how XML documents integrate with a Documentum docbase. It is sometimes necessary to customize these simple operations to apply business logic and enforce object-specific business rules that can be implemented only by developing additional code. Article discusses writing Java code that can be called from within an XML configuration file and implement a TBO.


http://www.flatironssolutions.com/Developers.htm

April 1, 2005

Firefox History

Filed under: Software — cangione @ 1:20 am




As a big supporter or Firefox I really enjoyed this history. I found the article via Slasdot.
http://www.flexbeta.net/main/printarticle.php?id=89

CA

March 31, 2005

Convert RSS Feed to SharePoint DWP File

Filed under: Uncategorized — @ 5:52 pm






http://x5.tsiokos.com/posts/2005/01/11/wss-rss/

March 29, 2005

In the Beginning was the Command Line by Neal Stephenson

Filed under: Books — @ 4:36 pm






Great book and a quick read. Talks about the operating system business of the past and the future. Still very relevant.


http://www.cryptonomicon.com/beginning.html

March 24, 2005

Setup XML for Arbortext Epic Editing and Direct Web Browser Display using CSS

Filed under: CSS,Software,XML — cangione @ 4:38 pm

There are times when working with XML documents that it would be nice
to be able to style the document directly. To do this with CSS here is
a recipe that works with Internet Explorer, Firefox and the Arbortext
Epic Editor.

  1. Add a css stylesheet reference in your XML document.
    <?xml-stylesheet
    href="docbook.css" type="text/css"?>

  2. Modify you XML document to hide the doctype declaration in a
    comment. This stops IE from looking for it but still allows Epic to
    find it. If you are only interested in making it work with Firefox you
    can skip this step.

    <?xml version="1.0"
    encoding="utf-8"?>
    <?xml-stylesheet href="docbook.css" type="text/css"?>
    <!-- Fragment document type declaration subset:
    Arbortext, Inc., 1988-2004, v.4002
    <!DOCTYPE set PUBLIC "-//Arbortext//DTD DocBook XML V4.0//EN"
    "axdocbook.dtd">
    -->

  3. Set writenonasciichar=char in Epic and save the XML
    document. This writes all of the character entities that may be present
    out as characters so the web browsers don't complain about not being
    able to find the reference. This needs to either be set every time you
    edit the instance in Epic or via an ACL package.
  4. Create your CSS. A small sample docbook.css:
    book {
    }
    book>title {
    display:block;
    font-size:3em;
    color:inherit;
    background:inherit;
    font-weight:bold;
    }

    legalnotice{
    font-weight:bold;
    }

    title {
    display:block;
    font-size:1.3em;
    color:inherit;
    background:inherit;
    font-weight:bold;
    }
    para {
    display:block;
    padding: 20px;
    }

CA

Suppress the br element using CSS

Filed under: CSS — cangione @ 1:00 am

I have run into issues with the <br> element especially with
programs that convert things to HTML. A quick way to suppress all of
the breaks is to add the following to your CSS stylesheet:

br { display: none;}

CA

March 23, 2005

Web Developer Tools for Firefox

Filed under: Software — cangione @ 10:40 pm

Another must have extension for Firefox. Adds a menu and a toolbar with
various web developer tools such as converting form POSTs to GETs,
hiding images, outlining block level elements, disabling styles and many more.

http://extensionroom.mozdev.org/more-info/webdeveloper

CA

Live HTTP Headers

Filed under: Software — cangione @ 10:01 pm

http://livehttpheaders.mozdev.org/

A must have extension for Firefox.

CA

Regular Expressions and XSLT

Filed under: XSLT — cangione @ 12:56 pm

I was working on a stylesheet today that begs for a regular expression.

The Problem:

    <file path='connector\fig\82675-48040.svgz'/>

I want to use parts of the path attribute but since the length varies I
can't use the string() function. It appears there is no good way to do
it in XSLT 1.0

The XSLT 2.0 spec is a working draft at this point. It appears that in
2.0 something like this will be available:

    <xsl:value-of select='matches([REG EXP])'/>



CA

« Newer PostsOlder Posts »

Powered by WordPress