grim/purple-objects-docbook

basic connection hierarchy

2009-04-30, Gary Kramlich
ea1f2d7b50f6
Parents a73b428906c0
Children 8e7983d74cb2
basic connection hierarchy
--- a/Makefile Thu Apr 30 00:01:09 2009 -0500
+++ b/Makefile Thu Apr 30 00:07:32 2009 -0500
@@ -13,6 +13,7 @@
xml/about.xml \
xml/accounts.xml \
xml/ciphers.xml \
+ xml/connections.xml \
xml/conversations.xml \
xml/graphs.xml \
xml/plugins.xml \
@@ -27,6 +28,7 @@
graphs/accounts.hierarchy \
graphs/blistnodes.hierarchy \
graphs/ciphers.hierarchy \
+ graphs/connections.hierarchy \
graphs/conversations-interfaces.hierarchy \
graphs/conversations-objects.hierarchy \
graphs/plugin-loaders.hierarchy \
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/graphs/connections.hierarchy Thu Apr 30 00:07:32 2009 -0500
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<hierarchy name="Connections Hierarchy">
+ <objects>
+ <object name="GObject" type="abstract"/>
+ <object name="PurpleObject" type="abstract"/>
+ <object name="PurpleConnection" type="abstract"/>
+
+ <object name="PurpleMSNConnection" type="concrete"/>
+ <object name="PurpleOSCARConnection" type="concrete"/>
+ <object name="PurpleSILCConnection" type="concrete"/>
+ <object name="PurpleXMPPConnection" type="concrete"/>
+ <object name="PurpleYahooConnection" type="concrete"/>
+ </objects>
+ <relations>
+ <relation start="PurpleObject" end="GObject" type="is-a"/>
+ <relation start="PurpleConnection" end="PurpleObject" type="is-a"/>
+
+ <relation start="PurpleMSNConnection" end="PurpleConnection" type="is-a"/>
+ <relation start="PurpleOSCARConnection" end="PurpleConnection" type="is-a"/>
+ <relation start="PurpleSILCConnection" end="PurpleConnection" type="is-a"/>
+ <relation start="PurpleXMPPConnection" end="PurpleConnection" type="is-a"/>
+ <relation start="PurpleYahooConnection" end="PurpleConnection" type="is-a"/>
+ </relations>
+</hierarchy>
+<!--
+ vi: syntax=xml
+-->
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/xml/connections.xml Thu Apr 30 00:07:32 2009 -0500
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
+ "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd">
+<refentry id="connections">
+ <refmeta>
+ <refentrytitle>Connections</refentrytitle>
+ </refmeta>
+
+ <refsect1>
+ <title>Connections</title>
+
+ <imageobject>
+ <imagedata fileref="graphs/connections.png"/>
+ </imageobject>
+ </refsect1>
+</refentry>
+
--- a/xml/purple-objects.xml Thu Apr 30 00:01:09 2009 -0500
+++ b/xml/purple-objects.xml Thu Apr 30 00:07:32 2009 -0500
@@ -16,4 +16,5 @@
<xi:include href="ciphers.xml"/>
<xi:include href="whiteboards.xml"/>
<xi:include href="proxies.xml"/>
+ <xi:include href="connections.xml"/>
</book>