<div dir="ltr">To be clear, the results were the same on both browsers.  I've had other webdev colleagues take a look on their Macs and the results were the same as well.  Also, in case it helps, the stack of software are all 64bit.<div><br></div><div>Thanks again everyone.  And sorry about my zip file not coming through.</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Mar 16, 2018 at 2:26 PM, Wil Phan <span dir="ltr"><<a href="mailto:wil@pixar.com" target="_blank">wil@pixar.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Weird.  Okay, here's a Dropbox link to the "test.zip" package:<br><a href="https://www.dropbox.com/s/4ruc3pj29ruu4jv/test.zip?dl=0" target="_blank">https://www.dropbox.com/s/<wbr>4ruc3pj29ruu4jv/test.zip?dl=0</a><br><div><br></div><div>I have tried Firefox and Chrome.  I don't touch the Microsoft browsers, despite running on Windows. :D</div></div><div class="HOEnZb"><div class="h5"><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Mar 16, 2018 at 2:12 PM, sidwoodstock . <span dir="ltr"><<a href="mailto:sidwoodstock@gmail.com" target="_blank">sidwoodstock@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Code still doesn't seem to be coming through. <div><br></div><div>Just as a wild guess--Have you tried other browsers? I've seen all sorts of odd bugs with win10's edge browser.</div><div><br></div><div>-Scott Woodstock<br><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Mar 16, 2018 at 9:00 AM,  <span dir="ltr"><<a href="mailto:flask-request@python.org" target="_blank">flask-request@python.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Send Flask mailing list submissions to<br>
        <a href="mailto:flask@python.org" target="_blank">flask@python.org</a><br>
<br>
To subscribe or unsubscribe via the World Wide Web, visit<br>
        <a href="https://mail.python.org/mailman/listinfo/flask" rel="noreferrer" target="_blank">https://mail.python.org/mailma<wbr>n/listinfo/flask</a><br>
or, via email, send a message with subject or body 'help' to<br>
        <a href="mailto:flask-request@python.org" target="_blank">flask-request@python.org</a><br>
<br>
You can reach the person managing the list at<br>
        <a href="mailto:flask-owner@python.org" target="_blank">flask-owner@python.org</a><br>
<br>
When replying, please edit your Subject line so it is more specific<br>
than "Re: Contents of Flask digest..."<br>
<br>
<br>
Today's Topics:<br>
<br>
   1. Re: HTML content gets cut off (Stephen Mazzei)<br>
   2. Re: HTML content gets cut off (Wil Phan)<br>
<br>
<br>
------------------------------<wbr>------------------------------<wbr>----------<br>
<br>
Message: 1<br>
Date: Thu, 15 Mar 2018 19:42:04 -0400<br>
From: Stephen Mazzei <<a href="mailto:mazzei.stephen.a@gmail.com" target="_blank">mazzei.stephen.a@gmail.com</a>><br>
To: Wil Phan <<a href="mailto:wil@pixar.com" target="_blank">wil@pixar.com</a>><br>
Cc: <a href="mailto:flask@python.org" target="_blank">flask@python.org</a><br>
Subject: Re: [Flask] HTML content gets cut off<br>
Message-ID:<br>
        <CANZkwgUmdgh=<a href="mailto:PmwbzM1-yA4y%2BvZtW2-n9CdDmY-V1OxcF_DKJw@mail.gmail.com" target="_blank">PmwbzM1-yA4y+vZt<wbr>W2-n9CdDmY-V1OxcF_DKJw@mail.gm<wbr>ail.com</a>><br>
