Login
Username:

Password:

Remember me



Lost Password?

Register now!

Sections

Who's Online
163 user(s) are online (115 user(s) are browsing Forums)

Members: 0
Guests: 163

more...

Headlines

 
  Register To Post  

« 1 (2)
Re: Gui4Cli : Bookmark structure manager for OWB, Netsurf and IBrowse
Just popping in
Just popping in


See User information

Go to top
Re: Gui4Cli : Bookmark structure manager for OWB, Netsurf and IBrowse
Not too shy to talk
Not too shy to talk


See User information
@Gazelle

this one does not work properly under aos4 and simplemail !
tried it years ago and always crashed, also the layout of the simplemail .newaddressbook.xml has changed and AFAIK ContactManager is not developped anymore.

I would be very happy if I could print all my contacts with email, post address and phone number within simplemail (or another application which could import these datas and print them as table)

Go to top
Re: Gui4Cli : Bookmark structure manager for OWB, Netsurf and IBrowse
Amigans Defender
Amigans Defender


See User information
@Lio

The sources for CManager v30 are downloadable from http://alfie.altervista.org/ if you fancy fixing it, that version is GPL.

I've not had a single problem with v34.2 on OS4, been using it for years (albeit rarely, Microdot-II uses it as the only address book)

Go to top
Re: Gui4Cli : Bookmark structure manager for OWB, Netsurf and IBrowse
Just popping in
Just popping in


See User information
@Lio

As the addressbook of simplemail ist xml you can use XSLT to transform it into something else, eg. HTML:

<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="/">
  <html>
  <body>
  <h2>Simplemail Addressbook</h2>
  <table border="1">
    <tr bgcolor="#9acd32">
      <th>Alias</th>
      <th>Name</th>
      <th>Emails</th>
      <th>Address (privat)</th>
      <th>Address (work)</th>
    </tr>
    <xsl:apply-templates/>
  </table>
  </body>
  </html>
</xsl:template>

<xsl:template match="newcontact">
  <tr>
    <td><xsl:value-of select="alias"/></td>
    <td><xsl:value-of select="name"/></td>
    <td>
      <xsl:for-each select="email">
        <xsl:value-of select="."/>
          <xsl:if test="not (position()=last())">
            <br />
          </xsl:if>
      </xsl:for-each>
    </td>
    <td><xsl:apply-templates select="private"/></td>
    <td><xsl:apply-templates select="work"/></td>
  </tr>
</xsl:template>

<xsl:template match="private|work">
  <xsl:if test="count(./*) &amp;gt; 0">
    <xsl:value-of select="street"/><br />
    <xsl:value-of select="zip"/><xsl:text> </xsl:text>
    <xsl:value-of select="city"/><br />
    <xsl:value-of select="country"/><br />
  </xsl:if>
</xsl:template>

</xsl:stylesheet>

Go to top
Re: Gui4Cli : Bookmark structure manager for OWB, Netsurf and IBrowse
Just can't stay away
Just can't stay away


See User information
@all

I did add three appwindows appearing on the Workbench, one for each browser. Drag & drop a htm, jpg,gif, png file and it will be loaded in the appropriate browser. In particular this can be an URLlist in htam format as generated by the program's <txt2htm> button. (As for now you have to save such a generated page from the browser)
Drag & drop an other file and it wil be interpreted as being an URLlist.
Not entirely finalised and checked.

I am looking for a NetSurf icon. Anybody ??

Go to top
Re: Gui4Cli : Bookmark structure manager for OWB, Netsurf and IBrowse
Not too shy to talk
Not too shy to talk


See User information
@Gazelle

Quote:

Gazelle wrote:
@MichaelMerkel

You mean like Contact Manager, a centralised system-wide address book


exactly.
but bugfixed and more deeply implemented.
i'm using contact manager for years now. unfortunately it is not widely used. actually yam, owb, timberwolf don't use it
only ibrowse which i really don't use very often these days.

regards...

Go to top
Re: Gui4Cli : Bookmark structure manager for OWB, Netsurf and IBrowse
Not too shy to talk
Not too shy to talk


See User information
@JosDuchIt

I am trying to play with gui4cli but it is a pain to import one object from the "library" window to the new window !

is this due to the composition mode being on ?
how does it work for you ??

@ Gazelle : ok understood will try to get an xml -> html converter for AOS3.x or AOS4.x (dont know any, at least not included in the system)

@ Chris and Michael Merkel : my point was that it crashed badly when IMPORTING current xml address book. it might be ok if you use it for years, therefore not needing to import anything
will make another attempt.

Go to top
Re: Gui4Cli : Bookmark structure manager for OWB, Netsurf and IBrowse
Amigans Defender
Amigans Defender


See User information
@JosDuchIt

Quote:
I am looking for a NetSurf icon. Anybody ??


Something wrong with the one it installs? If so, there are these: http://www.os4depot.net/index.php?fun ... cs/icon/netsurf_icons.lha

Chris

Go to top
Re: Gui4Cli : Bookmark structure manager for OWB, Netsurf and IBrowse
Just can't stay away
Just can't stay away


See User information
@Chris

It did not install one here.

I looked throught the archive again and found it.
Thanks for the link too

Go to top
Re: Gui4Cli : Bookmark structure manager for OWB, Netsurf and IBrowse
Home away from home
Home away from home


See User information
@JosDuchIt
If you want a *modern* (large Update 2 style) Netsurf icon, rather than the tiny old one that comes with Netsurf, then look no further than Mason's "2010_01" icon collection.

Author of the PortablE programming language.
Go to top
Re: Gui4Cli : Bookmark structure manager for OWB, Netsurf and IBrowse
Just can't stay away
Just can't stay away


See User information
@ChrisH

Thanks for the info

I uploaded the new version with 3 appwindows
on the WB screen, drag & drop , paste from clipboard opens the appropriate browser and OWB_.gc does what it has to do
http://users.online.be/AD/OWBGui5.2.lha

Go to top

  Register To Post
« 1 (2)

 




Currently Active Users Viewing This Thread: 1 ( 0 members and 1 Anonymous Users )




Powered by XOOPS 2.0 © 2001-2023 The XOOPS Project