Show
Ignore:
Timestamp:
05/28/09 21:19:06 (15 years ago)
Author:
František Kučera <franta-hg@…>
Branch:
default
Message:

HTML → JSP: Přechod k aplikaci.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • java/sql-vyuka/web/index.jsp

    r8 r10  
    1 <%--  
    2     Document   : index 
    3     Created on : 24.5.2009, 16:54:56 
    4     Author     : fiki 
    5 --%> 
     1<%@page contentType="text/html" pageEncoding="UTF-8"%> 
     2<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> 
     3<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %> 
     4<!DOCTYPE html SYSTEM "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 
    65 
    7 <%@page contentType="text/html" pageEncoding="UTF-8"%> 
    8 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 
    9    "http://www.w3.org/TR/html4/loose.dtd"> 
     6<fmt:setBundle basename="cz.frantovo.sql.vyuka.preklady" scope="application"/> 
    107 
    11 <html> 
     8<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="cs" lang="cs"> 
    129    <head> 
    13         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> 
    14         <title>JSP Page</title> 
     10        <meta http-equiv="content-language" content="cs"/> 
     11        <meta http-equiv="content-type" content="text/html; charset=UTF-8"/> 
     12        <link href="styl.css" type="text/css" rel="StyleSheet"/> 
     13        <script type="text/javaScript" src="hlavni.js"></script> 
     14        <title><fmt:message key="nazev"/></title> 
    1515    </head> 
    1616    <body> 
    17         <h1>Hello World!</h1> 
     17 
     18        <jsp:include page="WEB-INF/casti/aplikace.jspx" flush="false"/> 
     19 
    1820    </body> 
    1921</html>