mirror of
				https://git.openwrt.org/project/luci.git
				synced 2025-10-31 10:49:03 +08:00 
			
		
		
		
	 ae8bbb814f
			
		
	
	ae8bbb814f
	
	
	
		
			
			* HTML Cleanup: Meta tags. * Converted charset to shorthand. * Removed meta tags with `Content-Script-Type` attribute. (Invalid in HTML5 spec.) * HTML Cleanup: CSS tags. * Removed `type` attribute with CSS files from link tags. (HTML5 spec recommends omitting it.) * Removed `type` attribute from style tags. (Deprecated in HTML5 spec.) https://html.spec.whatwg.org/#attr-link-type https://developer.mozilla.org/en-US/docs/Web/HTML/Element/style * HTML Cleanup: Convert from XHTML to HTML5 * Removed XML declaration. * Removed XML namespace. * Changed doctype to HTML5. * HTML Cleanup: CDATA tags. * CDATA sections should not be used within HTML they are considered as comments and not displayed. https://developer.mozilla.org/en-US/docs/Web/API/CDATASection * HTML Cleanup: Script tags. * Removed `language` attribute from script tags. (No longer valid in HTML5) * Removed `type` attribute with JavaScript MIME type from script tags. (HTML5 spec recommends omitting it.) https://html.spec.whatwg.org/multipage/scripting.html#attr-script-type https://mimesniff.spec.whatwg.org/#javascript-mime-type Signed-off-by: Mustafa Can Elmacı <mustafacan@elmaci.net>
		
			
				
	
	
		
			78 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			78 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <%
 | |
| 	if not self.embedded then
 | |
| 		%><form method="post" enctype="multipart/form-data" action="<%=REQUEST_URI%>">
 | |
| 			<input type="hidden" name="token" value="<%=token%>" />
 | |
| 			<input type="hidden" name="cbi.submit" value="1" /><%
 | |
| 	end
 | |
| 
 | |
| 	%><div class="cbi-map" id="cbi-<%=self.config%>"><%
 | |
| 
 | |
| 	if self.title and #self.title > 0 then
 | |
| 		%><h2 name="content"><%=self.title%></h2><%
 | |
| 	end
 | |
| 
 | |
| 	if self.description and #self.description > 0 then
 | |
| 		%><div class="cbi-map-descr"><%=self.description%></div><%
 | |
| 	end
 | |
| 
 | |
| 	self:render_children()
 | |
| 
 | |
| 	%></div><%
 | |
| 
 | |
| 	if self.message then
 | |
| 		%><div class="alert-message notice"><%=self.message%></div><%
 | |
| 	end
 | |
| 
 | |
| 	if self.errmessage then
 | |
| 		%><div class="alert-message warning"><%=self.errmessage%></div><%
 | |
| 	end
 | |
| 
 | |
| 	if not self.embedded then
 | |
| 		if type(self.hidden) == "table" then
 | |
| 			local k, v
 | |
| 			for k, v in pairs(self.hidden) do
 | |
| 				%><input type="hidden" id="<%=k%>" name="<%=k%>" value="<%=pcdata(v)%>" /><%
 | |
| 			end
 | |
| 		end
 | |
| 
 | |
| 		local display_back   = (redirect)
 | |
| 		local display_cancel = (self.cancel ~= false and self.on_cancel)
 | |
| 		local display_skip   = (self.flow and self.flow.skip)
 | |
| 		local display_submit = (self.submit ~= false)
 | |
| 		local display_reset  = (self.reset ~= false)
 | |
| 
 | |
| 		if display_back or display_cancel or display_skip or display_submit or display_reset then
 | |
| 			%><div class="cbi-page-actions"><%
 | |
| 
 | |
| 			if display_back then
 | |
| 				%><input class="btn cbi-button cbi-button-link" type="button" value="<%:Back to Overview%>" onclick="location.href='<%=pcdata(redirect)%>'" /> <%
 | |
| 			end
 | |
| 
 | |
| 			if display_cancel then
 | |
| 				local label = pcdata(self.cancel or translate("Cancel"))
 | |
| 				%><input class="btn cbi-button cbi-button-link" type="button" value="<%=label%>" onclick="cbi_submit(this, 'cbi.cancel')" /> <%
 | |
| 			end
 | |
| 
 | |
| 			if display_skip then
 | |
| 				%><input class="btn cbi-button cbi-button-neutral" type="button" value="<%:Skip%>" onclick="cbi_submit(this, 'cbi.skip')" /> <%
 | |
| 			end
 | |
| 
 | |
| 			if display_submit then
 | |
| 				local label = pcdata(self.submit or translate("Submit"))
 | |
| 				%><input class="btn cbi-button cbi-button-save" type="submit" value="<%=label%>" /> <%
 | |
| 			end
 | |
| 
 | |
| 			if display_reset then
 | |
| 				local label = pcdata(self.reset or translate("Reset"))
 | |
| 				%><input class="btn cbi-button cbi-button-reset" type="reset" value="<%=label%>" /> <%
 | |
| 			end
 | |
| 
 | |
| 			%></div><%
 | |
| 		end
 | |
| 
 | |
| 		%></form><%
 | |
| 	end
 | |
| %>
 | |
| 
 | |
| <script>cbi_init();</script>
 |