Skip to content

Commit ba3355e

Browse files
committed
Initial commit.
0 parents  commit ba3355e

File tree

525 files changed

+14612
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

525 files changed

+14612
-0
lines changed

.gitignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Gemfile.lock
2+
test/dest
3+
*.gem
4+
pkg/
5+
*.swp
6+
*~
7+
_site/
8+
.bundle/
9+
*.iml
10+
*.idea
11+
target
12+
*.ipr
13+
*.iws

CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
blog.prb.io

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
prb.github.com / prb.io
2+
===
3+
4+
Content in the `perpubplat` and `_posts` directories is

_config.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
auto: true
2+
lsi: false
3+
pygments: true
4+
permalink: none
5+
markdown: maruku
6+
exclude: [ perpubplat, internal ]
7+
8+
maruku:
9+
use_divs: true

_includes/footer.html

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<div id="footer"><p class="copyright"><a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/us/"><img alt="Creative Commons License" class="cc-badge" src="http://i.creativecommons.org/l/by-sa/3.0/us/80x15.png" /></a> Except where otherwise noted, this work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/us/">Creative Commons Attribution-Share Alike 3.0 United States License</a>.</p></div>
2+
<script type="text/javascript">
3+
var gaJsHost = "http://www.";
4+
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));</script>
5+
<script type="text/javascript">
6+
try{
7+
var pageTracker = _gat._getTracker("UA-140287-1");
8+
pageTracker._trackPageview();} catch(err) {}</script>

_layouts/default.html

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-us">
4+
<head>
5+
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
6+
<title>{{ page.title }} &mdash; prb.io</title>
7+
<meta name="author" content="Paul Brown" />
8+
9+
<link rel="start" href="/" />
10+
11+
{% if page.keywords %}
12+
<meta name="keywords" content="{{ page.keywords }}">
13+
{% endif %}
14+
15+
<link rel="alternate" type="application/atom+xml" href="/atom.xml" title="Atom feed" />
16+
17+
18+
<link rel="stylesheet" href="/static/styles.css" type="text/css" />
19+
</head>
20+
<body>
21+
<div id="container">
22+
<div id="header">
23+
<h1>prb<span class="lighter">.io</span></h1>
24+
</div>
25+
{{ content }}
26+
{% include footer.html %}
27+
</div>
28+
</body>
29+
</html>

_layouts/post.html

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
layout: default
3+
---
4+
5+
<div class="nav">
6+
[<a href="/">front</a>] [<a href="{{ base.url }}/archive.html">archives</a>]
7+
</div>
8+
<div class="entry">
9+
<h2>&raquo; {{ page.title }} <a href="{{ page.url }}">#</a></h2>
10+
<div class="group">
11+
<em><a href="mailto:me@prb.io">Paul R. Brown</a></em> @ {{ page.date | date: "%Y-%m-%d" }}
12+
</div>
13+
{{ content }}
14+
</div>
15+
<p>&nbsp;</p>
16+
{% if page.previous %}
17+
<div>
18+
<a id="left" href="{{ page.previous.url }}" title="{{ page.previous.title }}">&larr; {{ page.previous.date | date: "%Y-%m-%d" }} &mdash; {{ page.previous.title }}</a>
19+
</div>
20+
{% endif %}
21+
{% if page.next %}
22+
<div><a id="right" href="{{ page.next.url }}" title="{{ page.next.title }}">&rarr; {{ page.next.date | date: "%Y-%m-%d" }} &mdash; {{ page.next.title }}</a></div>
23+
{% endif %}
24+
{% if page.next or page.previous %}
25+
<p>&nbsp;</p>
26+
{% endif %}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
layout: post
3+
title: "Never Write Another XMLFilter Implementation..."
4+
permalink: never-write-another-xmlfilter-implementation.html
5+
categories: [xml, stx]
6+
---
7+
<p>I just put the finishing touches on a short introduction (co-authored with <a href="http://www.informatik.hu-berlin.de/~obecker/">Oliver Becker</a> and <a href="http://www.gingerall.com/">Petr Cimprich</a>) to the <a href="http://stx.sourceforge.net/">STX</a> streaming XML processing language. The STX language is similar to <a href="http://www.w3.org/TR/xslt">XSLT</a> in syntax and satisfies many of the use cases for hand-coded <a href="http://www.saxproject.org/">SAX</a> filters.</p>
8+
9+
<p>The article will be published on-line on <a href="http://www.xml.com/">XML.com</a>, and I'll post a link once it's up. </p>
10+
11+
<hr />
12+
13+
<p><b>UPDATE:</b> The article is <a href="http://www.xml.com/lpt/a/2003/02/26/stx.html">here</a>.</p>
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
layout: post
3+
title: "Web Services (Short) Stack"
4+
permalink: web-services-short-stack.html
5+
categories: [wsstar]
6+
---
7+
<p>My <a href="http://lists.xml.org/archives/xml-dev/200302/msg00151.html">response</a> to a <a href="http://lists.xml.org/archives/xml-dev/200302/msg00147.html">question</a> from <a href="http://www.simonstl.com/">Simon St. Laurent</a> on the xml-dev list provoked a couple of quotations by <a href="http://www.xml.com/pub/au/92">Kendall Clarke</a> in an <a href="http://www.xml.com/pub/a/2003/02/12/deviant.html">article</a> on <a href="http://www.xml.com">XML.com</a>:</p>
8+
9+
<blockquote>I would qualify the presence of UDDI [in the web services stack] -- "free love" on the business internet is a long way off. Security doesn't begin to cover trust, and that's far more important for business transactions.</blockquote>
10+
<blockquote>The answer to the question "Is there a royalty-free specification of web services choreography that legitimately combines and acknowledges the established body of knowledge on long-running transaction models, business process semantics, and cross-domain implementation realities?" is "No."</blockquote>
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
layout: post
3+
title: "WS-Reliability, the Latest Installment in WS-Everything"
4+
permalink: ws-reliability-the-latest-installment-in-ws-everything.html
5+
categories: [wsstar, wsreliability]
6+
---
7+
<p><a href="http://www.oasis-open.org">OASIS</a> just <a href="http://lists.oasis-open.org/archives/members/200302/msg00013.html">announced</a> a TC for WS-Reliability. The <a href="http://otn.oracle.com/tech/webservices/htdocs/spec/WS-ReliabilityV1.0.pdf">specification</a> is a reasonable 45 pages and has some real-world features like sequence numbering built into the specification.</p>
8+
9+
<p>The thing to do is see if it's reasonable by roughing out an implementation, but at first glance, it looks like good old reliable messaging with SOAP-based semantics.</p>
10+
11+
<p>It would probably be better to straighten out transport protocol (as opposed to data protocol) issues first, since reliable messaging over unreliable protocols doesn't make a lot of sense. It's still nice to have a simple and general specification to work with, and the ubiquity of HTTP is unassailable.</p>

0 commit comments

Comments
 (0)