×
Create a new article
Write your page title here:
We currently have 3,189 articles on s23. Type your article name above or create one of the articles listed here!



    s23
    3,189Articles
    in:

    Hyperwave: Difference between revisions

    Content added Content deleted
    imported>RobiH
     
    (133 intermediate revisions by 6 users not shown)
    Line 3: Line 3:


    * http://www.hyperwave.de
    * http://www.hyperwave.de
    * http://s23.org/wikistats/hyperwave_html.php
    * [[User_talk:mutante#Hyperwave-Statistik]]
    * [[User_talk:mutante#Hyperwave-Statistik]]


    == Tasks ==
    == Tasks ==
    <tasks>
    [1] New URL for ID [http://www.wsw-online.de/rootcollection;internal&action=dialog.attributes.action 30] (mutante)
    [1] Paste Method 4. It is bilingual, so I can learn how to merge 05+10 and 07+09 (mutante)
    [1] [[#Code snippets]]: Siehst Du was, was ich nicht sehe? | Was macht denn das "//" am Anfang von $urlpattern = //'@..? ''Das hab ich so vorgefunden.'' Nur Am Anfang jeder Zeile suchen? ''Keine Ahnung, was Took sich dabei gedacht hat.'' Fängt denn auch bei beiden der Quellcode am Anfang der Zeile an? ''Zumindest in diesem Falle, ja.'' Sind Zeilenumbrüche verschieden? ''Nein Sie sind gleich.'' '''Kannst Du es bei Methods 05-10 mal ohne versuchen?''' (mutante)
    [1] Korrigiere Methode 7, daß sie auf den Quelltext [http://his.planet-et.at/rootcollection;internal&action=dialog.attributes.action dieses] Links funktioniert (took)
    [1] Korrigiere Methode 9, daß sie auf den Quelltext aller drei URLs funktioniert (took)
    [2] Add autopasting, formats, coalesced, | after its working (mutante)
    </tasks>


    == Statistics accessible ==
    == No stats at this time ==
    # http://els.pa-feldkirch.ac.at/rootcollection
    # 1185830 https://extranet.hyperwave.com/rootcollection;internal&action=attributes.action
    # http://w01.my-files.de/rootcollection
    # 0386670 http://hw.oeaw.ac.at:8000/rootcollection;internal&action=dialog.attributes.action
    # http://w01.net-files.de/rootcollection
    # 0205748 http://demo.hyperwave.com/rootcollection;internal&action=attributes.action
    # http://www.bancaditalia.it/rootcollection
    # 0211311 http://www.aeiou.at/rootcollection;internal&action=attributes.action
    # http://www.jucs.org/rootcollection
    # 0082234 http://www.informatikdidaktik.de/rootcollection;internal&action=dialog.attributes.action
    # https://pmronline.eads.com/rootcollection

    == Code snippets ==

    === Works with method 05 ===
    <HighlightSyntax>
    <TR><TD ALIGN="RIGHT"><SPAN class=AttrName>Title (English):</SPAN></TD>
    <TD><SPAN class=AttrValue>Hyperwave Root Collection</SPAN></TD></TR>
    </HighlightSyntax>

    === Fails with method 05 ===
    <HighlightSyntax>
    <TR><TD ALIGN="RIGHT"><SPAN class=AttrName>Title (English):</SPAN></TD>
    <TD><SPAN class=AttrValue>Home</SPAN></TD></TR>
    </HighlightSyntax>

    === Works with method 10 ===
    <HighlightSyntax>
    <TR><TD ALIGN="RIGHT"><SPAN class=AttrName>Titel (Deutsch):</SPAN></TD>
    <TD><SPAN class=AttrValue>bid-owl</SPAN></TD></TR>
    </HighlightSyntax>

    === Fails with method 10 ===
    <HighlightSyntax>
    <TR><TD ALIGN="RIGHT"><SPAN class=AttrName>Titel (Deutsch):</SPAN></TD>
    <TD><SPAN class=AttrValue>Elektronische Veröffentlichungen der Universitätsbibliothek Wuppertal</SPAN></TD></TR>
    </HighlightSyntax>

    === hw05.php ===

    <HighlightSyntax>
    IDs 20, 24
    $urlpattern = '@<TR><TD ALIGN="RIGHT"><SPAN class=AttrName>Objects contained:</SPAN></TD>[\\s]'.
    '<TD><SPAN class=AttrValue>([0-9]+).*</SPAN></TD></TR>@';
    $urlpattern = //'@<TR><TD ALIGN="RIGHT"><SPAN class=AttrName>Title (English):</SPAN></TD>[\\s]'.
    '@<TD><SPAN class=AttrValue>(.+)</SPAN></TD></TR>@';
    </HighlightSyntax>

    === hw06.php ===

    <HighlightSyntax>
    ID 21
    $urlpattern = '@<TR><TD ALIGN="RIGHT"><SPAN class=AttrName>Oggetti contenuti:</SPAN></TD>[\\s]'.
    '<TD><SPAN class=AttrValue>([0-9]+).*</SPAN></TD></TR>@';
    $urlpattern = //'@<TR><TD ALIGN="RIGHT"><SPAN class=AttrName>Titolo (Inglese):</SPAN></TD>[\\s]'.
    '@<TD><SPAN class=AttrValue>(.+)</SPAN></TD></TR>@';
    </HighlightSyntax>

    === hw07.php ===

    <HighlightSyntax>
    ID 37
    $urlpattern = '@<TD VALIGN="TOP" ALIGN="RIGHT"><IMG SRC="/wavemaster.internal/v6.2/uistyle/icons/empty.gif" WIDTH="1" HEIGHT="4"><BR><SPAN class=AttrName>Objects&nbsp;contained:</SPAN></TD>[\\s]'.
    '<TD><SPAN class=AttrValue>([0-9]+).*</SPAN></TD></TR>@';
    $urlpattern = //'@<TD VALIGN="TOP" ALIGN="RIGHT"><IMG SRC="/wavemaster.internal/v6.2/uistyle/icons/empty.gif" WIDTH="1" HEIGHT="4"><BR><SPAN class=AttrName>Title&nbsp;(English):</SPAN></TD>[\\s]'.
    '@<TD><SPAN class=AttrValue>(.+)</SPAN>@';
    </HighlightSyntax>

    === hw08.php ===

    <HighlightSyntax>
    ID 28
    $urlpattern = '@<TR><TD ALIGN="RIGHT"><SPAN class=AttrName>Objects contained:</SPAN></TD>[\\s]'.
    '<TD><SPAN class=AttrValue>([0-9]+).*</SPAN></TD></TR>@';
    $urlpattern = //'@<TR><TD ALIGN="RIGHT"><SPAN class=AttrName>Title (German):</SPAN></TD>[\\s]'.
    '@<TD><SPAN class=AttrValue>(.+)</SPAN></TD></TR>@';
    </HighlightSyntax>

    === hw09.php ===

    <HighlightSyntax>
    IDs 18, 19, 25
    $urlpattern = '@<TD VALIGN="TOP" ALIGN="RIGHT"><IMG SRC="/wavemaster.internal/v6.2/uistyle/icons/empty.gif" WIDTH="1" HEIGHT="4"><BR><SPAN class=AttrName>Enthaltene&nbsp;Objekte:</SPAN></TD>[\\s]'.
    '<TD><SPAN class=AttrValue>([0-9]+).*</SPAN></TD></TR>@';
    $urlpattern = //'@<TD VALIGN="TOP" ALIGN="RIGHT"><IMG SRC="/wavemaster.internal/v6.2/uistyle/icons/empty.gif" WIDTH="1" HEIGHT="4"><BR><SPAN class=AttrName>Titel&nbsp;(English):</SPAN></TD>[\\s]'.
    '@<TD><SPAN class=AttrValue>(.+)</SPAN></TD></TR>@';
    </HighlightSyntax>

    === hw10.php ===

    <HighlightSyntax>
    IDs 14, 15
    $urlpattern = '@<TR><TD ALIGN="RIGHT"><SPAN class=AttrName>Enthaltene Objekte:</SPAN></TD>[\\s]'.
    '<TD><SPAN class=AttrValue>([0-9]+).*</SPAN></TD></TR>@';
    $urlpattern = //'@<TR><TD ALIGN="RIGHT"><SPAN class=AttrName>Titel (Deutsch):</SPAN></TD>[\\s]'.
    '@<TD><SPAN class=AttrValue>(.+)</SPAN></TD></TR>@';
    </HighlightSyntax>


    == Statistics not accessible ==
    # http://www.iicm.edu:8000/rootcollection;internal&action=dialog.attributes.action
    # http://legnet.metas.ch/rootcollection;internal&action=dialog.attributes.action


    [[Category:Wiki]]
    [[Category:Wiki]]

    Latest revision as of 10:39, 19 April 2023

    Cookies help us deliver our services. By using our services, you agree to our use of cookies.
    Cookies help us deliver our services. By using our services, you agree to our use of cookies.