Content-Type: text/plain; charset="utf-8"<br>
<br>
Can you post your code if its not to long?<br>
<br>
On Mar 15, 2018 7:40 PM, "Wil Phan" <<a href="mailto:wil@pixar.com" target="_blank">wil@pixar.com</a>> wrote:<br>
<br>
> I don't believe so, but I'm not quite sure what you mean.  The HTML is<br>
> grabbed by the "render_template" function and the rest is handled by<br>
> CGI/Apache/Flask.<br>
><br>
> On Thu, Mar 15, 2018 at 4:26 PM, Stephen Mazzei <<br>
> <a href="mailto:mazzei.stephen.a@gmail.com" target="_blank">mazzei.stephen.a@gmail.com</a>> wrote:<br>
><br>
>> Are you setting your data as a session variable then passing it?<br>
>><br>
>> On Mar 15, 2018 6:58 PM, "Wil Phan" <<a href="mailto:wil@pixar.com" target="_blank">wil@pixar.com</a>> wrote:<br>
>><br>
>>> Hello everyone,<br>
>>><br>
>>> I'm trying to run Flask with Apache CGI on Windows but it won't load all<br>
>>> the HTML content.  It misses the last few-to-several lines.  Apache CGI<br>
>>> alone (no Flask involved) has no problems.  Testing Flask using its<br>
>>> internal web server and the same Python script works fine too.<br>
>>><br>
>>> The HTML output is pretty small, just about one screenful.  When I try<br>
>>> to output just a tiny bit of HTML it still gets cut off.  The CSS is cut<br>
>>> off too.  I tried stripping almost all the HTML and code out of the<br>
>>> template to a bare minimum but the results were the same.  Sending HTML<br>
>>> directly from the Python script (without using the template) has the same<br>
>>> results.<br>
>>><br>
>>> I'm running Windows 10, Apache 2.4.29, Python 2.7.13, Flask 0.12.2.<br>
>>> There are no Apache errors.  The Flask web server has no errors either when<br>
>>> I'm using that to test, but that's expected since all the HTML is sent to<br>
>>> the browser in this case.  I'm attaching a stripped down version of the<br>
>>> scripts, cgi, template, and css files (which I tested to have the same<br>
>>> results with HTML getting cut off).<br>
>>><br>
>>> Does anyone have any ideas on this?<br>
>>><br>
>>> Thanks in advanced for taking a look,<br>
>>> wil<br>
>>><br>
>>><br>
>>> PS.  I'm new to Flask so my apologies if there's a better place to post<br>
>>> this.<br>
>>><br>
>>><br>
>>><br>
>>><br>
>>><br>
>>> ______________________________<wbr>_________________<br>
>>> Flask mailing list<br>
>>> <a href="mailto:Flask@python.org" target="_blank">Flask@python.org</a><br>
>>> <a href="https://mail.python.org/mailman/listinfo/flask" rel="noreferrer" target="_blank">https://mail.python.org/mailma<wbr>n/listinfo/flask</a><br>
>>><br>
>>><br>
><br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: <<a href="http://mail.python.org/pipermail/flask/attachments/20180315/c0c3c87a/attachment-0001.html" rel="noreferrer" target="_blank">http://mail.python.org/piperm<wbr>ail/flask/attachments/20180315<wbr>/c0c3c87a/attachment-0001.html</a><wbr>><br>
<br>
------------------------------<br>
<br>
Message: 2<br>
Date: Thu, 15 Mar 2018 17:35:37 -0700<br>
From: Wil Phan <<a href="mailto:wil@pixar.com" target="_blank">wil@pixar.com</a>><br>
To: Stephen Mazzei <<a href="mailto:mazzei.stephen.a@gmail.com" target="_blank">mazzei.stephen.a@gmail.com</a>><br>
Cc: <a href="mailto:flask@python.org" target="_blank">flask@python.org</a><br>
Subject: Re: [Flask] HTML content gets cut off<br>
Message-ID:<br>
        <CAAG8=PK4CES+KFkOeyAgQsHa2YEV<wbr>=Yit7Rae0=<a href="mailto:AxW0DTsWfsew@mail.gmail.com" target="_blank">AxW0DTsWfsew@mail.gm<wbr>ail.com</a>><br>
