1.1.7.8. gnr.web.gnrwebutils

Last page update: November 23, 2011

Classes:

External methods:

Complete reference:

1.1.7.8.1. GnrWebPDF

there is no public method.

1.1.7.8.2. External methods

These methods don’t belong to any class.

1.1.7.8.3. gnr.web.gnrwebutils - The complete reference list

class gnr.web.gnrwebutils.GnrWebPDF

TODO

gnr.web.gnrwebutils.plain_redirect(page, params)

Return the following string:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
        <script>
            window.location = '%s?%s';
        </script>
    </head>
    <body>
    </body>
</html>

where in place of the first %s goes the page parameter and in the second %s goes the params parameter.

Parameters:
  • page – TODO
  • params – TODO