Please since you know the problem iam facing, please take a loot because i
saw on stackoverflow that you are also deep in python3 knowledge.
At least only for the (1) question

Its very simple for someone who knows.

Στις Πέμ, 30 Αυγ 2018 στις 12:36 μ.μ., ο/η Graham Dumpleton <
[email protected]> έγραψε:

> I gather this is just a Flask question since in other email you say you
> can't get mod_wsgi working. For Flask questions better to ask on a Flask
> list or on StackOverflow.
>
> Graham
>
> On 30 Aug 2018, at 7:15 pm, [email protected] wrote:
>
> Flask app.py
> ==================
> @app.route( '/' )
> @app.route( '/<page>' )
> def index( page ):
>
> # use the variable form template for displaying
> counter = '''<center>
>                 <table bgcolor=black bordercolor=orangered>
>                 td><font size=3 color=lime> Αριθμός Επισκεπτών:
> </font></td>
> <td><a href="{{ url_for( '/log', page='%s' ) }}"><font size=3 color=plum>
> %d </font></a></td>
>                                 </table>
>                         ''' % (page, pagehit)
>
> if page != 'index.html':
>     pdata = redirect( 'http://superhost.gr/cgi-bin/' + page )
>     return pdata
>
>
> Template ndex.html
> ==================
> <div align=right>
>         <a href="{{ url_for( '/', page='some_value' ) }}">        <img
> src="/static/images/π.gif"> </a>
> </div>
>
> <a href="{{ url_for( '/', page='another_value' ) }}">        <img
> src="/static/images/download.gif"></a>
>
>
> 1. All i want ro do is when the user clicks on the images within the html
> tamplate, to pass those variables value to '/' route so to perfrom then
> asome action with those values
>
> The error iam receiving is this:
> ===============================
> builtins.TypeError
> TypeError: index() missing 1 required positional argument: 'page'
>
> I mean i do have <page> declared in route and also do  have 'page' as
> variable to the callback fucntion, why cant it see it?
>
> 2. Also about the redirect funtion iam using... is there a way to get back
> the HTML response of running that cgi-scrit and then add another HTML value
> to that response? I used subprocess and Response but they weren able to
> deliver the content back the pdata variable for display.
> What i actually want to do among other things is from within my flask app
> script to try to run and get theresponse back of a cgi-script
>
> --
> You received this message because you are subscribed to the Google Groups
> "modwsgi" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected].
> To post to this group, send email to [email protected].
> Visit this group at https://groups.google.com/group/modwsgi.
> For more options, visit https://groups.google.com/d/optout.
>
>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "modwsgi" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/modwsgi/RdF_jP6_KE0/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> [email protected].
> To post to this group, send email to [email protected].
> Visit this group at https://groups.google.com/group/modwsgi.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"modwsgi" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/modwsgi.
For more options, visit https://groups.google.com/d/optout.

Reply via email to