Smalles Possible Browser to display python cgi program

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • matthiasjanes

    Smalles Possible Browser to display python cgi program

    Dear everyone,

    I would like to know what would be the smalles possible WebBrowser for
    displaying Python CGI application.

    I developed a few small application with an WebInterface.

    The appplication runs just locally.

    I use CGIHTTPServer.p y Module as a small webserver and Mozilla
    Firebird as Browser.

    Does anyone know of a very small browser which I can directly
    integrate.

    Just the very minimum for this purbose, no bookmarks, no tools, no
    javascript, no flash ......

    just displaying frames, html, forms, python cgi files and images.



    Regards,

    Matthias Janes
  • Cornel Ghiban

    #2
    Re: Smalles Possible Browser to display python cgi program


    try this one:



    On 12 May 2004 23:11:14 -0700
    matthiasjanes@g mx.net (matthiasjanes) wrote:
    [color=blue]
    > Dear everyone,
    >
    > I would like to know what would be the smalles possible WebBrowser for
    > displaying Python CGI application.
    >[/color]

    --
    "Doamne, da-ne macar de cateva ori in viata, puterea de a folosi comanda
    <<Save>> !" -- Mircea Cartarescu

    Comment

    • Lutz Horn

      #3
      Re: Smalles Possible Browser to display python cgi program

      * Cornel Ghiban wrote:[color=blue]
      > * matthiasjanes@g mx.net (matthiasjanes) wrote:[color=green]
      > > I would like to know what would be the smalles possible WebBrowser for
      > > displaying Python CGI application.[/color]
      >
      > try this one:
      > http://jan.kneschke.de/projects/lighttpd/[/color]

      Erm, didn't the OP ask about a browser, not a server? ;)

      Anyway, take a look into the GNU Free Software Directory, category "Web
      browsers"[0] or dmoz[1]. A very small browser is links[2], which has
      both a text and a graphics mode.

      Lutz

      [0] http://www.gnu.org/directory/network/browsers/
      [1] http://www.dmoz.org/Computers/Softwa.../WWW/Browsers/
      [2] http://atrey.karlin.mff.cuni.cz/~clo...nks/index.html

      Comment

      • Graham Fawcett

        #4
        Re: Smalles Possible Browser to display python cgi program

        matthiasjanes@g mx.net (matthiasjanes) wrote in message news:<d588131f. 0405122211.7d21 2bb@posting.goo gle.com>...[color=blue]
        > Dear everyone,
        >
        > I would like to know what would be the smalles possible WebBrowser for
        > displaying Python CGI application.
        >
        > I developed a few small application with an WebInterface.
        >
        > The appplication runs just locally.
        >
        > I use CGIHTTPServer.p y Module as a small webserver and Mozilla
        > Firebird as Browser.
        >
        > Does anyone know of a very small browser which I can directly
        > integrate.
        >
        > Just the very minimum for this purbose, no bookmarks, no tools, no
        > javascript, no flash ......
        >
        > just displaying frames, html, forms, python cgi files and images.[/color]

        Consider using the wxHTML widget in the wxPython GUI library. There's
        a nice writeup on it at IBM DeveloperWorks:



        -- Graham

        Comment

        • JanC

          #5
          Re: Smalles Possible Browser to display python cgi program

          matthiasjanes@g mx.net (matthiasjanes) schreef:
          [color=blue]
          > I would like to know what would be the smalles possible WebBrowser for
          > displaying Python CGI application.
          >
          > I developed a few small application with an WebInterface.
          >
          > The appplication runs just locally.
          >
          > I use CGIHTTPServer.p y Module as a small webserver and Mozilla
          > Firebird as Browser.
          >
          > Does anyone know of a very small browser which I can directly
          > integrate.
          >
          > Just the very minimum for this purbose, no bookmarks, no tools, no
          > javascript, no flash ......
          >
          > just displaying frames, html, forms, python cgi files and images.[/color]

          For Windows there is OffByOne: <http://www.offbyone.co m/>
          Only 450 KiB if you don't need SSL support.

          --
          JanC

          "Be strict when sending and tolerant when receiving."
          RFC 1958 - Architectural Principles of the Internet - section 3.9

          Comment

          • matthiasjanes

            #6
            Re: Smalles Possible Browser to display python cgi program

            JanC <usenet_spam@ja nc.invalid> wrote in message news:<Xns94EA3E 51A6F9FJanC@213 .118.38.102>...[color=blue]
            > matthiasjanes@g mx.net (matthiasjanes) schreef:
            >[color=green]
            > > I would like to know what would be the smalles possible WebBrowser for
            > > displaying Python CGI application.
            > >
            > > I developed a few small application with an WebInterface.
            > >
            > > The appplication runs just locally.
            > >
            > > I use CGIHTTPServer.p y Module as a small webserver and Mozilla
            > > Firebird as Browser.
            > >
            > > Does anyone know of a very small browser which I can directly
            > > integrate.
            > >
            > > Just the very minimum for this purbose, no bookmarks, no tools, no
            > > javascript, no flash ......
            > >
            > > just displaying frames, html, forms, python cgi files and images.[/color]
            >
            > For Windows there is OffByOne: <http://www.offbyone.co m/>
            > Only 450 KiB if you don't need SSL support.[/color]



            Thanks so far to everyone - I forgot to mention that surly I need it
            crossplatform at least Ms-Windows and Linux compatible.


            maybe some more explanations: My application is an python database
            (pysqlite) financial report software, I use the at the moment just
            python cgi scripts to access and display all. (no javascript at all)
            I use the CGIHTTPServer.p y Module as a small webserver and Mozilla
            Firebird as Browser. I would like to intigrate with the app also the
            Webbrowser - as small as possibly. I use frames.

            I might give wxHTML a try or maybe find a downgraded Firebird Browser.

            Thanks so far and if anyone has still some more ideas - happily
            welcomed.

            Matthias Janes

            Comment

            • Fedor

              #7
              Re: Smalles Possible Browser to display python cgi program

              > I use CGIHTTPServer.p y Module as a small webserver and Mozilla[color=blue]
              > Firebird as Browser.
              >
              > Does anyone know of a very small browser which I can directly
              > integrate.[/color]

              Not what you asked, but the module webbrowser uses whatever browser is
              available.

              for example:

              import webbrowser
              webbrowser.open ('http://localhost')

              Fedor


              Comment

              Working...