Content-Type: text/plain; charset="utf-8"<br>
<br>
I attached a package of files in my original email.  Did that no go through?<br>
<br>
Here it is again.<br>
<br>
<br>
<br>
On Thu, Mar 15, 2018 at 4:42 PM, Stephen Mazzei <<a href="mailto:mazzei.stephen.a@gmail.com" target="_blank">mazzei.stephen.a@gmail.com</a>><br>
wrote:<br>
<br>
> Can you post your code if its not to long?<br>
><br>
> On Mar 15, 2018 7:40 PM, "Wil Phan" <<a href="mailto:wil@pixar.com" target="_blank">wil@pixar.com</a>> wrote:<br>
><br>
>> I don't believe so, but I'm not quite sure what you mean.  The HTML is<br>
>> grabbed by the "render_template" function and the rest is handled by<br>
>> CGI/Apache/Flask.<br>
>><br>
>> On Thu, Mar 15, 2018 at 4:26 PM, Stephen Mazzei <<br>
>> <a href="mailto:mazzei.stephen.a@gmail.com" target="_blank">mazzei.stephen.a@gmail.com</a>> wrote:<br>
>><br>
>>> Are you setting your data as a session variable then passing it?<br>
>>><br>
>>> On Mar 15, 2018 6:58 PM, "Wil Phan" <<a href="mailto:wil@pixar.com" target="_blank">wil@pixar.com</a>> wrote:<br>
>>><br>
>>>> Hello everyone,<br>
>>>><br>
>>>> I'm trying to run Flask with Apache CGI on Windows but it won't load<br>
>>>> all the HTML content.  It misses the last few-to-several lines.  Apache CGI<br>
>>>> alone (no Flask involved) has no problems.  Testing Flask using its<br>
>>>> internal web server and the same Python script works fine too.<br>
>>>><br>
>>>> The HTML output is pretty small, just about one screenful.  When I try<br>
>>>> to output just a tiny bit of HTML it still gets cut off.  The CSS is cut<br>
>>>> off too.  I tried stripping almost all the HTML and code out of the<br>
>>>> template to a bare minimum but the results were the same.  Sending HTML<br>
>>>> directly from the Python script (without using the template) has the same<br>
>>>> results.<br>
>>>><br>
>>>> I'm running Windows 10, Apache 2.4.29, Python 2.7.13, Flask 0.12.2.<br>
>>>> There are no Apache errors.  The Flask web server has no errors either when<br>
>>>> I'm using that to test, but that's expected since all the HTML is sent to<br>
>>>> the browser in this case.  I'm attaching a stripped down version of the<br>
>>>> scripts, cgi, template, and css files (which I tested to have the same<br>
>>>> results with HTML getting cut off).<br>
>>>><br>
>>>> Does anyone have any ideas on this?<br>
>>>><br>
>>>> Thanks in advanced for taking a look,<br>
>>>> wil<br>
>>>><br>
>>>><br>
>>>> PS.  I'm new to Flask so my apologies if there's a better place to post<br>
>>>> this.<br>
>>>><br>
>>>><br>
>>>><br>
>>>><br>
>>>><br>
>>>> ______________________________<wbr>_________________<br>
>>>> Flask mailing list<br>
>>>> <a href="mailto:Flask@python.org" target="_blank">Flask@python.org</a><br>
>>>> <a href="https://mail.python.org/mailman/listinfo/flask" rel="noreferrer" target="_blank">https://mail.python.org/mailma<wbr>n/listinfo/flask</a><br>
>>>><br>
>>>><br>
>><br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: <<a href="http://mail.python.org/pipermail/flask/attachments/20180315/46c638a0/attachment-0001.html" rel="noreferrer" target="_blank">http://mail.python.org/piperm<wbr>ail/flask/attachments/20180315<wbr>/46c638a0/attachment-0001.html</a><wbr>><br>
-------------- next part --------------<br>
A non-text attachment was scrubbed...<br>
Name: test.zip<br>
Type: application/x-zip-compressed<br>
Size: 2513 bytes<br>
Desc: not available<br>
URL: <<a href="http://mail.python.org/pipermail/flask/attachments/20180315/46c638a0/attachment-0001.bin" rel="noreferrer" target="_blank">http://mail.python.org/piperm<wbr>ail/flask/attachments/20180315<wbr>/46c638a0/attachment-0001.bin</a>><br>
<br>
------------------------------<br>
<br>
Subject: Digest Footer<br>
<br>
______________________________<wbr>_________________<br>
Flask mailing list<br>
<a href="mailto:Flask@python.org" target="_blank">Flask@python.org</a><br>
<a href="https://mail.python.org/mailman/listinfo/flask" rel="noreferrer" target="_blank">https://mail.python.org/mailma<wbr>n/listinfo/flask</a><br>
<br>
<br>
------------------------------<br>
<br>
End of Flask Digest, Vol 33, Issue 15<br>
******************************<wbr>*******<br>
</blockquote></div><br></div></div></div>
<br>______________________________<wbr>_________________<br>
Flask mailing list<br>
<a href="mailto:Flask@python.org" target="_blank">Flask@python.org</a><br>
<a href="https://mail.python.org/mailman/listinfo/flask" rel="noreferrer" target="_blank">https://mail.python.org/mailma<wbr>n/listinfo/flask</a><br>
<br></blockquote></div><br></div>
</div></div></blockquote></div><br></div>