Changeset 4888
- Timestamp:
- Apr 6, 2009, 2:15:21 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/build.xml
r4846 r4888 78 78 <property name="javac.target" value="1.5" 79 79 description="Default value for the 'target' attribute when compiling java code" /> 80 <property name="javac.encoding" value=" ISO-8859-1"80 <property name="javac.encoding" value="UTF-8" 81 81 description="Default value for the 'encoding' attribute when compiling java code" /> 82 82 <property name="src" location="src" description="Location of source files" /> … … 809 809 webXmlFragment="${jsp.build}/generated_web.xml" 810 810 outputdir="${jsp.build}/src" 811 javaencoding="${javac.encoding}" 812 811 813 /> 812 814 <javac … … 820 822 source="${javac.source}" 821 823 target="${javac.target}" 824 encoding="${javac.encoding}" 822 825 > 823 826 </javac> -
trunk/config/dist/ehcache.xml
r4670 r4888 1 <?xml version="1.0" ?>1 <?xml version="1.0" encoding="UTF-8" ?> 2 2 <!-- 3 3 $Id$ -
trunk/config/dist/extended-properties.xml
r4508 r4888 1 <?xml version="1.0" ?>1 <?xml version="1.0" encoding="UTF-8" ?> 2 2 <!DOCTYPE extended-properties SYSTEM "extended-properties.dtd" > 3 3 <!-- -
trunk/config/dist/hibernate.cfg.xml
r4670 r4888 1 <?xml version="1.0" ?>1 <?xml version="1.0" encoding="UTF-8" ?> 2 2 <!DOCTYPE hibernate-configuration PUBLIC 3 3 "-//Hibernate/Hibernate Configuration DTD//EN" -
trunk/config/dist/mysql-queries.xml
r4508 r4888 1 <?xml version="1.0" ?>1 <?xml version="1.0" encoding="UTF-8" ?> 2 2 <!DOCTYPE predefined-queries SYSTEM "predefined-queries.dtd" > 3 3 <!-- -
trunk/config/dist/postgres-queries.xml
r4508 r4888 1 <?xml version="1.0" ?>1 <?xml version="1.0" encoding="UTF-8" ?> 2 2 <!DOCTYPE predefined-queries SYSTEM "predefined-queries.dtd" > 3 3 <!-- -
trunk/config/dist/raw-data-types.xml
r4508 r4888 1 <?xml version="1.0" ?> 2 <?xml-stylesheet type="text/xsl" href="raw-data-types.xsl"?> 1 <?xml version="1.0" encoding="UTF-8" ?> 3 2 <!DOCTYPE raw-data-types SYSTEM "raw-data-types.dtd" > 4 3 <!-- -
trunk/config/dist/web.xml
r4508 r4888 1 <?xml version="1.0" encoding="ISO-8859-1"?> 2 <!DOCTYPE web-app 3 PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" 4 "http://java.sun.com/dtd/web-app_2_3.dtd"> 1 <?xml version="1.0" encoding="UTF-8"?> 2 <web-app xmlns="http://java.sun.com/xml/ns/javaee" 3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 4 xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 5 http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" 6 version="2.5"> 7 5 8 <!-- 6 9 $Id$ … … 25 28 --> 26 29 27 <web-app>28 30 <display-name>BASE</display-name> 29 31 <description> … … 35 37 <location>/exception/exception.jsp</location> 36 38 </error-page> 39 40 <jsp-config> 41 <jsp-property-group> 42 <url-pattern>*.jsp</url-pattern> 43 <page-encoding>UTF-8</page-encoding> 44 </jsp-property-group> 45 </jsp-config> 37 46 38 47 <!-- -
trunk/src/clients/web/net/sf/basedb/clients/web/fileupload/FileUpload.java
r4512 r4888 567 567 section headers. 568 568 569 ®return A <code>SectionHeaders</code> object with information about the headers found569 return A <code>SectionHeaders</code> object with information about the headers found 570 570 */ 571 571 private SectionHeaders readSectionHeaders() -
trunk/www/biomaterials/samples/edit_sample.jsp
r4869 r4888 532 532 String usedQuantity = Values.formatNumber(creationEvent.getUsedQuantity(s), -1); 533 533 %> 534 Link.addNewItem(samples, new Item('S', <%=s.getId()%>, '<%=HTML.javaScriptEncode(s.getName())%> [<%=usedQuantity%> µg]', '<%=usedQuantity%>'));534 Link.addNewItem(samples, new Item('S', <%=s.getId()%>, '<%=HTML.javaScriptEncode(s.getName())%> [<%=usedQuantity%> �g]', '<%=usedQuantity%>')); 535 535 <% 536 536 } -
trunk/www/include/scripts/plugin.js
r4621 r4888 43 43 if (plugin.autodetection) 44 44 { 45 option.text += ' '+String.fromCharCode(215); // 215 = x (multiplication sign)45 option.text += ' ×'; 46 46 numAutodetecting++; 47 47 }
Note: See TracChangeset
for help on using the changeset viewer.