search for: html4

Displaying 20 results from an estimated 42 matches for "html4".

Did you mean: html
2012 Aug 07
1
Footnote output not valid
> I just received a report [1] that the footnote output we use in > Python-Markdown (an exact copy of PHP Markdown Extra [3]) is not valid > HTML [3]. If you notice he's using HTML5. At least the footnote syntax > does valid on XHTML1 or HTML4. Anyway, any suggestions on how the > various footnote implementations want to move forward with this? > > [1]: https://github.com/waylan/Python-Markdown/issues/129 > [2]: http://michelf.ca/projects/php-markdown/extra/#fn-output > [3]: http://validator.w3.org/check?uri=http%3A%2F%2F...
2006 Jan 18
4
That ol'' AJAX select box update again : observe_field does nothing
...ase breakpoint @ja = ActionType.find(:all, :conditions => [''job_phase_id = ?'', params[job_phase_id]]) end The prototype.js is called at the head of the shell page ; !DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <title>The Manias Project</title> <%= stylesheet_link_tag "manias", :media => "all" %> <%= javascript...
2012 Aug 07
1
Footnote output not valid.
I just received a report [1] that the footnote output we use in Python-Markdown (an exact copy of PHP Markdown Extra [3]) is not valid HTML [3]. If you notice he's using HTML5. At least the footnote syntax does valid on XHTML1 or HTML4. Anyway, any suggestions on how the various footnote implementations want to move forward with this? [1]: https://github.com/waylan/Python-Markdown/issues/129 [2]: http://michelf.ca/projects/php-markdown/extra/#fn-output [3]: http://validator.w3.org/check?uri=http%3A%2F%2Fblog.posativ.org%2F2012%2...
2008 Oct 20
0
CGI and NET::SSH in the same script problems
I''m perplexed as to why I can run the following just fine from a command line, but when I try to execute from a web browser it crashes. From the command line it prints out... <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"><HTML><BODY><H3>FlyBOB Control Panel</H3><P>cmd=>[echo ''THIS IS A TEST FROM THE REMOTE SHELL''] got stdout: THIS IS A TEST FROM THE REMOTE SHELL cmd=>[echo ''THIS IS A TEST FROM THE REMOTE SHELL''] closing!<...
2007 Sep 28
2
Event.observe doesn't work
Hi, The following simple html doesn''t work with errors, why? <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN""http://www.w3.org/TR/ html4/strict.dtd"> <html> <title>click</title> <head> <h2>Click!</h2> <script type="text/javascript" language="javascript"> Event.observe(''myAnchor'', ''click'', function(e){ alert(''cli...
2012 Dec 17
11
[Puppet Upgrade] Puppet agent does not work
...mon did not work and got heaps errors. I have no idea what made it wrong and how to fix it. Retrieving plugin [0m Failed to generate additional resources using ''eval_generate: Error 500 on SERVER: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" " http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta name="generator" content="Phusion Passenger"> <title>Ruby (Rack) application could not be starte...
2008 Aug 12
1
Problem with using read.csv with web address
...3707 61601 676196 9 LastUpdated 18 November 2004 10 Source Office for National Statistics 11 National Statistics 12 However, I get 107 lines of text. Here is a bit of it: 1 <!DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01//EN http://www.w3.org/TR/html4/strict.dtd><html<http://www.w3.org/TR/html4/strict.dtd%3E%3Chtml> > 2 <head> 3 4 <meta http-equiv=Content-Type content=text/html; charset=iso-8859-1> 5 <meta name=robots content=no follow> 6 <..............> 105 </noscript> 106 </body> 107 <...
2006 Feb 25
7
generating HTML instead of XHTML
After reading http://www.hixie.ch/advocacy/xhtml and having some headaches with IE, I wonder whether helpers can be configured to generate HTML instead of XHTML. -- fxn
2006 Aug 15
2
Apache & FCGI: Premature end of script headers:
...space before argument parentheses ../config/../app/controllers/application.rb:27: warning: already initialized constant EventRepType Status: 500 Internal Server Error Content-Type: text/html <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <body> <h1>Application error</h1> <p>Change this error message for exceptions thrown outside of an action (like in Dispatcher setups or broken Ruby code) in public/500.html</p> </body> </ht> Any help would be very muc...
2006 Apr 27
2
check_box_tag and :disabled => ''disabled'' problem
I''ve been using the check_box_tag to generate checkboxes for an application I am working on and I''ve run into a little hiccup. When I set the options for the checkbox to be { :disabled => "disabled" } the checkbox becomes disabled, as I would expect. However, if I set the checked value to true and keep the disabled option, the value for the checkbox is not returned.
2006 Apr 06
1
Bug? In scriptaculous -- double text drawn one pixel off
...t;give it layout." What''s up with this? (you can see the code in action at the above URL, but i''m pasting it below anyway) Thanks for your help. I love scriptaculous. -Matt Miller <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" " http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <script src="/js/prototype.js" type="text/javascript"></script> <script src="/js/scriptaculous.js" type="text/javascript"></script> <title>CameraPuppy.com</title> <meta htt...
2009 Apr 10
4
rails2.3/ruby1.9: invalid byte sequence in utf-8 with blank?
hi all, anyone seen this controller argument error: invalid byte sequence in utf-8 ror/vendor/rails/activesupport/lib/active_support/core_ext/blank.rb: 50:in `=~'' ror/vendor/rails/activesupport/lib/active_support/core_ext/blank.rb: 50:in `!~'' ror/vendor/rails/activesupport/lib/active_support/core_ext/blank.rb: 50:in `blank?''
2012 Jun 22
6
Definition list as image caption
recently though about image captions, then i realized that this could be achiebed by Markdown Extra's definition list feature: ![alttext](http://exampl.com/img.jpg) : here goes the *caption* What do you think? -------------- next part -------------- An HTML attachment was scrubbed... URL:
2009 Mar 27
1
Images and Alt Tags Acheiving Better Search Engine Ranking
Many years ago, my sister asked me to look at the Google <a href="http://images.google.com/">Images search</a> . When I first saw the page, I thought Google was offering a place for freebie photos before I realized that it was probably searching for and finding the "alt tag" text written in the HTML for website images. "Alt tags" or "alt text"
2006 May 19
6
Multiple dynamic Sortables
I''m writing an appliation that contains several dynamically created lists. I had hoped that the following method for using the Sortable library from scriptaculous would work: 1) create the list 2) create a Sortable for it 3) create another list 4) create a Sortable for it and so on. Unfortunately this doesn''t work. I can''t find any info in the documentation for
2006 Sep 16
5
PHP Markdown 1.0.2b7
This is a new release for PHP Markdown, following Markdown.pl 1.0.2b7 from a few weeks ago. It fix the same bugs, and some more; it also introduce more radical backend changes. It can be downloaded here: <http://www.michelf.com/docs/projets/php-markdown-1.0.2b7.zip> and you can test it on the PHP Markdown Dingus: <http://www.michelf.com/projects/php-markdown/dingus/> This
2019 Oct 12
2
PANDOC
Hola, parece que el problema está relacionado con la versión de Pandoc. La última da problemas, según parece: https://github.com/boxuancui/DataExplorer/issues/119 DataExplorer failed on the iris and mtcars data.frames on 3 of 4 computers today. It took hours, but the problem seems related to newer versions of Pandoc. Only Pandoc 2.6 works with DataExplorer. It will fail with newer versions 2.7
2009 Mar 09
0
Python-Markdown 2.0 Release Candidate
...ribution (off by default), including an "extra" extension which matches PHP Markdown Extra. See the `markdown/extensions/` directory for the full list. * The code has been refactored into a full Python library with a separate command line script. * Optional output of XHTML1 (default) or HTML4 with the option for extensions to add more. * Uses ElementTree to build (X)HTML document rather than home-grown NanoDom. * Most of the differences in Python-Markdown's output compared to perl and/or php have been eliminated. * And much more... See the changelog and [Git log][] for more detai...
2005 Sep 16
2
php and mysql ok but display ? instead of a vowel with accent
php and mysql ok but display the character ? instead of a vowel with accent, i dont know why, i think that mybe can be the configuration of de php.ini, but why? if somebody can helpme, i will be very thankful. bye -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.centos.org/pipermail/centos/attachments/20050916/bc4a579b/attachment.html>
2010 Apr 22
1
Offending Line Break
I recently upgraded to build 2448. After doing so I noticed the "Statistics" and "Settings" buttons associated with the GUI interface no longer aligned correctly on the Index Page. A review of the header.html code revealed an offending <br> on line 18. Removing the <br> corrected the alignment problem. The old code read as; <table