
CREATE TABLE item (
    sid int(11) NOT NULL auto_increment,
    node_sid int(11) DEFAULT 0 NOT NULL,
    description varchar(255),
    type varchar(12),
    link_item int(11),
    published int(11) DEFAULT 0
);



CREATE TABLE item_sid (
    item_sid int(11) NOT NULL auto_increment,
    t character(1)
	KEY item_sid(item_sid)
);



CREATE TABLE newasset_conn (
    item_sid int(11) DEFAULT 0 NOT NULL,
    newasset_page int(11) DEFAULT 0 NOT NULL,
    location varchar(64) DEFAULT '',
    page int(11) DEFAULT 0,
    linked int(11) DEFAULT 0 NOT NULL
);


CREATE TABLE newasset_page (
    id int(11) DEFAULT 0 NOT NULL,
    location varchar(64) DEFAULT '',
    username varchar(128),
    title varchar(128),
    identifier varchar(128),
    expire int(11),
    path varchar(64)
);


CREATE TABLE node (
    sid int(11) NOT NULL auto_increment,
    node varchar(255) DEFAULT '',
    prev_sid int(11) DEFAULT 0 NOT NULL
);



CREATE TABLE node_sid (
    node_sid int(11) NOT NULL auto_increment,
    t character(1)
);


CREATE TABLE reboot_conn (
    item_sid int(11) DEFAULT 0 NOT NULL,
    reboot_page int(11) DEFAULT 0 NOT NULL,
    location varchar(64) DEFAULT '',
    page int(11) DEFAULT 0,
    linked int(11) DEFAULT 0 NOT NULL
);


CREATE TABLE reboot_contributor (
    id int(11) DEFAULT 0 NOT NULL,
    location varchar(255) DEFAULT '',
    dc__contributor varchar(255),
    dc__contributor__role varchar(255)
);


CREATE TABLE reboot_creator (
    id int(11) DEFAULT 0 NOT NULL,
    location varchar(255) DEFAULT '',
    dc__creator varchar(255),
    dc__creator__role varchar(255)
);


CREATE TABLE reboot_page (
    id int(11) DEFAULT 0 NOT NULL,
    location varchar(255) DEFAULT '',
    username varchar(128),
    expire int(11),
    path varchar(255),
    dc__title varchar(255),
    dc__title__alternative varchar(255),
    dc__publisher varchar(255),
    dc__date__issued int(11) DEFAULT 0 NOT NULL,
    dc__date__created int(11) DEFAULT 0 NOT NULL,
    dc__date__digitized int(11) DEFAULT 0 NOT NULL,
    dc__format__extent int(11),
    dc__format__medium varchar(255),
    dc__format__encoding varchar(255),
    dc__identifier varchar(255),
    dc__source varchar(255),
    dc__rights varchar(255),
    dc__rights__license varchar(255),
    dc__description__toc text,
    dc__description__abstract text,
    dc__description__long text,
    dc__type varchar(255),
    dc__subject varchar(255),
    dc__language character(3),
    dc__coverage__spatial varchar(255),
    dc__coverage__temporal varchar(255)
);


CREATE TABLE reboot_relation (
    id int(11) DEFAULT 0 NOT NULL,
    location varchar(255) DEFAULT '',
    dc__relation__type varchar(255),
    dc__relation__value varchar(255)
);



CREATE TABLE template (
    node_sid int(11) DEFAULT 0 NOT NULL,
    type varchar(16),
    template text
);


CREATE TABLE treemap (
    sid int(11) DEFAULT 0 NOT NULL,
    node varchar(255) DEFAULT ''::character varying NOT NULL,
    count int(11),
    msgboard int(11)
);


CREATE TABLE users (
    username character(128),
    passwd character(14),
    email character(128),
    name character(64),
    street character(40),
    postal character(6),
    city character(25),
    country character(25),
    url character(64)
);



CREATE TABLE ora_conn (
    item_sid int(11) DEFAULT 0 NOT NULL,
    ora_page int(11) DEFAULT 0 NOT NULL,
    location varchar(64) DEFAULT '',
    page int(11) DEFAULT 0,
    linked int(11) DEFAULT 0 NOT NULL
);


CREATE TABLE ora_contributor (
    id int(11) DEFAULT 0 NOT NULL,
    location varchar(255) DEFAULT '',
    dc__contributor varchar(255),
    dc__contributor__role varchar(255)
);


CREATE TABLE ora_creator (
    id int(11) DEFAULT 0 NOT NULL,
    location varchar(255) DEFAULT '',
    dc__creator varchar(255),
    dc__creator__role varchar(255)
);


CREATE TABLE ora_page (
    id int(11) DEFAULT 0 NOT NULL,
    location varchar(255) DEFAULT '',
    username varchar(128),
    expire int(11),
    path varchar(255),
    dc__title varchar(255),
    dc__title__alternative varchar(255),
    dc__publisher varchar(255),
    dc__date__issued int(11) DEFAULT 0 NOT NULL,
    dc__date__created int(11) DEFAULT 0 NOT NULL,
    dc__date__digitized int(11) DEFAULT 0 NOT NULL,
    dc__format__extent int(11),
    dc__format__medium varchar(255),
    dc__format__encoding varchar(255),
    dc__identifier varchar(255),
    dc__source varchar(255),
    dc__rights varchar(255),
    dc__rights__license varchar(255),
    dc__description__toc text,
    dc__description__abstract text,
    dc__description__long text,
    dc__type varchar(255),
    dc__subject varchar(255),
    dc__language character(3),
    dc__coverage__spatial varchar(255),
    dc__coverage__temporal varchar(255)
);


CREATE TABLE ora_relation (
    id int(11) DEFAULT 0 NOT NULL,
    location varchar(255) DEFAULT,
    dc__relation__type varchar(255),
    dc__relation__value varchar(255)
);


CREATE TABLE ota_conn (
    item_sid int(11) DEFAULT 0 NOT NULL,
    ota_page int(11) DEFAULT 0 NOT NULL,
    location varchar(64) DEFAULT,
    page int(11) DEFAULT 0,
    linked int(11) DEFAULT 0 NOT NULL
);


CREATE TABLE ota_contributor (
    id int(11) DEFAULT 0 NOT NULL,
    location varchar(255) DEFAULT '',
    dc__contributor varchar(255),
    dc__contributor__role varchar(255)
);

CREATE TABLE ota_creator (
    id int(11) DEFAULT 0 NOT NULL,
    location varchar(255) DEFAULT '',
    dc__creator varchar(255),
    dc__creator__role varchar(255)
);

CREATE TABLE ota_page (
    id int(11) DEFAULT 0 NOT NULL,
    location varchar(255) DEFAULT '',
    username varchar(128),
    expire int(11),
    path varchar(255),
    dc__title varchar(255),
    dc__title__alternative varchar(255),
    dc__publisher varchar(255),
    dc__date__issued int(11) DEFAULT 0 NOT NULL,
    dc__date__created int(11) DEFAULT 0 NOT NULL,
    dc__date__digitized int(11) DEFAULT 0 NOT NULL,
    dc__format__extent int(11),
    dc__format__medium varchar(255),
    dc__format__encoding varchar(255),
    dc__identifier varchar(255),
    dc__source varchar(255),
    dc__rights varchar(255),
    dc__rights__license varchar(255),
    dc__description__toc text,
    dc__description__abstract text,
    dc__description__long text,
    dc__type varchar(255),
    dc__subject varchar(255),
    dc__language character(3),
    dc__coverage__spatial varchar(255),
    dc__coverage__temporal varchar(255)
);

CREATE TABLE ota_relation (
    id int(11) DEFAULT 0 NOT NULL,
    location varchar(255) DEFAULT '',
    dc__relation__type varchar(255),
    dc__relation__value varchar(255)
);

CREATE TABLE ova_conn (
    item_sid int(11) DEFAULT 0 NOT NULL,
    ova_page int(11) DEFAULT 0 NOT NULL,
    location varchar(64) DEFAULT '',
    page int(11) DEFAULT 0,
    linked int(11) DEFAULT 0 NOT NULL
);

CREATE TABLE ova_contributor (
    id int(11) DEFAULT 0 NOT NULL,
    location varchar(255) DEFAULT '',
    dc__contributor varchar(255),
    dc__contributor__role varchar(255)
);

CREATE TABLE ova_creator (
    id int(11) DEFAULT 0 NOT NULL,
    location varchar(255) DEFAULT '',
    dc__creator varchar(255),
    dc__creator__role varchar(255)
);

CREATE TABLE ova_page (
    id int(11) DEFAULT 0 NOT NULL,
    location varchar(255) DEFAULT '',
    username varchar(128),
    expire int(11),
    path varchar(255),
    dc__title varchar(255),
    dc__title__alternative varchar(255),
    dc__publisher varchar(255),
    dc__date__issued int(11) DEFAULT 0 NOT NULL,
    dc__date__created int(11) DEFAULT 0 NOT NULL,
    dc__date__digitized int(11) DEFAULT 0 NOT NULL,
    dc__format__extent int(11),
    dc__format__medium varchar(255),
    dc__format__encoding varchar(255),
    dc__identifier varchar(255),
    dc__source varchar(255),
    dc__rights varchar(255),
    dc__rights__license varchar(255),
    dc__description__toc text,
    dc__description__abstract text,
    dc__description__long text,
    dc__type varchar(255),
    dc__subject varchar(255),
    dc__language character(3),
    dc__coverage__spatial varchar(255),
    dc__coverage__temporal varchar(255)
);

