Hello,
I am trying to use this python module HTML.py but GAE gives me ImportError: No module named HTML
According to IDLE path browser the path is here:
C:\Python26\lib\site-packages\HTML.py
Can anyone help me to fix this problem?
Thank you
...
I am using <pre> tags to preserve long strings of text that include user-entered line breaks.
When the input into the original form was exactly:
Paragraph 1
Paragraph 2
Paragraph 3
...the pre returns:
Paragraph 1
Paragraph 2
Paragraph 3
In the database, the string is stored:
"Paragraph ...
I'm trying to write an MSIE only HTML page (which I'll call the "Title Page") that allows someone to save a generated HTML webpage (which I'll call "New Page") with a click of a button.
What I found out is that the "Save As" dialog box that appears does not allow for the "New Page" to be saved as UTF-8 without BOM. It is instead, being...
Hi,
I have a web app that has a list of user comments. I want extra options for these comments (vote, reply, etc..) to appear only when the comment itself is mouseover-ed
The best example of what I am looking for would be a youtube video:
http://www.youtube.com/watch?v=s2VzLn6DMCE&ob=av3e
When you go to the comments the options...
<ul id='myid'>
<li id='1'> my text 1 <p id='1' >inside p1 clicked</p></li>
<li id='2'> my text 2 <p id='1' >inside p2 clicked</p></li>
<li id='3'> my text 3 <p id='1' >inside p3 clicked</p></li>
<li id='4'> my text 4 <p id='1' >inside p4 clicked</p></li>
<li id='5'> my text 5 <p id='1' >inside p5 clicked</p></li>
</ul>
...
I have the following function to display the infowindow with tabs on google map using GInfoWindowTab ,the default infowindow is displayed with two tabs ,my question is how can i change the size ,background color and styles of the infowindow and can i add videos into one of the tab in infowindow.
function createMarker(point, name, addre...
The following small snippet of code cannot be changed once deployed (it's in an RIA) so everything must be loaded via a bootstrapper.js file:
<div id="someDivID"></div>
<script type="text/javascript" src="bootstrapper.js"></script>
What's the best way to load up all the js, css, and markup? Is there a better (cleaner, faster, crisper...
I am facing some problem with html drop down. I want to keep the size of the drop down fixed, but when the user click on the drop down, the list should displayed in bigger size so that the entries are not truncated.This is the default behaviour in fiefox, this issue appears only in IE. Can any one suggest some work around for solving thi...
I have the following code to display the info window on the google map when marker is clicked how can i add tabs to the infowindows which is using extinfowindows ,can anyone help to trace out the problem.
function createMarker(point, name, address, imagepath) {
var marker = new GMarker(point, gicons[imagepath]);
var html1 = '<sp...
What is better approach to update html content of some window on page:
1) I can use html template of that window, and when I need to change data described there I simply generate real html and replace old one with new. In this case I have to send from server side both html page with first data (for search engine; I can't fill this data ...
I have a div called "content" which I wish to at least take up the entire height of a window.
So what I did was this:
body
{
min-height:100%;
height:auto !important;
/* The following probably aren't relevant but I'll include them just in case */
min-width:600px;
color: #fff;
font-family:'lucida grande',verdana,helve...
Hello
<div style='width:500px'>
<ul>
<li> some text in 1 line</li>
<li> some text in 1 line</li>
<li> some text 2 line</li>
<li> some 2</li>
<li> 2</li>
</ul>
</div>
I don't know what is the correct css code for display of items in ie like:
first two results automatic fit in first line and rest of the results...
I want one scrollable text area which is disabled.Means user can scroll to see the contents of the text area but will not be able to edit it.
...
Hi guys, i want to apply for this job as description below:
This employer is looking for a competent and experienced student to create a website. You will be required to update web site content through a content management system online. Initially the employer needs an online store product upload and monthly newsletter/VIP voucher con...
I have html with code below:
<pre>
| Date Offense | Count |
Title, Section & Nature of Offense | Concluded | Number(s) |
--------------------------------------------------------------------------
18:2113(a)-BANK ROBBERY | January 27, 2009 | I |
---...
I'm trying to create a div that would have a dynamic width depending on the content inside that div. It works well in Firefox but in IE I get linebreaks, see screenshot below:
The markup looks like this:
<div class="filter-dropdown">
<div class="filter-dropdown-options-wrapper">
<ul>
<li>
<labe...
On this page, the <body> element has a background color of #77BFBC. The image (rv-banner.jpg) set as the background of the <header> element also has a background color of #77BFBC.
On windows (either FF or IE), the two colors blend perfectly. However on FF on the Mac, there is a noticeable difference between the background color of the ...
In HTML, I am adding rows dynamically in a table
I need to give different colors for alternative rows using CSS
How can I acheive this?
...
I am looking for a WYSIWYG editor for my intranet users. It should not show or give them a html option, instead it should have buttons for stuff like bold, italic, bullets, comments, font colour, html links, etc etc.
Which WYSIWYG editor would be best for these needs?
...
Hi.
I'm currently trying to output an image (chart generated with PHP).
After I get all the data I need I just output the image to disk with:
imagepng($img, "img/graf.png", 0);
imagedestroy($img);
Then I call the image on the page, but the browser uses always the cached image instead of the newly generated image.
So I am trying to o...