Guest User

Untitled

a guest
Jun 21st, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.76 KB | None | 0 0
  1. *** html-helper-mode_default.el 2004-05-17 01:01:09.000000000 +0900
  2. --- html-helper-mode.el 2010-11-11 16:51:48.000000000 +0900
  3. ***************
  4. *** 310,316 ****
  5.  
  6. (defvar html-helper-new-PHP-buffer-template
  7. '("<html> <head>\n"
  8. ! "<? PHP\n\n?>"
  9. "</head><body>\n"
  10. "<? /* " html-helper-timestamp-start "\n\n"
  11. html-helper-timestamp-end
  12. --- 310,316 ----
  13.  
  14. (defvar html-helper-new-PHP-buffer-template
  15. '("<html> <head>\n"
  16. ! "<?php\n\n?>"
  17. "</head><body>\n"
  18. "<? /* " html-helper-timestamp-start "\n\n"
  19. html-helper-timestamp-end
  20. ***************
  21. *** 880,894 ****
  22. (html-helper-insert-or-wipe "border" )
  23. (html-helper-insert-or-wipe "width" )">\n</table>"))
  24. (table "r" "<tr>" "Table Row"
  25. ! ("<TR>\n</TR>"))
  26. (table "h" "<th>" "Table Header"
  27. ! ("<TH"
  28. (html-helper-insert-or-wipe "rowspan" )
  29. ! (html-helper-insert-or-wipe "colspan")">\n</TH>"))
  30. (table "d" "<td>" "Table Data"
  31. ! ("<TD"
  32. (html-helper-insert-or-wipe "align" )
  33. ! (html-helper-insert-or-wipe "colspan")"></TD>"))
  34. (table "p" "<caption>" "html table caption"
  35. ("<caption>" (r . "Table: ") "</caption>"))
  36. ;;text elements
  37. --- 880,894 ----
  38. (html-helper-insert-or-wipe "border" )
  39. (html-helper-insert-or-wipe "width" )">\n</table>"))
  40. (table "r" "<tr>" "Table Row"
  41. ! ("<tr>\n</tr>"))
  42. (table "h" "<th>" "Table Header"
  43. ! ("<th"
  44. (html-helper-insert-or-wipe "rowspan" )
  45. ! (html-helper-insert-or-wipe "colspan")">\n</th>"))
  46. (table "d" "<td>" "Table Data"
  47. ! ("<td"
  48. (html-helper-insert-or-wipe "align" )
  49. ! (html-helper-insert-or-wipe "colspan")"></td>"))
  50. (table "p" "<caption>" "html table caption"
  51. ("<caption>" (r . "Table: ") "</caption>"))
  52. ;;text elements
  53. ***************
  54. *** 924,947 ****
  55. (head "t" "<title>" "Title"
  56. ("<title>" (r "Document title: ") "</title>"))
  57. ;; scripting elements
  58. ! (script "j" "<SCRIPT>" "JavaScript"
  59. ! ("<SCRIPT TYPE=\"text/javascript\">\n"
  60. ! (r "Script") "</SCRIPT>"))
  61. ! (script "v" "<SCRIPT>" "VBScript"
  62. ! ("<SCRIPT TYPE=\"text/vbscript\">\n"
  63. ! (r "Script") "</SCRIPT>"))
  64. (script "%" "<%=" "ASP output"
  65. ("<%="(p " Variabile: ")"%>"))
  66. (script "a" "<%xx%>" "JSP/ASP code"
  67. ! ("<%\n"(r "Code: " )"\n%>"))
  68. (script "<" "<%xx%>" "JSP/ASP break"
  69. ("%>\n"(r "Code: " )"\n<%"))
  70. (script "=" "<?=" "PHP output"
  71. ("<?="(p " Variabile: ")"?>"))
  72. (script "p" "<?xx?>" "PHP code"
  73. ! ("<? PHP\n"(r "Code: " )"\n?>"))
  74. (script "?" "<?xx?>" "PHP break"
  75. ! ("?>\n"(r " Code: " )"\n<? PHP"))
  76. ))
  77.  
  78. ;;}}}
  79. --- 924,947 ----
  80. (head "t" "<title>" "Title"
  81. ("<title>" (r "Document title: ") "</title>"))
  82. ;; scripting elements
  83. ! (script "j" "<script>" "JavaScript"
  84. ! ("<script type=\"text/javascript\">\n"
  85. ! (r "Script") "</script>"))
  86. ! (script "v" "<script>" "VBScript"
  87. ! ("<script type=\"text/vbscript\">\n"
  88. ! (r "Script") "</script>"))
  89. (script "%" "<%=" "ASP output"
  90. ("<%="(p " Variabile: ")"%>"))
  91. (script "a" "<%xx%>" "JSP/ASP code"
  92. ! ("<% "(r "Code: " )" %>"))
  93. (script "<" "<%xx%>" "JSP/ASP break"
  94. ("%>\n"(r "Code: " )"\n<%"))
  95. (script "=" "<?=" "PHP output"
  96. ("<?="(p " Variabile: ")"?>"))
  97. (script "p" "<?xx?>" "PHP code"
  98. ! ("<?php "(r "Code: " )" ?>"))
  99. (script "?" "<?xx?>" "PHP break"
  100. ! ("?>\n"(r " Code: " )"\n<?php"))
  101. ))
  102.  
  103. ;;}}}
Add Comment
Please, Sign In to add comment