CREATE TABLE ova_relation (
    id int(11) DEFAULT 0 NOT NULL,
    location varchar(255) DEFAULT '',
    dc__relation__type varchar(255),
    dc__relation__value varchar(255)
);

CREATE TABLE opa_conn (
    item_sid int(11) DEFAULT 0 NOT NULL,
    opa_page int(11) DEFAULT 0 NOT NULL,
    location varchar(64) DEFAULT '',
    page int(11) DEFAULT 0,
    linked int(11) DEFAULT 0 NOT NULL
);

CREATE TABLE opa_contributor (
    id int(11) DEFAULT 0 NOT NULL,
    location varchar(255) DEFAULT '',
    dc__contributor varchar(255),
    dc__contributor__role varchar(255)
);

CREATE TABLE opa_creator (
    id int(11) DEFAULT 0 NOT NULL,
    location varchar(255) DEFAULT '',
    dc__creator varchar(255),
    dc__creator__role varchar(255)
);

CREATE TABLE opa_page (
    id int(11) DEFAULT 0 NOT NULL,
    location varchar(255) DEFAULT '',
    username varchar(128),
    expire int(11),
    path varchar(255),
    dc__title varchar(255),
    dc__title__alternative varchar(255),
    dc__publisher varchar(255),
    dc__date__issued int(11) DEFAULT 0 NOT NULL,
    dc__date__created int(11) DEFAULT 0 NOT NULL,
    dc__date__digitized int(11) DEFAULT 0 NOT NULL,
    dc__format__extent int(11),
    dc__format__medium varchar(255),
    dc__format__encoding varchar(255),
    dc__identifier varchar(255),
    dc__source varchar(255),
    dc__rights varchar(255),
    dc__rights__license varchar(255),
    dc__description__toc text,
    dc__description__abstract text,
    dc__description__long text,
    dc__type varchar(255),
    dc__subject varchar(255),
    dc__language character(3),
    dc__coverage__spatial varchar(255),
    dc__coverage__temporal varchar(255)
);

CREATE TABLE opa_relation (
    id int(11) DEFAULT 0 NOT NULL,
    location varchar(255) DEFAULT '',
    dc__relation__type varchar(255),
    dc__relation__value varchar(255)
);


INSERT INTO item_sid VALUES (1, 'A');


INSERT INTO node VALUES (1, '/', 0);
INSERT INTO node VALUES (2, 'Homepage', 1);
INSERT INTO node VALUES (3, 'DublinCore', 1);


INSERT INTO node_sid VALUES (99, 'A');




