diff options
author | Kevin Chabowski <kevin@kch42.de> | 2012-02-03 21:43:54 +0100 |
---|---|---|
committer | Kevin Chabowski <kevin@kch42.de> | 2012-02-03 21:43:54 +0100 |
commit | 86deada91a275ec1372817603758ab771cfaa417 (patch) | |
tree | 73713cdae933e66e9da039d1243c70ecdc0d77d7 /ratatoeskr/templates/src/systemtemplates | |
parent | 2c2b3c89f8b69b42220c19a811feb6a7b85e989f (diff) | |
download | ratatoeskr-cms-86deada91a275ec1372817603758ab771cfaa417.tar.gz ratatoeskr-cms-86deada91a275ec1372817603758ab771cfaa417.tar.bz2 ratatoeskr-cms-86deada91a275ec1372817603758ab771cfaa417.zip |
TIL: <form />'s method value *MUST* be lowercase.
<irony>That makes kind of sense, since it is written UPPERcase in the
HTTP protocol...</irony>
Diffstat (limited to 'ratatoeskr/templates/src/systemtemplates')
22 files changed, 34 insertions, 34 deletions
diff --git a/ratatoeskr/templates/src/systemtemplates/areyousure.html b/ratatoeskr/templates/src/systemtemplates/areyousure.html index 6663f7a..0d40585 100644 --- a/ratatoeskr/templates/src/systemtemplates/areyousure.html +++ b/ratatoeskr/templates/src/systemtemplates/areyousure.html @@ -3,7 +3,7 @@ <div class="pos_center"> <h2><ste:escape>$question</ste:escape></h2> ?{$moredetails|<p><ste:escape>$moredetails</ste:escape></p>|} - <form action="$callback" method="POST"> + <form action="$callback" method="post"> <input type="submit" class="yes_btn" name="yes" value="<ste:escape>?{$yestext|$yestext|<ste:get_translation for='yes' raw='y' />}</ste:escape>" /> <input type="submit" class="no_btn" name="no" value="<ste:escape>?{$notext|$notext|<ste:get_translation for='no' raw='y' />}</ste:escape>" /> </form> diff --git a/ratatoeskr/templates/src/systemtemplates/articles.html b/ratatoeskr/templates/src/systemtemplates/articles.html index 5ba5bbd..764ac40 100644 --- a/ratatoeskr/templates/src/systemtemplates/articles.html +++ b/ratatoeskr/templates/src/systemtemplates/articles.html @@ -3,7 +3,7 @@ <ste:default_error /> <ste:default_success /> - <form action="$rel_path_to_root/backend/content/articles" method="GET" accept-charset="UTF-8"> + <form action="$rel_path_to_root/backend/content/articles" method="get" accept-charset="UTF-8"> <div> <strong><ste:get_translation for="filter" />:</strong> <ste:get_translation for="filter_urlname" /> <input type="text" name="filter_urlname" value="<ste:escape>$filter_urlname</ste:escape>" /> @@ -14,7 +14,7 @@ </div> </form> - <form action="$rel_path_to_root/backend/content/articles?$filterquery?{$filterquery|&|}$sortquery" method="POST"> + <form action="$rel_path_to_root/backend/content/articles?$filterquery?{$filterquery|&|}$sortquery" method="post"> <table class="fullwidth listtab"> <thead><tr> <th> </th> diff --git a/ratatoeskr/templates/src/systemtemplates/backend_login.html b/ratatoeskr/templates/src/systemtemplates/backend_login.html index aebed4a..128c9e7 100755 --- a/ratatoeskr/templates/src/systemtemplates/backend_login.html +++ b/ratatoeskr/templates/src/systemtemplates/backend_login.html @@ -21,7 +21,7 @@ </div> </ste:then> </ste:if> - <form action="$rel_path_to_root/backend/login" method="POST" accept-charset="utf-8"> + <form action="$rel_path_to_root/backend/login" method="post" accept-charset="utf-8"> <p><ste:get_translation for="username" />: <input type="text" name="user" /></p> <p><ste:get_translation for="password" />: <input type="password" name="password" /></p> <p class="loginbtn"><input type="submit" value="<ste:get_translation for='login_form_button' />" /></p> diff --git a/ratatoeskr/templates/src/systemtemplates/comments_list.html b/ratatoeskr/templates/src/systemtemplates/comments_list.html index 891679f..5c86a8e 100644 --- a/ratatoeskr/templates/src/systemtemplates/comments_list.html +++ b/ratatoeskr/templates/src/systemtemplates/comments_list.html @@ -3,7 +3,7 @@ <ste:default_error /> <ste:default_success /> - <form action="$rel_path_to_root/backend/content/comments" method="GET" accept-charset="UTF-8"> + <form action="$rel_path_to_root/backend/content/comments" method="get" accept-charset="UTF-8"> <div> <strong><ste:get_translation for="filter" />:</strong> <ste:get_translation for="filter_article" /> <input type="text" name="filter_article" value="<ste:escape>$filter_article</ste:escape>" /> @@ -12,7 +12,7 @@ </div> </form> - <form action="$rel_path_to_root/backend/content/comments?$filterquery?{$filterquery|&|}$sortquery" method="POST"> + <form action="$rel_path_to_root/backend/content/comments?$filterquery?{$filterquery|&|}$sortquery" method="post"> <table class="fullwidth listtab"> <thead> <tr> diff --git a/ratatoeskr/templates/src/systemtemplates/confirminstall.html b/ratatoeskr/templates/src/systemtemplates/confirminstall.html index fdd15af..e60e08a 100644 --- a/ratatoeskr/templates/src/systemtemplates/confirminstall.html +++ b/ratatoeskr/templates/src/systemtemplates/confirminstall.html @@ -19,7 +19,7 @@ <div class="notice"> <ste:get_translation for="plugin_safety_warning" raw="1" /> </div> - <form action="$rel_path_to_root/backend/plugin/confirminstall/$plugin_id" method="POST"> + <form action="$rel_path_to_root/backend/plugin/confirminstall/$plugin_id" method="post"> <input type="submit" name="yes" value="<ste:get_translation for='yes' />" /> <input type="submit" name="no" value="<ste:get_translation for='no' />" /> </form> diff --git a/ratatoeskr/templates/src/systemtemplates/content_write.html b/ratatoeskr/templates/src/systemtemplates/content_write.html index a996a5b..82c86c4 100644 --- a/ratatoeskr/templates/src/systemtemplates/content_write.html +++ b/ratatoeskr/templates/src/systemtemplates/content_write.html @@ -7,7 +7,7 @@ </ste:foreach> </ste:mktag> <ste:block name="content"> - <form action="$rel_path_to_root/backend/content/write/$article_editurl" method="POST" accept_charset="utf-8"> + <form action="$rel_path_to_root/backend/content/write/$article_editurl" method="post" accept_charset="utf-8"> <ste:if>$failed <ste:then> <div class="error"> diff --git a/ratatoeskr/templates/src/systemtemplates/image_embed.html b/ratatoeskr/templates/src/systemtemplates/image_embed.html index d63a9d5..7a0944a 100644 --- a/ratatoeskr/templates/src/systemtemplates/image_embed.html +++ b/ratatoeskr/templates/src/systemtemplates/image_embed.html @@ -6,7 +6,7 @@ <p><strong><ste:get_translation for="embed_code" />:</strong> <code><ste:escape>$embed_code</ste:escape></code></p> </ste:then> </ste:if> - <form action="$rel_path_to_root/backend/content/images/$image_id/$markup_variant" method="POST"> + <form action="$rel_path_to_root/backend/content/images/$image_id/$markup_variant" method="post"> <p><strong><ste:get_translation for="image_alt" />:</strong> <input type="text" name="img_alt" /></p> <p><input type="submit" /></p> </form> diff --git a/ratatoeskr/templates/src/systemtemplates/image_list.html b/ratatoeskr/templates/src/systemtemplates/image_list.html index 83f579e..189c214 100644 --- a/ratatoeskr/templates/src/systemtemplates/image_list.html +++ b/ratatoeskr/templates/src/systemtemplates/image_list.html @@ -5,7 +5,7 @@ <div class="dualcolumns"> <div class="column_left"> - <form action="$rel_path_to_root/backend/content/images" method="POST" accept-charset="UTF-8" enctype="multipart/form-data"> + <form action="$rel_path_to_root/backend/content/images" method="post" accept-charset="UTF-8" enctype="multipart/form-data"> <h2><ste:get_translation for="image_upload" /></h2> <p><input type="file" name="upload_img" class="fullwidth" /></p> <p> @@ -17,7 +17,7 @@ </form> </div> <div class="column_main"> - <form action="$rel_path_to_root/backend/content/images" method="POST"> + <form action="$rel_path_to_root/backend/content/images" method="post"> <table class="fullwidth listtab"> <thead><tr> <th> </th> diff --git a/ratatoeskr/templates/src/systemtemplates/plugininstall.html b/ratatoeskr/templates/src/systemtemplates/plugininstall.html index 7b5c586..9b4117b 100644 --- a/ratatoeskr/templates/src/systemtemplates/plugininstall.html +++ b/ratatoeskr/templates/src/systemtemplates/plugininstall.html @@ -4,7 +4,7 @@ <ste:default_success /> <h2><ste:get_translation for="install_from_package" /></h2> - <form action="$rel_path_to_root/backend/plugin/install" method="POST" accept-charset="UTF-8" enctype="multipart/form-data"> + <form action="$rel_path_to_root/backend/plugin/install" method="post" accept-charset="UTF-8" enctype="multipart/form-data"> <input type="file" name="pluginpackage" /> <input type="submit" name="installpackage" /> </form> @@ -13,7 +13,7 @@ <ste:if> ~{$repos_n|gt|0} <ste:then> - <form action="$rel_path_to_root/backend/plugin/install" method="POST" accept-charset="UTF-8"> + <form action="$rel_path_to_root/backend/plugin/install" method="post" accept-charset="UTF-8"> <ste:get_translation for="search" />: <input type="text" name="searchfor" /> <ste:get_translation for="repo_plugin_search_in" />: <select name="searchin"> diff --git a/ratatoeskr/templates/src/systemtemplates/pluginlist.html b/ratatoeskr/templates/src/systemtemplates/pluginlist.html index e51c769..056ba96 100644 --- a/ratatoeskr/templates/src/systemtemplates/pluginlist.html +++ b/ratatoeskr/templates/src/systemtemplates/pluginlist.html @@ -3,7 +3,7 @@ <ste:default_error /> <ste:default_success /> - <form action="$rel_path_to_root/backend/plugin/list" method="POST"> + <form action="$rel_path_to_root/backend/plugin/list" method="post"> <table class="listtab fullwidth"> <thead> <tr> diff --git a/ratatoeskr/templates/src/systemtemplates/repos.html b/ratatoeskr/templates/src/systemtemplates/repos.html index a38c1b7..f724ece 100644 --- a/ratatoeskr/templates/src/systemtemplates/repos.html +++ b/ratatoeskr/templates/src/systemtemplates/repos.html @@ -3,14 +3,14 @@ <ste:default_error /> <ste:default_success /> - <form action="$rel_path_to_root/backend/admin/repos" method="POST" accept-charset="UTF-8"> + <form action="$rel_path_to_root/backend/admin/repos" method="post" accept-charset="UTF-8"> <h2><ste:get_translation for="add_repo" /></h2> <p><strong><ste:get_translation for="repo_baseurl" />:</strong> <input type="text" name="repo_baseurl" /></p> <p><input type="submit" name="add_repo" /></p> </form> - <form action="$rel_path_to_root/backend/admin/repos" method="POST" accept-charset="UTF-8"> + <form action="$rel_path_to_root/backend/admin/repos" method="post" accept-charset="UTF-8"> <h2><ste:get_translation for="repo_list" /></h2> <table class="listtab fullwidth"> diff --git a/ratatoeskr/templates/src/systemtemplates/sections.html b/ratatoeskr/templates/src/systemtemplates/sections.html index f842bcd..b67563d 100644 --- a/ratatoeskr/templates/src/systemtemplates/sections.html +++ b/ratatoeskr/templates/src/systemtemplates/sections.html @@ -7,7 +7,7 @@ <div class="dualcolumns"> <div class="column_left"> <h2><ste:get_translation for="new_section" /></h2> - <form action="$rel_path_to_root/backend/design/sections" method="POST" accept-charset="UTF-8"> + <form action="$rel_path_to_root/backend/design/sections" method="post" accept-charset="UTF-8"> <p> <strong><ste:get_translation for="section_name" />:</strong><br /> <input type="text" name="section_name" /> @@ -20,7 +20,7 @@ </form> </div> <div class="column_main"> - <form action="$rel_path_to_root/backend/design/sections" method="POST" accept-charset="UTF-8"> + <form action="$rel_path_to_root/backend/design/sections" method="post" accept-charset="UTF-8"> <table class="listtab fullwidth"> <thead> <tr> diff --git a/ratatoeskr/templates/src/systemtemplates/settings.html b/ratatoeskr/templates/src/systemtemplates/settings.html index 6a5b814..63bb0cb 100644 --- a/ratatoeskr/templates/src/systemtemplates/settings.html +++ b/ratatoeskr/templates/src/systemtemplates/settings.html @@ -4,14 +4,14 @@ <ste:default_error /> <ste:default_success /> - <form action="$rel_path_to_root/backend/admin/settings" method="POST" accept-charset="UTF-8"> + <form action="$rel_path_to_root/backend/admin/settings" method="post" accept-charset="UTF-8"> <h2><ste:get_translation for="comment_settings" /></h2> <strong><ste:get_translation for="comment_textprocessor" />:</strong> <ste:instant_select name="comment_textprocessor" array="textprocessors" selected="$comment_textprocessor" /><br /> <strong><ste:get_translation for="comment_auto_visible" />:</strong> <input type="checkbox" name="comment_auto_visible" value="yes"?{$comment_auto_visible| checked="checked"|} /><br /> <input type="submit" name="save_comment_settings" /> </form> - <form action="$rel_path_to_root/backend/admin/settings" method="POST" accept-charset="UTF-8"> + <form action="$rel_path_to_root/backend/admin/settings" method="post" accept-charset="UTF-8"> <h2><ste:get_translation for="language_settings" /></h2> <table class="listtab"> <thead> diff --git a/ratatoeskr/templates/src/systemtemplates/setup_dbsetup.html b/ratatoeskr/templates/src/systemtemplates/setup_dbsetup.html index e43d2ef..c0b816c 100644 --- a/ratatoeskr/templates/src/systemtemplates/setup_dbsetup.html +++ b/ratatoeskr/templates/src/systemtemplates/setup_dbsetup.html @@ -5,7 +5,7 @@ <div class="error"><ste:escape>$error</ste:escape></div> </ste:then> </ste:if> - <form action="setup.php?lang=$lang" method="POST" accept-charset="UTF-8"> + <form action="setup.php?lang=$lang" method="post" accept-charset="UTF-8"> <h2><ste:get_translation for="dbsetup" /></h2> <p> <ste:get_translation for="dbsetup_mysql_host" /><br /> diff --git a/ratatoeskr/templates/src/systemtemplates/setup_select_lang.html b/ratatoeskr/templates/src/systemtemplates/setup_select_lang.html index 6361df3..c913760 100644 --- a/ratatoeskr/templates/src/systemtemplates/setup_select_lang.html +++ b/ratatoeskr/templates/src/systemtemplates/setup_select_lang.html @@ -1,6 +1,6 @@ <ste:load name="setup_master.html" /> <ste:block name="content"> - <form action="$rel_path_to_root/setup.php" method="GET" accept-charset="UTF-8"> + <form action="$rel_path_to_root/setup.php" method="get" accept-charset="UTF-8"> <select name="lang"> <ste:foreach array="translations" key="langcode" value="language"> <option value="$langcode"?{~{$langcode|eq|en}| selected="selected"|}><ste:escape>$langcode: $language</ste:escape></option> diff --git a/ratatoeskr/templates/src/systemtemplates/single_comment.html b/ratatoeskr/templates/src/systemtemplates/single_comment.html index 48a940a..785deca 100644 --- a/ratatoeskr/templates/src/systemtemplates/single_comment.html +++ b/ratatoeskr/templates/src/systemtemplates/single_comment.html @@ -6,7 +6,7 @@ <div class="triplecolumns"> <div class="column_left"> <h2><ste:get_translation for="comment_perform_action" /></h2> - <form action="$rel_path_to_root/backend/content/comments/$id" method="POST"> + <form action="$rel_path_to_root/backend/content/comments/$id" method="post"> <select name="action_on_comment"> <option value="" selected="selected"></option> <option value="make_visible"><ste:get_translation for="commentaction_make_visible" /></option> diff --git a/ratatoeskr/templates/src/systemtemplates/styles.html b/ratatoeskr/templates/src/systemtemplates/styles.html index 4574eef..71464fb 100644 --- a/ratatoeskr/templates/src/systemtemplates/styles.html +++ b/ratatoeskr/templates/src/systemtemplates/styles.html @@ -5,7 +5,7 @@ <div class="dualcolumns"> <div class="column_left"> - <form action="$rel_path_to_root/backend/design/styles" method="POST"> + <form action="$rel_path_to_root/backend/design/styles" method="post"> <table class="fullwidth listtab"> <thead> <tr> @@ -38,7 +38,7 @@ <ste:get_translation for="linking_back_hint" raw="y" /> </div> <div class="column_main"> - <form action="$rel_path_to_root/backend/design/styles" method="POST" accept-charset="UTF-8"> + <form action="$rel_path_to_root/backend/design/styles" method="post" accept-charset="UTF-8"> <p> <strong><ste:get_translation for="style_name" />:</strong><br /> <input type="text" name="style_name" value="<ste:escape>$style_name</ste:escape>" /> diff --git a/ratatoeskr/templates/src/systemtemplates/tag_addtranslation.html b/ratatoeskr/templates/src/systemtemplates/tag_addtranslation.html index b7dd466..3225e33 100644 --- a/ratatoeskr/templates/src/systemtemplates/tag_addtranslation.html +++ b/ratatoeskr/templates/src/systemtemplates/tag_addtranslation.html @@ -12,7 +12,7 @@ </ste:then> </ste:if> - <form action="$rel_path_to_root/backend/content/tags/$tagname/addtranslation" method="POST" accept_charset="UTF-8"> + <form action="$rel_path_to_root/backend/content/tags/$tagname/addtranslation" method="post" accept_charset="UTF-8"> <select name="language"> <ste:foreach array="all_languages" key="code" value="name"> <option value="$code">($code) $name</option> diff --git a/ratatoeskr/templates/src/systemtemplates/tags_overview.html b/ratatoeskr/templates/src/systemtemplates/tags_overview.html index eb849e8..1f5b8d5 100644 --- a/ratatoeskr/templates/src/systemtemplates/tags_overview.html +++ b/ratatoeskr/templates/src/systemtemplates/tags_overview.html @@ -3,7 +3,7 @@ <ste:default_error /> <ste:default_success /> - <form action="$rel_path_to_root/backend/content/tags" method="POST" accept-charset="UTF-8"> + <form action="$rel_path_to_root/backend/content/tags" method="post" accept-charset="UTF-8"> <table class="listtab"> <thead> <tr> @@ -39,7 +39,7 @@ <div> <h2><ste:get_translation for="create_new_tag" /></h2> - <form action="$rel_path_to_root/backend/content/tags" method="POST" accept-charset="UTF-8"> + <form action="$rel_path_to_root/backend/content/tags" method="post" accept-charset="UTF-8"> <p><ste:get_translation for="new_tag_name" />: <input type="text" name="new_tag_name" /></p> <p><input type="submit" name="create_new_tag" /></p> </form> diff --git a/ratatoeskr/templates/src/systemtemplates/templates.html b/ratatoeskr/templates/src/systemtemplates/templates.html index d70c6ba..eca33cf 100644 --- a/ratatoeskr/templates/src/systemtemplates/templates.html +++ b/ratatoeskr/templates/src/systemtemplates/templates.html @@ -5,7 +5,7 @@ <div class="dualcolumns"> <div class="column_left"> - <form action="$rel_path_to_root/backend/design/templates" method="POST"> + <form action="$rel_path_to_root/backend/design/templates" method="post"> <table class="fullwidth listtab"> <thead> <tr> @@ -36,7 +36,7 @@ </form> </div> <div class="column_main"> - <form action="$rel_path_to_root/backend/design/templates" method="POST" accept-charset="UTF-8"> + <form action="$rel_path_to_root/backend/design/templates" method="post" accept-charset="UTF-8"> <p> <strong><ste:get_translation for="template_name" />:</strong><br /> <input type="text" name="template_name" value="<ste:escape>$template_name</ste:escape>" /> diff --git a/ratatoeskr/templates/src/systemtemplates/user.html b/ratatoeskr/templates/src/systemtemplates/user.html index 30f06fd..21418f8 100644 --- a/ratatoeskr/templates/src/systemtemplates/user.html +++ b/ratatoeskr/templates/src/systemtemplates/user.html @@ -4,7 +4,7 @@ <ste:default_error /> <ste:default_success /> - <form action="$rel_path_to_root/backend/admin/users/u/$u[id]" method="POST" accept-charset="UTF-8"> + <form action="$rel_path_to_root/backend/admin/users/u/$u[id]" method="post" accept-charset="UTF-8"> <p> <strong><ste:get_translation for="fullname" />:</strong><br /> <input type="text" name="fullname" value="<ste:escape>$u[fullname]</ste:escape>" /> diff --git a/ratatoeskr/templates/src/systemtemplates/users.html b/ratatoeskr/templates/src/systemtemplates/users.html index 9463eaf..d9542a2 100644 --- a/ratatoeskr/templates/src/systemtemplates/users.html +++ b/ratatoeskr/templates/src/systemtemplates/users.html @@ -5,7 +5,7 @@ <div class="dualcolumns"> <div class="column_left"> - <form action="$rel_path_to_root/backend/admin/users" method="POST" accept-charset="UTF-8"> + <form action="$rel_path_to_root/backend/admin/users" method="post" accept-charset="UTF-8"> <h2><ste:get_translation for="new_group" /></h2> <strong><ste:get_translation for="groupname" />:</strong><br /> <input type="text" name="group_name" class="fullwidth" /><br /> @@ -20,7 +20,7 @@ </form> </div> <div class="column_main"> - <form action="$rel_path_to_root/backend/admin/users" method="POST" accept-charset="UTF-8"> + <form action="$rel_path_to_root/backend/admin/users" method="post" accept-charset="UTF-8"> <h2><ste:get_translation for="groups" /></h2> <table class="listtab fullwidth"> <thead> @@ -43,7 +43,7 @@ </div> </form> - <form action="$rel_path_to_root/backend/admin/users" method="POST" accept-charset="UTF-8"> + <form action="$rel_path_to_root/backend/admin/users" method="post" accept-charset="UTF-8"> <h2><ste:get_translation for="users" /></h2> <table class="listtab fullwidth"> <thead> |