INSERT INTO template VALUES (1, 'ova_attrib', '<attr-dc-type><b><attr-value/></b>(<attr-role/>)</attr-dc-type>

');
INSERT INTO template VALUES (1, 'opa_attrib', '<attr-dc-type><b><attr-value/></b>(<attr-role/>)</attr-dc-type>

');
INSERT INTO template VALUES (1, 'ota_attrib', '<attr-dc-type><b><attr-value/></b>(<attr-role/>)</attr-dc-type>

');
INSERT INTO template VALUES (1, 'homepage_body', '<div id="middle">

<span id="assets">
<picture />
<video />
<reboot />
<newasset />
</span>
<h3><path /></h3>

<p id="content">
<text size="400"/>
</p>
</div>
');
INSERT INTO template VALUES (1, 'reboot_attrib', '<attr-dc-type><b><attr-value/></b>(<attr-role/>)</attr-dc-type>

');
INSERT INTO template VALUES (1, 'homepage_bottom', '

</body>
</html>
');
INSERT INTO template VALUES (1, 'newasset', '<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>reboot.fm open-archive/exchange</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Script-Type" content="text/javascript" />
<meta http-equiv="Content-Style-Type" content="text/css" />
<link href="http://reboot.fm/blosxom/themes/stylesheets/common.css" rel="stylesheet" type="text/css" />
<link href="http://reboot.fm/blosxom/themes/stylesheets/import.css" rel="stylesheet" type="text/css" />
<link href="http://reboot.fm/blosxom/themes/open/colors.css" rel="stylesheet" type="text/css" />
<link rel="Shortcut Icon" type="image/ico" href="http://reboot.fm/blosxom/themes/images/menu/reboot.ico" />

<script language="JavaScript" type="text/JavaScript">
<!--
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->
</script>
</head>

<body id="body">

    <div id="container">
        <div id="top">
            <div>
                <img name="plain" src="http://reboot.fm/blosxom/themes/images/menu/spacer.gif" width="1" height="59" alt="" style="background-color: #eeeeed" />
            </div>
   
            <div id="tab_on" /><a href="http://reboot.fm/index.cgi/news/index.news">NEWS</a></div>
   
            <ul id="tabnav">
                <li class="tab1"><a href="http://reboot.fm/index.cgi/news/rebootfm/index.news">rebootfm</a></li>
                <li class="tab2"><a href="http://reboot.fm/index.cgi/news/radio/index.news">radio</a></li>
                <li class="tab3"><a href="http://reboot.fm/index.cgi/news/netaudio/index.news">netaudio</a></li>
                <li class="tab4"><a href="http://reboot.fm/index.cgi/news/copyleft/index.news">copyleft</a></li>
                <li class="tab5"><a href="http://reboot.fm/index.cgi/news/mediapolitics/index.news">media politics</a></li>
                <li class="tab6"><a href="http://reboot.fm/index.cgi/events/index.events">events</a></li>
                <li class="tab7"><a href="http://reboot.fm/index.cgi/links/index.links">links</a></li>
                <li class="tab8"><img src="http://reboot.fm/blosxom/themes/images/menu/reiter_end2.png" /></li>
            </ul>
        </div>

        <div id="rightnav">
            <div id="white">
                <div id="blue">
                    <div id="submenu_breadcrumbs"><a href="http://reboot.fm/index.cgi/about/project/index.about">reboot.fm</a> : <a href="http://reboot.fm/index.cgi/open-archive/index.open">open-archive</a> : exchange</div>
                </div>

                <div id="grey">
                    <div id="submenu_titel">ABOUT</div>
                    <div id="submenu_sub"><a href="http://reboot.fm/index.cgi/about/project/index.about">REBOOT.FM</a></div>
                    <div id="submenu_sub"><a href="http://reboot.fm/index.cgi/about/whois/index.about">WHO IS/PARTNERS</a></div>
                    <div id="submenu_sub"><a href="http://reboot.fm/index.cgi/about/contact/index.about">CONTACT</a></div>
                    <div id="submenu_sub"><a href="http://reboot.fm/index.cgi/about/press/index.about">PRESS</a></div>
                    <div id="submenu_sub"><a href="http://reboot.fm/index.cgi/about/faq/index.about">FAQ</a></div>

                </div>
   
                <div id="blue">
                    <div id="submenu_titel">OPEN RADIO ARCHIVE</div>
                    <reboot-play button="http://gurke.b.lab.net/reboot.fm/blosxom/themes/images/streamicon.png"/>
                    <reboot-play/>
                </div>

                <div id="submenu_text">
                    REBOOT.FM IS A PROJECT BY <a href="http://www.bootlab.org" target="blank">BOOTLAB.ORG</a>,
                    FUNDED BY <a href="http://www.kulturstiftung-des-bundes.de/" target="blank">KULTURSTIFTUNG
                    DES BUNDES.</a>
                </div>

                <div id="submenu_text">
                    <br/>
                    <a href="http://oma.sf.net/"><img src="/img/omatrans.png" alt="pwrd by oma"/> </a>
                    <br/> <br/> <br/>
                </div>
            </div>
        </div>


        <div id="middlenav">
            <div id="search">SEARCH <br/>
                <form action="/oma-bin/usearch" method="post">
                    <div>
                        <input type="text" name="qstring" size="15" />
                        <input type="submit" value="Search" />
                    </div>
                </form>
            </div>
        </div>


        <div id="main">
            <div id="contents">
                <h3>
                    <location/><br/>
                    <options/>
                </h3>
    
                <div id="title">
                    <a id="exchange"></a>
                </div>

                <div id="story">
<discussion/>
                </div>
            </div>

            <div id="blue">
                <div id="contentfooter">&nbsp;</div>
            </div>
        </div>
        <div id="footer">
            reboot.fm Bootlab e.V., Berlin 2003 - http://www.reboot.fm <br />
            | <a href="http://reboot.fm/index.cgi/about/project/index.about">about</a> | <a href="http://reboot.fm/index.cgi/software/modules/index.soft">software</a>
            | <a href="http://reboot.fm/index.cgi/radio/program/index.soft">100 days of radio</a> | <a href="http://reboot.fm/index.cgi/open-archiv/exchange/index.open">open archiv</a> |<br />
            | <a href="http://reboot.fm/index.cgi/news/index.news">news</a> | <a href="http://reboot.fm/index.cgi/letter/index.news">newsletter</a> | <a href="http://reboot.fm/index.cgi/links/index.links">links</a> | <a href="http://reboot.fm/index.cgi/events/index.events">events</a> |
        </div>

</body>
</html>
');
INSERT INTO template VALUES (1, 'discussion', '<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>reboot.fm open-archive/exchange</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Script-Type" content="text/javascript" />
<meta http-equiv="Content-Style-Type" content="text/css" />
<link href="http://reboot.fm/blosxom/themes/stylesheets/common.css" rel="stylesheet" type="text/css" />
<link href="http://reboot.fm/blosxom/themes/stylesheets/import.css" rel="stylesheet" type="text/css" />
<link href="http://reboot.fm/blosxom/themes/open/colors.css" rel="stylesheet" type="text/css" />
<link rel="Shortcut Icon" type="image/ico" href="http://reboot.fm/blosxom/themes/images/menu/reboot.ico" />

<script language="JavaScript" type="text/JavaScript">
<!--
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->
</script>
</head>

<body id="body">

    <div id="container">
        <div id="top">
            <div>
                <img name="plain" src="http://reboot.fm/blosxom/themes/images/menu/spacer.gif" width="1" height="59" alt="" style="background-color: #eeeeed" />
            </div>
   
            <div id="tab_on" /><a href="http://reboot.fm/index.cgi/news/index.news">NEWS</a></div>
   
            <ul id="tabnav">
                <li class="tab1"><a href="http://reboot.fm/index.cgi/news/rebootfm/index.news">rebootfm</a></li>
                <li class="tab2"><a href="http://reboot.fm/index.cgi/news/radio/index.news">radio</a></li>
                <li class="tab3"><a href="http://reboot.fm/index.cgi/news/netaudio/index.news">netaudio</a></li>
                <li class="tab4"><a href="http://reboot.fm/index.cgi/news/copyleft/index.news">copyleft</a></li>
                <li class="tab5"><a href="http://reboot.fm/index.cgi/news/mediapolitics/index.news">media politics</a></li>
                <li class="tab6"><a href="http://reboot.fm/index.cgi/events/index.events">events</a></li>
                <li class="tab7"><a href="http://reboot.fm/index.cgi/links/index.links">links</a></li>
                <li class="tab8"><img src="http://reboot.fm/blosxom/themes/images/menu/reiter_end2.png" /></li>
            </ul>
        </div>

        <div id="rightnav">
            <div id="white">
                <div id="blue">
                    <div id="submenu_breadcrumbs"><a href="http://reboot.fm/index.cgi/about/project/index.about">reboot.fm</a> : <a href="http://reboot.fm/index.cgi/open-archive/index.open">open-archive</a> : exchange</div>
                </div>

                <div id="grey">
                    <div id="submenu_titel">ABOUT</div>
                    <div id="submenu_sub"><a href="http://reboot.fm/index.cgi/about/project/index.about">REBOOT.FM</a></div>
                    <div id="submenu_sub"><a href="http://reboot.fm/index.cgi/about/whois/index.about">WHO IS/PARTNERS</a></div>
                    <div id="submenu_sub"><a href="http://reboot.fm/index.cgi/about/contact/index.about">CONTACT</a></div>
                    <div id="submenu_sub"><a href="http://reboot.fm/index.cgi/about/press/index.about">PRESS</a></div>
                    <div id="submenu_sub"><a href="http://reboot.fm/index.cgi/about/faq/index.about">FAQ</a></div>

                </div>
   
                <div id="blue">
                    <div id="submenu_titel">OPEN RADIO ARCHIVE</div>
                    <reboot-play button="http://gurke.b.lab.net/reboot.fm/blosxom/themes/images/streamicon.png"/>
                    <reboot-play/>
                </div>

                <div id="submenu_text">
                    REBOOT.FM IS A PROJECT BY <a href="http://www.bootlab.org" target="blank">BOOTLAB.ORG</a>,
                    FUNDED BY <a href="http://www.kulturstiftung-des-bundes.de/" target="blank">KULTURSTIFTUNG
                    DES BUNDES.</a>
                </div>

                <div id="submenu_text">
                    <br/>
                    <a href="http://oma.sf.net/"><img src="/img/omatrans.png" alt="pwrd by oma"/> </a>
                    <br/> <br/> <br/>
                </div>
            </div>
        </div>


        <div id="middlenav">
            <div id="search">SEARCH <br/>
                <form action="/oma-bin/usearch" method="post">
                    <div>
                        <input type="text" name="qstring" size="15" />
                        <input type="submit" value="Search" />
                    </div>
                </form>
            </div>
        </div>


        <div id="main">
            <div id="contents">
                <h3>
                    <location/><br/>
                    <options/>
                </h3>
    
                <div id="title">
                    <a id="exchange"></a>
                </div>

                <div id="story">
<discussion/>
                </div>
            </div>

            <div id="blue">
                <div id="contentfooter">&nbsp;</div>
            </div>
        </div>
        <div id="footer">
            reboot.fm Bootlab e.V., Berlin 2003 - http://www.reboot.fm <br />
            | <a href="http://reboot.fm/index.cgi/about/project/index.about">about</a> | <a href="http://reboot.fm/index.cgi/software/modules/index.soft">software</a>
            | <a href="http://reboot.fm/index.cgi/radio/program/index.soft">100 days of radio</a> | <a href="http://reboot.fm/index.cgi/open-archiv/exchange/index.open">open archiv</a> |<br />
            | <a href="http://reboot.fm/index.cgi/news/index.news">news</a> | <a href="http://reboot.fm/index.cgi/letter/index.news">newsletter</a> | <a href="http://reboot.fm/index.cgi/links/index.links">links</a> | <a href="http://reboot.fm/index.cgi/events/index.events">events</a> |
        </div>

</body>
</html>
');
INSERT INTO template VALUES (1, 'search_body', '<loop>
<search-path/>
<search-hit/><br/>
</loop>');
INSERT INTO template VALUES (1, 'ora', '<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>reboot.fm open-archive/exchange</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Script-Type" content="text/javascript" />
<meta http-equiv="Content-Style-Type" content="text/css" />
<link href="http://reboot.fm/blosxom/themes/stylesheets/common.css" rel="stylesheet" type="text/css" />
<link href="http://reboot.fm/blosxom/themes/stylesheets/import.css" rel="stylesheet" type="text/css" />
<link href="http://reboot.fm/blosxom/themes/open/colors.css" rel="stylesheet" type="text/css" />
<link rel="Shortcut Icon" type="image/ico" href="http://reboot.fm/blosxom/themes/images/menu/reboot.ico" />

<script language="JavaScript" type="text/JavaScript">
<!--
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->
</script>
</head>

<body id="body">

    <div id="container">
        <div id="top">
            <div>
                <img name="plain" src="http://reboot.fm/blosxom/themes/images/menu/spacer.gif" width="1" height="59" alt="" style="background-color: #eeeeed" />
            </div>

            <div id="tab_on" /><a href="http://reboot.fm/index.cgi/news/index.news">NEWS</a></div>

            <ul id="tabnav">
                <li class="tab1"><a href="http://reboot.fm/index.cgi/news/rebootfm/index.news">rebootfm</a></li>
                <li class="tab2"><a href="http://reboot.fm/index.cgi/news/radio/index.news">radio</a></li>
                <li class="tab3"><a href="http://reboot.fm/index.cgi/news/netaudio/index.news">netaudio</a></li>
                <li class="tab4"><a href="http://reboot.fm/index.cgi/news/copyleft/index.news">copyleft</a></li>
                <li class="tab5"><a href="http://reboot.fm/index.cgi/news/mediapolitics/index.news">media politics</a></li>
                <li class="tab6"><a href="http://reboot.fm/index.cgi/events/index.events">events</a></li>
                <li class="tab7"><a href="http://reboot.fm/index.cgi/links/index.links">links</a></li>
                <li class="tab8"><img src="http://reboot.fm/blosxom/themes/images/menu/reiter_end2.png" /></li>
            </ul>
        </div>

        <div id="rightnav">
            <div id="white">
                <div id="blue">
                    <div id="submenu_breadcrumbs"><a href="http://reboot.fm/index.cgi/about/project/index.about">reboot.fm</a> : <a href="http://reboot.fm/index.cgi/open-archive/index.open">open-archive</a> : exchange</div>
                </div>

                <div id="grey">
                    <div id="submenu_titel">ABOUT</div>
                    <div id="submenu_sub"><a href="http://reboot.fm/index.cgi/about/project/index.about">REBOOT.FM</a></div>
                    <div id="submenu_sub"><a href="http://reboot.fm/index.cgi/about/whois/index.about">WHO IS/PARTNERS</a></div>
                    <div id="submenu_sub"><a href="http://reboot.fm/index.cgi/about/contact/index.about">CONTACT</a></div>
                    <div id="submenu_sub"><a href="http://reboot.fm/index.cgi/about/press/index.about">PRESS</a></div>
                    <div id="submenu_sub"><a href="http://reboot.fm/index.cgi/about/faq/index.about">FAQ</a></div>

                </div>

                <div id="blue">
                    <div id="submenu_titel">OPEN RADIO ARCHIVE</div>
                    <reboot-play button="http://gurke.b.lab.net/reboot.fm/blosxom/themes/images/streamicon.png"/>
                    <reboot-play/>
                </div>

                <div id="submenu_text">
                    REBOOT.FM IS A PROJECT BY <a href="http://www.bootlab.org" target="blank">BOOTLAB.ORG</a>,
                    FUNDED BY <a href="http://www.kulturstiftung-des-bundes.de/" target="blank">KULTURSTIFTUNG
                    DES BUNDES.</a>
                </div>

                <div id="submenu_text">
                    <br/>
                    <a href="http://oma.sf.net/"><img src="/img/omatrans.png" alt="pwrd by oma"/> </a>
                    <br/> <br/> <br/>
                </div>
            </div>
        </div>


        <div id="middlenav">
            <div id="search">SEARCH <br/>
                <form action="/oma-bin/usearch" method="post">
                    <div>
                        <input type="text" name="qstring" size="15" />
                        <input type="submit" value="Search" />
                    </div>
                </form>
            </div>
        </div>


        <div id="main">
            <div id="contents">
                <h3>
                    <ora-location/><br/>
                    <ora-options/>
                </h3>
    
                <div id="title">
                    <a id="exchange"><ora-dc__title/></a>
                </div>

                <div id="story">

<ora-dc__title/>
<ora-location-desc desc="your path:"/>
<ora-location/>
<ora-options/>
<ora-age-desc desc="date:"/>
<ora-age/>
<ora-base-desc desc="host:"/>
<ora-base/>
<ora-expire-desc desc="expire:"/>
<ora-expire/>
<ora-dc__title-desc desc="title:"/> 
<ora-dc__title/> 
<ora-dc__title__program_title-desc desc="program title:"/>
<ora-dc__title__program_title/>
<ora-dc__identifier-desc desc="identifier:"/>
<ora-dc__identifier/>
<ora-dc__publisher-desc desc="publisher:"/>
<ora-dc__publisher/>
<ora-dc__date__issued-desc desc="issued:"/>
<ora-dc__date__issued/>
<ora-dc__date__created-desc desc="created:"/>
<ora-dc__date__created/>
<ora-dc__date__digitized-desc desc="digitized:"/>
<ora-dc__date__digitized/>
<ora-dc__format__extent-desc desc="extent:"/>
<ora-dc__format__extent/>
<ora-dc__format__medium-desc desc="medium:"/>
<ora-dc__format__medium/>
<ora-dc__format__encoding-desc desc="encoding:"/>
<ora-dc__format__encoding/>
<ora-dc__source-desc desc="source:"/>
<ora-dc__source/>
<ora-dc__rights-desc desc="rights:"/>
<ora-dc__rights/>
<ora-dc__rights__license-desc desc="license:"/>
<ora-dc__rights__license/>
<ora-dc__description__toc-desc desc="toc:"/>
<ora-dc__description__toc/>
<ora-dc__description__abstract-desc desc="abstract:"/>
<ora-dc__description__abstract/>
<ora-dc__description__long-desc desc="long:"/>
<ora-dc__description__long/>
<ora-dc__type-desc desc="type:"/>
<ora-dc__type/>
<ora-dc__subject-desc desc="subject:"/>
<ora-dc__subject/>
<ora-dc__language-desc desc="language:"/>
<ora-dc__language/>
<ora-dc__coverage__spatial-desc desc="spatial:"/>
<ora-dc__coverage__spatial/>
<ora-dc__coverage__temporal-desc desc="temporal:"/>
<ora-dc__coverage__temporal/>
<ora-creators/>
<ora-contributors/>
<ora-relations/>
<ora-contributor-desc desc="Contributor:"/>
<ora-contributor/>


                </div>
            </div>

            <div id="blue">
                <div id="contentfooter">&nbsp;</div>
            </div>
        </div>
        <div id="footer">
            reboot.fm Bootlab e.V., Berlin 2003 - http://www.reboot.fm <br />
            | <a href="http://reboot.fm/index.cgi/about/project/index.about">about</a> | <a href="http://reboot.fm/index.cgi/software/modules/index.soft">software</a>
            | <a href="http://reboot.fm/index.cgi/radio/program/index.soft">100 days of radio</a> | <a href="http://reboot.fm/index.cgi/open-archiv/exchange/index.open">open archiv</a> |<br />
            | <a href="http://reboot.fm/index.cgi/news/index.news">news</a> | <a href="http://reboot.fm/index.cgi/letter/index.news">newsletter</a> | <a href="http://reboot.fm/index.cgi/links/index.links">links</a> | <a href="http://reboot.fm/index.cgi/events/index.events">events</a> |
        </div>

</body>
</html>
');
INSERT INTO template VALUES (1, 'ova', '<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>reboot.fm open-archive/exchange</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Script-Type" content="text/javascript" />
<meta http-equiv="Content-Style-Type" content="text/css" />
<link href="http://reboot.fm/blosxom/themes/stylesheets/common.css" rel="stylesheet" type="text/css" />
<link href="http://reboot.fm/blosxom/themes/stylesheets/import.css" rel="stylesheet" type="text/css" />
<link href="http://reboot.fm/blosxom/themes/open/colors.css" rel="stylesheet" type="text/css" />
<link rel="Shortcut Icon" type="image/ico" href="http://reboot.fm/blosxom/themes/images/menu/reboot.ico" />

<script language="JavaScript" type="text/JavaScript">
<!--
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&amp;&amp;(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->
</script>
</head>

<body id="body">

    <div id="container">
        <div id="top">
            <div>
                <img name="plain" src="http://reboot.fm/blosxom/themes/images/menu/spacer.gif" width="1" height="59" alt="" style="background-color: #eeeeed" />
            </div>

            <div id="tab_on" /><a href="http://reboot.fm/index.cgi/news/index.news">NEWS</a></div>

            <ul id="tabnav">
                <li class="tab1"><a href="http://reboot.fm/index.cgi/news/rebootfm/index.news">rebootfm</a></li>
                <li class="tab2"><a href="http://reboot.fm/index.cgi/news/radio/index.news">radio</a></li>
                <li class="tab3"><a href="http://reboot.fm/index.cgi/news/netaudio/index.news">netaudio</a></li>
                <li class="tab4"><a href="http://reboot.fm/index.cgi/news/copyleft/index.news">copyleft</a></li>
                <li class="tab5"><a href="http://reboot.fm/index.cgi/news/mediapolitics/index.news">media politics</a></li>
                <li class="tab6"><a href="http://reboot.fm/index.cgi/events/index.events">events</a></li>
                <li class="tab7"><a href="http://reboot.fm/index.cgi/links/index.links">links</a></li>
                <li class="tab8"><img src="http://reboot.fm/blosxom/themes/images/menu/reiter_end2.png" /></li>
            </ul>
        </div>

        <div id="rightnav">
            <div id="white">
                <div id="blue">
                    <div id="submenu_breadcrumbs"><a href="http://reboot.fm/index.cgi/about/project/index.about">reboot.fm</a> : <a href="http://reboot.fm/index.cgi/open-archive/index.open">open-archive</a> : exchange</div>
                </div>

                <div id="grey">
                    <div id="submenu_titel">ABOUT</div>
                    <div id="submenu_sub"><a href="http://reboot.fm/index.cgi/about/project/index.about">REBOOT.FM</a></div>
                    <div id="submenu_sub"><a href="http://reboot.fm/index.cgi/about/whois/index.about">WHO IS/PARTNERS</a></div>
                    <div id="submenu_sub"><a href="http://reboot.fm/index.cgi/about/contact/index.about">CONTACT</a></div>
                    <div id="submenu_sub"><a href="http://reboot.fm/index.cgi/about/press/index.about">PRESS</a></div>
                    <div id="submenu_sub"><a href="http://reboot.fm/index.cgi/about/faq/index.about">FAQ</a></div>

                </div>

                <div id="blue">
                    <div id="submenu_titel">OPEN RADIO ARCHIVE</div>
                    <ova-play button="http://gurke.b.lab.net/reboot.fm/blosxom/themes/images/streamicon.png"/>
                    <ova-play/>
                </div>

                <div id="submenu_text">
                    REBOOT.FM IS A PROJECT BY <a href="http://www.bootlab.org" target="blank">BOOTLAB.ORG</a>,
                    FUNDED BY <a href="http://www.kulturstiftung-des-bundes.de/" target="blank">KULTURSTIFTUNG
                    DES BUNDES.</a>
                </div>

                <div id="submenu_text">
                    <br/>
                    <a href="http://oma.sf.net/"><img src="/img/omatrans.png" alt="pwrd by oma"/> </a>
                    <br/> <br/> <br/>
                </div>
            </div>
        </div>


        <div id="middlenav">
            <div id="search">SEARCH <br/>
                <form action="/oma-bin/usearch" method="post">
                    <div>
                        <input type="text" name="qstring" size="15" />
                        <input type="submit" value="Search" />
                    </div>
                </form>
            </div>
        </div>


        <div id="main">
            <div id="contents">
                <h3>
                    <ova-location/><br/>
                    <ova-options/>
                </h3>
    
                <div id="title">
                    <a id="exchange"><ova-dc__title/></a>
                </div>

                <div id="story">

<ova-dc__title/>
<ova-location-desc desc="your path:"/>
<ova-location/>
<ova-options/>
<ova-age-desc desc="date:"/>
<ova-age/>
<ova-base-desc desc="host:"/>
<ova-base/>
<ova-expire-desc desc="expire:"/>
<ova-expire/>
<ova-dc__title-desc desc="title:"/> 
<ova-dc__title/> 
<ova-dc__title__program_title-desc desc="program title:"/>
<ova-dc__title__program_title/>
<ova-dc__identifier-desc desc="identifier:"/>
<ova-dc__identifier/>
<ova-dc__publisher-desc desc="publisher:"/>
<ova-dc__publisher/>
<ova-dc__date__issued-desc desc="issued:"/>
<ova-dc__date__issued/>
<ova-dc__date__created-desc desc="created:"/>
<ova-dc__date__created/>
<ova-dc__date__digitized-desc desc="digitized:"/>
<ova-dc__date__digitized/>
<ova-dc__format__extent-desc desc="extent:"/>
<ova-dc__format__extent/>
<ova-dc__format__medium-desc desc="medium:"/>
<ova-dc__format__medium/>
<ova-dc__format__encoding-desc desc="encoding:"/>
<ova-dc__format__encoding/>
<ova-dc__source-desc desc="source:"/>
<ova-dc__source/>
<ova-dc__rights-desc desc="rights:"/>
<ova-dc__rights/>
<ova-dc__rights__license-desc desc="license:"/>
<ova-dc__rights__license/>
<ova-dc__description__toc-desc desc="toc:"/>
<ova-dc__description__toc/>
<ova-dc__description__abstract-desc desc="abstract:"/>
<ova-dc__description__abstract/>
<ova-dc__description__long-desc desc="long:"/>
<ova-dc__description__long/>
<ova-dc__type-desc desc="type:"/>
<ova-dc__type/>
<ova-dc__subject-desc desc="subject:"/>
<ova-dc__subject/>
<ova-dc__language-desc desc="language:"/>
<ova-dc__language/>
<ova-dc__coverage__spatial-desc desc="spatial:"/>
<ova-dc__coverage__spatial/>
<ova-dc__coverage__temporal-desc desc="temporal:"/>
<ova-dc__coverage__temporal/>
<ova-creators/>
<ova-contributors/>
<ova-relations/>
<ova-contributor-desc desc="Contributor:"/>
<ova-contributor/>


                </div>
            </div>

            <div id="blue">
                <div id="contentfooter">&nbsp;</div>
            </div>
        </div>
        <div id="footer">
            reboot.fm Bootlab e.V., Berlin 2003 - http://www.reboot.fm <br />
            | <a href="http://reboot.fm/index.cgi/about/project/index.about">about</a> | <a href="http://reboot.fm/index.cgi/software/modules/index.soft">software</a>
            | <a href="http://reboot.fm/index.cgi/radio/program/index.soft">100 days of radio</a> | <a href="http://reboot.fm/index.cgi/open-archiv/exchange/index.open">open archiv</a> |<br />
            | <a href="http://reboot.fm/index.cgi/news/index.news">news</a> | <a href="http://reboot.fm/index.cgi/letter/index.news">newsletter</a> | <a href="http://reboot.fm/index.cgi/links/index.links">links</a> | <a href="http://reboot.fm/index.cgi/events/index.events">events</a> |
        </div>

</body>
</html>
');
INSERT INTO template VALUES (3, 'reboot_attrib', '<attr-dc-type><attr-value/></attr-dc-type>');
INSERT INTO template VALUES (1, 'ota', '<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>reboot.fm open-archive/exchange</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Script-Type" content="text/javascript" />
<meta http-equiv="Content-Style-Type" content="text/css" />
<link href="http://reboot.fm/blosxom/themes/stylesheets/common.css" rel="stylesheet" type="text/css" />
<link href="http://reboot.fm/blosxom/themes/stylesheets/import.css" rel="stylesheet" type="text/css" />
<link href="http://reboot.fm/blosxom/themes/open/colors.css" rel="stylesheet" type="text/css" />
<link rel="Shortcut Icon" type="image/ico" href="http://reboot.fm/blosxom/themes/images/menu/reboot.ico" />

<script language="JavaScript" type="text/JavaScript">
<!--
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&amp;amp;&amp;amp;(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->
</script>
</head>

<body id="body">

    <div id="container">
        <div id="top">
            <div>
                <img name="plain" src="http://reboot.fm/blosxom/themes/images/menu/spacer.gif" width="1" height="59" alt="" style="background-color: #eeeeed" />
            </div>

            <div id="tab_on" /><a href="http://reboot.fm/index.cgi/news/index.news">NEWS</a></div>

            <ul id="tabnav">
                <li class="tab1"><a href="http://reboot.fm/index.cgi/news/rebootfm/index.news">rebootfm</a></li>
                <li class="tab2"><a href="http://reboot.fm/index.cgi/news/radio/index.news">radio</a></li>
                <li class="tab3"><a href="http://reboot.fm/index.cgi/news/netaudio/index.news">netaudio</a></li>
                <li class="tab4"><a href="http://reboot.fm/index.cgi/news/copyleft/index.news">copyleft</a></li>
                <li class="tab5"><a href="http://reboot.fm/index.cgi/news/mediapolitics/index.news">media politics</a></li>
                <li class="tab6"><a href="http://reboot.fm/index.cgi/events/index.events">events</a></li>
                <li class="tab7"><a href="http://reboot.fm/index.cgi/links/index.links">links</a></li>
                <li class="tab8"><img src="http://reboot.fm/blosxom/themes/images/menu/reiter_end2.png" /></li>
            </ul>
        </div>

        <div id="rightnav">
            <div id="white">
                <div id="blue">
                    <div id="submenu_breadcrumbs"><a href="http://reboot.fm/index.cgi/about/project/index.about">reboot.fm</a> : <a href="http://reboot.fm/index.cgi/open-archive/index.open">open-archive</a> : exchange</div>
                </div>

                <div id="grey">
                    <div id="submenu_titel">ABOUT</div>
                    <div id="submenu_sub"><a href="http://reboot.fm/index.cgi/about/project/index.about">REBOOT.FM</a></div>
                    <div id="submenu_sub"><a href="http://reboot.fm/index.cgi/about/whois/index.about">WHO IS/PARTNERS</a></div>
                    <div id="submenu_sub"><a href="http://reboot.fm/index.cgi/about/contact/index.about">CONTACT</a></div>
                    <div id="submenu_sub"><a href="http://reboot.fm/index.cgi/about/press/index.about">PRESS</a></div>
                    <div id="submenu_sub"><a href="http://reboot.fm/index.cgi/about/faq/index.about">FAQ</a></div>

                </div>

                <div id="blue">
                    <div id="submenu_titel">OPEN RADIO ARCHIVE</div>
                    <reboot-play button="http://gurke.b.lab.net/reboot.fm/blosxom/themes/images/streamicon.png"/>
                    <reboot-play/>
                </div>

                <div id="submenu_text">
                    REBOOT.FM IS A PROJECT BY <a href="http://www.bootlab.org" target="blank">BOOTLAB.ORG</a>,
                    FUNDED BY <a href="http://www.kulturstiftung-des-bundes.de/" target="blank">KULTURSTIFTUNG
                    DES BUNDES.</a>
                </div>

                <div id="submenu_text">
                    <br/>
                    <a href="http://oma.sf.net/"><img src="/img/omatrans.png" alt="pwrd by oma"/> </a>
                    <br/> <br/> <br/>
                </div>
            </div>
        </div>


        <div id="middlenav">
            <div id="search">SEARCH <br/>
                <form action="/oma-bin/usearch" method="post">
                    <div>
                        <input type="text" name="qstring" size="15" />
                        <input type="submit" value="Search" />
                    </div>
                </form>
            </div>
        </div>


        <div id="main">
            <div id="contents">
                <h3>
                    <ota-location/><br/>
                    <ota-options/>
                </h3>
    
                <div id="title">
                    <a id="exchange"><ota-dc__title__alternative/></a>
                </div>

                <div id="story">

<ota-dc__title/>
<ota-dc__title__alternative/>

<ota-age-desc desc="date:"/>
<ota-age/>
<ota-base-desc desc="host:"/>
<ota-base/>
<ota-expire-desc desc="expire:"/>
<ota-expire/>
<ota-dc__title-desc desc="title:"/> 
<ota-dc__title/> 
<ota-dc__title__alternative-desc desc="program title:"/>
<ota-dc__title__alternative/>
<ota-dc__identifier-desc desc="identifier:"/>
<ota-dc__identifier/>
<ota-dc__publisher-desc desc="publisher:"/>
<ota-dc__publisher/>
<ota-dc__date__issued-desc desc="issued:"/>
<ota-dc__date__issued/>
<ota-dc__date__created-desc desc="created:"/>
<ota-dc__date__created/>
<ota-dc__date__digitized-desc desc="digitized:"/>
<ota-dc__date__digitized/>
<ota-dc__format__extent-desc desc="extent:"/>
<ota-dc__format__extent/>
<ota-dc__format__medium-desc desc="medium:"/>
<ota-dc__format__medium/>
<ota-dc__format__encoding-desc desc="encoding:"/>
<ota-dc__format__encoding/>
<ota-dc__source-desc desc="source:"/>
<ota-dc__source/>
<ota-dc__rights-desc desc="rights:"/>
<ota-dc__rights/>
<ota-dc__rights__license-desc desc="license:"/>
<ota-dc__rights__license/>
<ota-dc__description__toc-desc desc="toc:"/>
<ota-dc__description__toc/>
<ota-dc__description__abstract-desc desc="abstract:"/>
<ota-dc__description__abstract/>
<ota-dc__description__long-desc desc="long:"/>
<ota-dc__description__long/>
<ota-dc__type-desc desc="type:"/>
<ota-dc__type/>
<ota-dc__subject-desc desc="subject:"/>
<ota-dc__subject/>
<ota-dc__language-desc desc="language:"/>
<ota-dc__language/>
<ota-dc__coverage__spatial-desc desc="spatial:"/>
<ota-dc__coverage__spatial/>
<ota-dc__coverage__temporal-desc desc="temporal:"/>
<ota-dc__coverage__temporal/>
<ota-creators/>
<ota-contributors/>
<ota-relations/>
<ota-contributor-desc desc="Contributor:"/>
<ota-contributor/>


                </div>
            </div>

            <div id="blue">
                <div id="contentfooter">&nbsp;</div>
            </div>
        </div>
        <div id="footer">
            reboot.fm Bootlab e.V., Berlin 2003 - http://www.reboot.fm <br />
            | <a href="http://reboot.fm/index.cgi/about/project/index.about">about</a> | <a href="http://reboot.fm/index.cgi/software/modules/index.soft">software</a>
            | <a href="http://reboot.fm/index.cgi/radio/program/index.soft">100 days of radio</a> | <a href="http://reboot.fm/index.cgi/open-archiv/exchange/index.open">open archiv</a> |<br />
            | <a href="http://reboot.fm/index.cgi/news/index.news">news</a> | <a href="http://reboot.fm/index.cgi/letter/index.news">newsletter</a> | <a href="http://reboot.fm/index.cgi/links/index.links">links</a> | <a href="http://reboot.fm/index.cgi/events/index.events">events</a> |
        </div>

</body>
</html>
');
INSERT INTO template VALUES (1, 'opa', '<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>reboot.fm open-archive/exchange</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Script-Type" content="text/javascript" />
<meta http-equiv="Content-Style-Type" content="text/css" />
<link href="http://reboot.fm/blosxom/themes/stylesheets/common.css" rel="stylesheet" type="text/css" />
<link href="http://reboot.fm/blosxom/themes/stylesheets/import.css" rel="stylesheet" type="text/css" />
<link href="http://reboot.fm/blosxom/themes/open/colors.css" rel="stylesheet" type="text/css" />
<link rel="Shortcut Icon" type="image/ico" href="http://reboot.fm/blosxom/themes/images/menu/reboot.ico" />

<script language="JavaScript" type="text/JavaScript">
<!--
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&amp;amp;amp;amp;amp;&amp;amp;amp;amp;amp;(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->
</script>
</head>

<body id="body">

    <div id="container">
        <div id="top">
            <div>
                <img name="plain" src="http://reboot.fm/blosxom/themes/images/menu/spacer.gif" width="1" height="59" alt="" style="background-color: #eeeeed" />
            </div>

            <div id="tab_on" /><a href="http://reboot.fm/index.cgi/news/index.news">NEWS</a></div>

            <ul id="tabnav">
                <li class="tab1"><a href="http://reboot.fm/index.cgi/news/rebootfm/index.news">rebootfm</a></li>
                <li class="tab2"><a href="http://reboot.fm/index.cgi/news/radio/index.news">radio</a></li>
                <li class="tab3"><a href="http://reboot.fm/index.cgi/news/netaudio/index.news">netaudio</a></li>
                <li class="tab4"><a href="http://reboot.fm/index.cgi/news/copyleft/index.news">copyleft</a></li>
                <li class="tab5"><a href="http://reboot.fm/index.cgi/news/mediapolitics/index.news">media politics</a></li>
                <li class="tab6"><a href="http://reboot.fm/index.cgi/events/index.events">events</a></li>
                <li class="tab7"><a href="http://reboot.fm/index.cgi/links/index.links">links</a></li>
                <li class="tab8"><img src="http://reboot.fm/blosxom/themes/images/menu/reiter_end2.png" /></li>
            </ul>
        </div>

        <div id="rightnav">
            <div id="white">
                <div id="blue">
                    <div id="submenu_breadcrumbs"><a href="http://reboot.fm/index.cgi/about/project/index.about">reboot.fm</a> : <a href="http://reboot.fm/index.cgi/open-archive/index.open">open-archive</a> : exchange</div>
                </div>

                <div id="grey">
                    <div id="submenu_titel">ABOUT</div>
                    <div id="submenu_sub"><a href="http://reboot.fm/index.cgi/about/project/index.about">REBOOT.FM</a></div>
                    <div id="submenu_sub"><a href="http://reboot.fm/index.cgi/about/whois/index.about">WHO IS/PARTNERS</a></div>
                    <div id="submenu_sub"><a href="http://reboot.fm/index.cgi/about/contact/index.about">CONTACT</a></div>
                    <div id="submenu_sub"><a href="http://reboot.fm/index.cgi/about/press/index.about">PRESS</a></div>
                    <div id="submenu_sub"><a href="http://reboot.fm/index.cgi/about/faq/index.about">FAQ</a></div>

                </div>

                <div id="blue">
                    <div id="submenu_titel">OPEN RADIO ARCHIVE</div>
                    <reboot-play button="http://gurke.b.lab.net/reboot.fm/blosxom/themes/images/streamicon.png"/>
                    <reboot-play/>
                </div>

                <div id="submenu_text">
                    REBOOT.FM IS A PROJECT BY <a href="http://www.bootlab.org" target="blank">BOOTLAB.ORG</a>,
                    FUNDED BY <a href="http://www.kulturstiftung-des-bundes.de/" target="blank">KULTURSTIFTUNG
                    DES BUNDES.</a>
                </div>

                <div id="submenu_text">
                    <br/>
                    <a href="http://oma.sf.net/"><img src="/img/omatrans.png" alt="pwrd by oma"/> </a>
                    <br/> <br/> <br/>
                </div>
                <div id="white">
                    <div id="submenu_titel">OMA Tree View</div>
                    <tree-view />
                </div>
            </div>
        </div>


        <div id="middlenav">
            <div id="search">SEARCH <br/>
                <form action="/oma-bin/usearch" method="post">
                    <div>
                        <input type="text" name="qstring" size="15" />
                        <input type="submit" value="Search" />
                    </div>
                </form>
            </div>
        </div>


        <div id="main">
            <div id="contents">
                <h3>
                    <opa-location/><br/>
                    <opa-options/>
                </h3>
    
                <div id="title">
                    <a id="exchange"><opa-dc__title/></a>
                </div>

                <div id="story">
<opa-dc__title__alternative/><br/>
</div>
<opa-dc__identifier/>
<br/>
<div id="story">
<opa-age-desc desc="date:"/>
<opa-age/>
<opa-base-desc desc="host:"/>
<opa-base/>
<opa-expire-desc desc="expire:"/>
<opa-expire/>
<opa-dc__title-desc desc="title:"/> 
<opa-dc__title/> 
<opa-dc__publisher-desc desc="publisher:"/>
<opa-dc__publisher/>
<opa-dc__date__issued-desc desc="issued:"/>
<opa-dc__date__issued/>
<opa-dc__date__created-desc desc="created:"/>
<opa-dc__date__created/>
<opa-dc__date__digitized-desc desc="digitized:"/>
<opa-dc__date__digitized/>
<opa-dc__format__extent-desc desc="extent:"/>
<opa-dc__format__extent/>
<opa-dc__format__medium-desc desc="medium:"/>
<opa-dc__format__medium/>
<opa-dc__format__encoding-desc desc="encoding:"/>
<opa-dc__format__encoding/>
<opa-dc__source-desc desc="source:"/>
<opa-dc__source/>
<opa-dc__rights-desc desc="rights:"/>
<opa-dc__rights/>
<opa-dc__rights__license-desc desc="license:"/>
<opa-dc__rights__license/>
<opa-dc__description__toc-desc desc="toc:"/>
<opa-dc__description__toc/>
<opa-dc__description__abstract-desc desc="abstract:"/>
<opa-dc__description__abstract/>
<opa-dc__description__long-desc desc="long:"/>
<opa-dc__description__long/>
<opa-dc__type-desc desc="type:"/>
<opa-dc__type/>
<opa-dc__subject-desc desc="subject:"/>
<opa-dc__subject/>
<opa-dc__language-desc desc="language:"/>
<opa-dc__language/>
<opa-dc__coverage__spatial-desc desc="spatial:"/>
<opa-dc__coverage__spatial/>
<opa-dc__coverage__temporal-desc desc="temporal:"/>
<opa-dc__coverage__temporal/>
<opa-creators/>
<opa-contributors/>
<opa-relations/>
<opa-contributor-desc desc="Contributor:"/>
<opa-contributor/>

                </div>
            </div>

            <div id="blue">
                <div id="contentfooter">&nbsp;</div>
            </div>
        </div>
        <div id="footer">
            reboot.fm Bootlab e.V., Berlin 2003 - http://www.reboot.fm <br />
            | <a href="http://reboot.fm/index.cgi/about/project/index.about">about</a> | <a href="http://reboot.fm/index.cgi/software/modules/index.soft">software</a>
            | <a href="http://reboot.fm/index.cgi/radio/program/index.soft">100 days of radio</a> | <a href="http://reboot.fm/index.cgi/open-archiv/exchange/index.open">open archiv</a> |<br />
            | <a href="http://reboot.fm/index.cgi/news/index.news">news</a> | <a href="http://reboot.fm/index.cgi/letter/index.news">newsletter</a> | <a href="http://reboot.fm/index.cgi/links/index.links">links</a> | <a href="http://reboot.fm/index.cgi/events/index.events">events</a> |
        </div>

</body>
</html>
');
INSERT INTO template VALUES (3, 'reboot', '<?xml version="1.0"?>
<!DOCTYPE rdf:RDF PUBLIC "-//DUBLIN CORE//DCMES DTD 2001 11 28//EN" "http://dublincore.org/documents/2001/11/28/dcmes-xml/dcmes-xml-dtd.dtd">
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc="http://purl.org/dc/elements/1.1/">
<rdf:Description> 
<dc:title><reboot-dc__title/></dc:title>
<dc:title:alternative><reboot-dc__title__alternative/></dc:title:alternative>
<dc:identifier><reboot-dc__identifier/></dc:identifier>
<dc:publisher><reboot-dc__publisher/></dc:publisher>
<dc:date:issued><reboot-dc__date__issued/></dc:date:issued>
<dc:date:created><reboot-dc__date__created/></dc:date:created>
<dc:date:digitized><reboot-dc__date__digitized/></dc:date:digitized>
<dc:format:extent><reboot-dc__format__extent/></dc:format:extent>
<dc:format:medium><reboot-dc__format__medium/></dc:format:medium>
<dc:format:encoding><reboot-dc__format__encoding/></dc:format:encoding>
<dc:source><reboot-dc__source/></dc:source>
<dc:rights><reboot-dc__rights/></dc:rights>
<dc:rights:license><reboot-dc__rights__license/></dc:rights:license>
<dc:description:toc><reboot-dc__description__toc/></dc:description:toc>
<dc:description:abstract><reboot-dc__description__abstract/></dc:description:abstract>
<dc:description:long><reboot-dc__description__long/></dc:description:long>
<dc:type><reboot-dc__type/></dc:type>
<dc:subject><reboot-dc__subject/></dc:subject>
<dc:language><reboot-dc__language/></dc:language>
<dc:coverage:spatial><reboot-dc__coverage__spatial/></dc:coverage:spatial>
<dc:coverage:temporal><reboot-dc__coverage__temporal/></dc:coverage:temporal>
<reboot-creators/>
<reboot-contributors/>
<reboot-relations/>
</rdf:Description>
</rdf:RDF>
');
INSERT INTO template VALUES (1, 'search_bottom', '</div>
</body>
</html>
');
INSERT INTO template VALUES (1, 'homepage_head', '<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>reboot.fm open-archive/exchange</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<link rel="stylesheet" type="text/css" href="/reboot.css" media="all"/>
</head><body>

<div id="top">
<table width="100%" height="60" border="0" cellpadding="0" cellspacing="0" background="http://news.reboot.fm/rolux/images/background.gif">
  <tr>
    <td align="left"><img src="http://news.reboot.fm/rolux/images/reboot.gif" width="300" height="60" border="0" /></td>
    <td align="right"><a href="http://reboot.fm" target="_blank"><img src="http://news.reboot.fm/rolux/banners/reboot.wireless.gif" width="468" height="60" border="0" alt="" /></a></td>
  </tr>
</table>

  <table cellspacing="0" cellpadding="0" width="100%" class="subsite-header" border="0">
    <tr class="subsite-header">
      <td class="system-name">
          <a href="http://100tage.reboot.fm/about/" class="subsite-subsection">about</a> &nbsp;&nbsp;&nbsp;
          <a href="http://100tage.reboot.fm/programs/" class="subsite-subsection">program</a> &nbsp;&nbsp;&nbsp;
          <a href="http://100tage.reboot.fm/contribute/" class="subsite-subsection">contribute</a> &nbsp;&nbsp;&nbsp;
          <a href="http://archive.reboot.fm/" class="subsite-subsection">archive</a> &nbsp;&nbsp;&nbsp;
          <a href="http://100tage.reboot.fm/chat/" class="subsite-subsection">chat</a> &nbsp;&nbsp;&nbsp;
          <a href="http://100tage.reboot.fm/forums/" class="subsite-subsection">forum</a> &nbsp;&nbsp;&nbsp;
          <a href="http://100tage.reboot.fm/software/" class="subsite-subsection">software</a> &nbsp;&nbsp;&nbsp;
          <a href="http://100tage.reboot.fm/links/" class="subsite-subsection">links</a> &nbsp;&nbsp;&nbsp;
          <a href="http://100tage.reboot.fm/help/" class="subsite-subsection">help</a> &nbsp;&nbsp;&nbsp;
      </td>
      <td align="right">
            <a class="subsite-subsection" href="https://archive.reboot.fm/oma-bin/go">login</a>
      </td>
    </tr>
  </table>
</div>


<div id="left">

<span id="header">search</span>
<p>
<form method="post" action="/oma-bin/usearch">
<input type="text" name="qstring" />
</form>
</p>
<p>
<img align="middle"  src="http://gurke.b.lab.net/reboot.fm/blosxom/themes/images/streamicon.png"/>
<a href="http://100tage.reboot.fm/stream/rebootfm.m3u">Live stream</a>
</p>
<br/>
<span id="header">OMA directory</span>
<br/>
<tree-view />

</div>
<div id="oops">
</div>');
INSERT INTO template VALUES (1, 'meta', '<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>reboot.fm open-archive/exchange</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<link rel="stylesheet" type="text/css" href="/reboot.css" media="all"/>
</head><body>

<div id="top">
<table width="100%" height="60" border="0" cellpadding="0" cellspacing="0" background="http://news.reboot.fm/rolux/images/background.gif">
  <tr>
    <td align="left"><img src="http://news.reboot.fm/rolux/images/reboot.gif" width="300" height="60" border="0" /></td>
    <td align="right"><a href="http://reboot.fm" target="_blank"><img src="http://news.reboot.fm/rolux/banners/reboot.wireless.gif" width="468" height="60" border="0" alt="" /></a></td>
  </tr>
</table>

  <table cellspacing="0" cellpadding="0" width="100%" class="subsite-header" border="0">
    <tr class="subsite-header">
      <td class="system-name">
          <a href="http://100tage.reboot.fm/about/" class="subsite-subsection">about</a> &nbsp;&nbsp;&nbsp;
          <a href="http://100tage.reboot.fm/programs/" class="subsite-subsection">program</a> &nbsp;&nbsp;&nbsp;
          <a href="http://100tage.reboot.fm/contribute/" class="subsite-subsection">contribute</a> &nbsp;&nbsp;&nbsp;
          <a href="http://archive.reboot.fm/" class="subsite-subsection">archive</a> &nbsp;&nbsp;&nbsp;
          <a href="http://100tage.reboot.fm/chat/" class="subsite-subsection">chat</a> &nbsp;&nbsp;&nbsp;
          <a href="http://100tage.reboot.fm/forums/" class="subsite-subsection">forum</a> &nbsp;&nbsp;&nbsp;
          <a href="http://100tage.reboot.fm/software/" class="subsite-subsection">software</a> &nbsp;&nbsp;&nbsp;
          <a href="http://100tage.reboot.fm/links/" class="subsite-subsection">links</a> &nbsp;&nbsp;&nbsp;
          <a href="http://100tage.reboot.fm/help/" class="subsite-subsection">help</a> &nbsp;&nbsp;&nbsp;
      </td>
      <td align="right">
            <a class="subsite-subsection" href="https://archive.reboot.fm/oma-bin/go">login</a>
      </td>
    </tr>
  </table>
</div>


<div id="left">
<span id="header">search</span>
<p>
<form method="post" action="/oma-bin/usearch">
<input type="text" name="qstring" />
</form></p>
<p>
<img align="middle"  src="http://gurke.b.lab.net/reboot.fm/blosxom/themes/images/streamicon.png"/>
<a href="http://100tage.reboot.fm/stream/rebootfm.m3u">Live stream</a>
</p>
<br/>
<span id="header">OMA directory</span>
<br/>
<tree-view />

</div>


<div id="middle">

<span id="assets">
<reboot-desc desc="LISTEN"/><br/>
<reboot/>
<br/>
<pictures-desc desc="IMAGES"/><br/>
<pictures/>
</span>

<h3>
<location/><br/>
<options/>
</h3>
<reboot-dc__title/>
<pageswitch/>
<br/>


<texts/>
</div>
</body>
</html>
');
INSERT INTO template VALUES (1, 'reboot', '<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>reboot.fm open-archive/exchange</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<link rel="stylesheet" type="text/css" href="/reboot.css" media="all"/>
</head><body>

<div id="top">
<table width="100%" height="60" border="0" cellpadding="0" cellspacing="0" background="http://news.reboot.fm/rolux/images/background.gif">
  <tr>
    <td align="left"><img src="http://news.reboot.fm/rolux/images/reboot.gif" width="300" height="60" border="0" /></td>
    <td align="right"><a href="http://reboot.fm" target="_blank"><img src="http://news.reboot.fm/rolux/banners/reboot.wireless.gif" width="468" height="60" border="0" alt="" /></a></td>
  </tr>
</table>

  <table cellspacing="0" cellpadding="0" width="100%" class="subsite-header" border="0">
    <tr class="subsite-header">
      <td class="system-name">
          <a href="http://100tage.reboot.fm/about/" class="subsite-subsection">about</a> &nbsp;&nbsp;&nbsp;
          <a href="http://100tage.reboot.fm/programs/" class="subsite-subsection">program</a> &nbsp;&nbsp;&nbsp;
          <a href="http://100tage.reboot.fm/contribute/" class="subsite-subsection">contribute</a> &nbsp;&nbsp;&nbsp;
          <a href="http://archive.reboot.fm/" class="subsite-subsection">archive</a> &nbsp;&nbsp;&nbsp;
          <a href="http://100tage.reboot.fm/chat/" class="subsite-subsection">chat</a> &nbsp;&nbsp;&nbsp;
          <a href="http://100tage.reboot.fm/forums/" class="subsite-subsection">forum</a> &nbsp;&nbsp;&nbsp;
          <a href="http://100tage.reboot.fm/software/" class="subsite-subsection">software</a> &nbsp;&nbsp;&nbsp;
          <a href="http://100tage.reboot.fm/links/" class="subsite-subsection">links</a> &nbsp;&nbsp;&nbsp;
          <a href="http://100tage.reboot.fm/help/" class="subsite-subsection">help</a> &nbsp;&nbsp;&nbsp;
      </td>
      <td align="right">
            <a class="subsite-subsection" href="https://archive.reboot.fm/oma-bin/go">login</a>
      </td>
    </tr>
  </table>
</div>


<div id="left">
<span id="header">search</span>
<p>
<form method="post" action="/oma-bin/usearch">
<input type="text" name="qstring" />
</form>
</p>
<p>
<img align="middle"  src="http://gurke.b.lab.net/reboot.fm/blosxom/themes/images/streamicon.png"/>
<a href="http://100tage.reboot.fm/stream/rebootfm.m3u">Live stream</a>
</p>
<br/>
<span id="header">OMA directory</span>
<br/>
<tree-view />

</div>

<div id="middle">
<h3>
<reboot-location/><br/>
<reboot-options/><br/>
</h3>
<h2>
<reboot-play button="http://gurke.b.lab.net/reboot.fm/blosxom/themes/images/streamicon.png"/>
<reboot-play/>
</h2>
<p/>
<p>
<reboot-dc__title__alternative-desc desc="program title:"/>
<b><reboot-dc__title__alternative/></b>
</p>
<p>
<reboot-creators-desc desc="Creator: "/>
<reboot-creators/>
</p><p>
<reboot-contributors-desc desc="Contributor:"/>
<reboot-contributors/>
</p>
<br/>
<b><reboot-dc__description__toc-desc desc="toc:"/></b><p/>
<reboot-dc__description__toc/>
<b><reboot-dc__description__abstract-desc desc="abstract:"/></b><p/>
<reboot-dc__description__abstract/>
<b><reboot-dc__description__long-desc desc="long:"/></b><p/>
<reboot-dc__description__long/>
<br />
<p>
<reboot-dc__publisher-desc desc="publisher:"/> 
<b><reboot-dc__publisher/></b>
</p><p>
<reboot-dc__date__issued-desc desc="issued:"/>
<b><reboot-dc__date__issued/></b>
</p><p>
<reboot-dc__date__created-desc desc="created:"/>     
<b><reboot-dc__date__created/></b> 
</p><p>
<reboot-dc__date__digitized-desc desc="Imported at:"/>
<b><reboot-dc__date__digitized/></b>
</p><p>
<reboot-dc__format__extent-desc desc="extent:"/>
<b><reboot-dc__format__extent/></b>
</p><p>
<reboot-dc__format__medium-desc desc="medium:"/>
<b><reboot-dc__format__medium/></b>
</p><p>
<reboot-dc__format__encoding-desc desc="encoding:"/>
<b><reboot-dc__format__encoding/></b>
</p><p>
<reboot-dc__source-desc desc="source:"/>
<b><reboot-dc__source/></b>
</p><p>
<reboot-dc__rights-desc desc="rights:"/>
<b><reboot-dc__rights/></b>
</p><p>
<reboot-dc__rights__license-desc desc="license:"/>
<b><b><reboot-dc__rights__license/></b></b>
</p><p>
<reboot-dc__type-desc desc="type:"/>
<b><reboot-dc__type/></b>
</p><p>
<reboot-dc__subject-desc desc="subject:"/>
<b><reboot-dc__subject/></b>
</p><p>
<reboot-dc__language-desc desc="language:"/>
<b><reboot-dc__language/></b>
</p><p>
<reboot-dc__coverage__spatial-desc desc="spatial:"/>
<b><reboot-dc__coverage__spatial/></b>
</p><p>
<reboot-dc__coverage__temporal-desc desc="temporal:"/>
<b><reboot-dc__coverage__temporal/></b>
</p><p>
<reboot-expire-desc desc="expire:"/>
<b><reboot-expire/></b>
</p><p>
<reboot-relations/>
</p>
</div>


</body>
</html>
');
INSERT INTO template VALUES (1, 'search_head', '<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>reboot.fm open-archive/exchange</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<link rel="stylesheet" type="text/css" href="/reboot.css" media="all"/>
</head><body>

<div id="top">
<table width="100%" height="60" border="0" cellpadding="0" cellspacing="0" background="http://news.reboot.fm/rolux/images/background.gif">
  <tr>
    <td align="left"><img src="http://news.reboot.fm/rolux/images/reboot.gif" width="300" height="60" border="0" /></td>
    <td align="right"><a href="http://reboot.fm" target="_blank"><img src="http://news.reboot.fm/rolux/banners/reboot.wireless.gif" width="468" height="60" border="0" alt="" /></a></td>
  </tr>
</table>

  <table cellspacing="0" cellpadding="0" width="100%" class="subsite-header" border="0">
    <tr class="subsite-header">
      <td class="system-name">
          <a href="http://100tage.reboot.fm/about/" class="subsite-subsection">about</a> &nbsp;&nbsp;&nbsp;
          <a href="http://100tage.reboot.fm/programs/" class="subsite-subsection">program</a> &nbsp;&nbsp;&nbsp;
          <a href="http://100tage.reboot.fm/contribute/" class="subsite-subsection">contribute</a> &nbsp;&nbsp;&nbsp;
          <a href="http://archive.reboot.fm/" class="subsite-subsection">archive</a> &nbsp;&nbsp;&nbsp;
          <a href="http://100tage.reboot.fm/chat/" class="subsite-subsection">chat</a> &nbsp;&nbsp;&nbsp;
          <a href="http://100tage.reboot.fm/forums/" class="subsite-subsection">forum</a> &nbsp;&nbsp;&nbsp;
          <a href="http://100tage.reboot.fm/software/" class="subsite-subsection">software</a> &nbsp;&nbsp;&nbsp;
          <a href="http://100tage.reboot.fm/links/" class="subsite-subsection">links</a> &nbsp;&nbsp;&nbsp;
          <a href="http://100tage.reboot.fm/help/" class="subsite-subsection">help</a> &nbsp;&nbsp;&nbsp;
      </td>
      <td align="right">
            <a class="subsite-subsection" href="https://archive.reboot.fm/oma-bin/go">login</a>
      </td>
    </tr>
  </table>
</div>


<div id="left">
<span id="header">search</span>
<p>
<form method="post" action="/oma-bin/usearch">
<search-field/>
</form>
</p>
<p>
<img align="middle"  src="http://gurke.b.lab.net/reboot.fm/blosxom/themes/images/streamicon.png"/>
<a href="http://100tage.reboot.fm/stream/rebootfm.m3u">Live stream</a>
</p>
<br/>
<span id="header">OMA directory</span>
<br/>
<tree-view />

</div>


<div id="middle">
');
INSERT INTO template VALUES (1, 'dir', '<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>reboot.fm open-archive/exchange</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<link rel="stylesheet" type="text/css" href="/reboot.css" media="all"/>
</head><body>

<div id="top">
<table width="100%" height="60" border="0" cellpadding="0" cellspacing="0" background="http://news.reboot.fm/rolux/images/background.gif">
  <tr>
    <td align="left"><img src="http://news.reboot.fm/rolux/images/reboot.gif" width="300" height="60" border="0" /></td>
    <td align="right"><a href="http://reboot.fm" target="_blank"><img src="http://news.reboot.fm/rolux/banners/reboot.wireless.gif" width="468" height="60" border="0" alt="" /></a></td>
  </tr>
</table>

  <table cellspacing="0" cellpadding="0" width="100%" class="subsite-header" border="0">
    <tr class="subsite-header">
      <td class="system-name">
          <a href="http://100tage.reboot.fm/about/" class="subsite-subsection">about</a> &nbsp;&nbsp;&nbsp;
          <a href="http://100tage.reboot.fm/programs/" class="subsite-subsection">program</a> &nbsp;&nbsp;&nbsp;
          <a href="http://100tage.reboot.fm/contribute/" class="subsite-subsection">contribute</a> &nbsp;&nbsp;&nbsp;
          <a href="http://archive.reboot.fm/" class="subsite-subsection">archive</a> &nbsp;&nbsp;&nbsp;
          <a href="http://100tage.reboot.fm/chat/" class="subsite-subsection">chat</a> &nbsp;&nbsp;&nbsp;
          <a href="http://100tage.reboot.fm/forums/" class="subsite-subsection">forum</a> &nbsp;&nbsp;&nbsp;
          <a href="http://100tage.reboot.fm/software/" class="subsite-subsection">software</a> &nbsp;&nbsp;&nbsp;
          <a href="http://100tage.reboot.fm/links/" class="subsite-subsection">links</a> &nbsp;&nbsp;&nbsp;
          <a href="http://100tage.reboot.fm/help/" class="subsite-subsection">help</a> &nbsp;&nbsp;&nbsp;
      </td>
      <td align="right">
            <a class="subsite-subsection" href="https://archive.reboot.fm/oma-bin/go">login</a>
      </td>
    </tr>
  </table>
</div>


<div id="left">
<span id="header">search</span>
<p>
<form method="post" action="/oma-bin/usearch">
<input type="text" name="qstring" />
</form>
</p>
<p>
<img align="middle"  src="http://gurke.b.lab.net/reboot.fm/blosxom/themes/images/streamicon.png"/>
<a href="http://100tage.reboot.fm/stream/rebootfm.m3u">Live stream</a>
</p>
<br/>
<span id="header">OMA directory</span>
<br/>
<tree-view />

</div>


<div id="middle">


<h3>
<location/><br/>
<options/>
</h3>
<h3><paging desc="Pages: "/></h3>
<table>
<list-meta />
<list-reboot />
<list-ova />
<list-ova />
<list-ora />
<list-opa />
<list-ota />
</table>
</div>
</body>
</html>

');


--
-- Data for TOC entry 102 (OID 211317)
-- Name: treemap; Type: TABLE DATA; Schema: public; Owner: thomax
--

INSERT INTO treemap VALUES (1, '/', 0, 0);
INSERT INTO treemap VALUES (2, '/Homepage', 3, 0);
INSERT INTO treemap VALUES (3, '/DublinCore', 0, 0);


INSERT INTO users VALUES ('admin', 'OMaWAHasJIEq. ', 'admin@domain.name', 'OMA Admin', 'Street', 'zip', 'City', 'Country', 'http://www.domain.name/');











