Compare commits
3 Commits
zzzot-0.7
...
zzzot-0.9.
Author | SHA1 | Date | |
---|---|---|---|
ce7562c547 | |||
52d8e26ffc | |||
284d7a58d6 |
45
CHANGES.txt
Normal file
45
CHANGES.txt
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
0.9.0
|
||||||
|
2013-01-25
|
||||||
|
Add cache-control directives
|
||||||
|
Set max Jetty to 6.99999
|
||||||
|
|
||||||
|
0.8
|
||||||
|
2012-03-10
|
||||||
|
fix comment in jetty.xml
|
||||||
|
|
||||||
|
0.7
|
||||||
|
2012-03-10
|
||||||
|
Port to Jetty 6
|
||||||
|
Replace QForwardHandler with RewriteHandler
|
||||||
|
Use ${ant.home}/lib/ant.jar instead of pulling ant.jar from Jetty
|
||||||
|
|
||||||
|
0.6
|
||||||
|
2011-12-31
|
||||||
|
Set max jetty version 5.99999
|
||||||
|
Add throttle options
|
||||||
|
Stub out announce-to-seedless
|
||||||
|
Seedless fixes, untested
|
||||||
|
|
||||||
|
0.5
|
||||||
|
2010-07-11
|
||||||
|
Final compact response format
|
||||||
|
|
||||||
|
0.4
|
||||||
|
2010-07-09
|
||||||
|
Compact request/response support - may not be final format
|
||||||
|
Fix NPE if no ip parameter
|
||||||
|
|
||||||
|
0.3
|
||||||
|
2010-04-13
|
||||||
|
Verify dest
|
||||||
|
Add xfs check
|
||||||
|
|
||||||
|
0.2
|
||||||
|
2010-03-23
|
||||||
|
Cache b64 dest strings
|
||||||
|
Help typo fix (thx duck)
|
||||||
|
Lots of seedless fixes
|
||||||
|
Build cleanups
|
||||||
|
|
||||||
|
0.1
|
||||||
|
2010-03-23
|
@@ -11,7 +11,7 @@
|
|||||||
<delete file="plugin/i2ptunnel.config" />
|
<delete file="plugin/i2ptunnel.config" />
|
||||||
<!-- get version number -->
|
<!-- get version number -->
|
||||||
<buildnumber file="scripts/build.number" />
|
<buildnumber file="scripts/build.number" />
|
||||||
<property name="release.number" value="0.7" />
|
<property name="release.number" value="0.9.0" />
|
||||||
|
|
||||||
<!-- make the update xpi2p -->
|
<!-- make the update xpi2p -->
|
||||||
<!-- this contains everything except i2ptunnel.config -->
|
<!-- this contains everything except i2ptunnel.config -->
|
||||||
|
@@ -11,6 +11,16 @@ to serve static html files and images.
|
|||||||
<Configure class="org.mortbay.jetty.servlet.Context">
|
<Configure class="org.mortbay.jetty.servlet.Context">
|
||||||
<Set name="contextPath">/</Set>
|
<Set name="contextPath">/</Set>
|
||||||
<Set name="resourceBase">$PLUGIN/eepsite/docroot/</Set>
|
<Set name="resourceBase">$PLUGIN/eepsite/docroot/</Set>
|
||||||
|
<Call name="setInitParams">
|
||||||
|
<Arg>
|
||||||
|
<Map>
|
||||||
|
<Entry>
|
||||||
|
<Item>org.mortbay.jetty.servlet.Default.cacheControl</Item>
|
||||||
|
<Item>max-age=3600,public</Item>
|
||||||
|
</Entry>
|
||||||
|
</Map>
|
||||||
|
</Arg>
|
||||||
|
</Call>
|
||||||
<Call name="addServlet">
|
<Call name="addServlet">
|
||||||
<Arg>org.mortbay.jetty.servlet.DefaultServlet</Arg>
|
<Arg>org.mortbay.jetty.servlet.DefaultServlet</Arg>
|
||||||
<Arg>/</Arg>
|
<Arg>/</Arg>
|
||||||
|
@@ -153,12 +153,10 @@
|
|||||||
<param-name>useFileMappedBuffer</param-name>
|
<param-name>useFileMappedBuffer</param-name>
|
||||||
<param-value>true</param-value>
|
<param-value>true</param-value>
|
||||||
</init-param>
|
</init-param>
|
||||||
<!--
|
|
||||||
<init-param>
|
<init-param>
|
||||||
<param-name>cacheControl</param-name>
|
<param-name>cacheControl</param-name>
|
||||||
<param-value>max-age=3600,public</param-value>
|
<param-value>max-age=3600,public</param-value>
|
||||||
</init-param>
|
</init-param>
|
||||||
-->
|
|
||||||
<load-on-startup>0</load-on-startup>
|
<load-on-startup>0</load-on-startup>
|
||||||
</servlet>
|
</servlet>
|
||||||
|
|
||||||
|
@@ -8,8 +8,8 @@
|
|||||||
<!-- Commonly changed settings: -->
|
<!-- Commonly changed settings: -->
|
||||||
<!-- * host: Change 127.0.0.1 to 0.0.0.0 in the addListener section -->
|
<!-- * host: Change 127.0.0.1 to 0.0.0.0 in the addListener section -->
|
||||||
<!-- to access the server directly (bypassing i2p) -->
|
<!-- to access the server directly (bypassing i2p) -->
|
||||||
<!-- from other computers.
|
<!-- from other computers. -->
|
||||||
<!-- * port: Default 7662 in the addConnector section -->
|
<!-- * port: Default 7662 in the addConnector section -->
|
||||||
<!-- * docroot: Change the ResourceBase in the addContext section -->
|
<!-- * docroot: Change the ResourceBase in the addContext section -->
|
||||||
<!-- to serve files from a different location. -->
|
<!-- to serve files from a different location. -->
|
||||||
<!-- * threads: Raise MinThreads and/or MaxThreads in the addListener section -->
|
<!-- * threads: Raise MinThreads and/or MaxThreads in the addListener section -->
|
||||||
|
@@ -8,3 +8,4 @@ updateURL=http://stats.i2p/i2p/plugins/zzzot-update.xpi2p
|
|||||||
websiteURL=http://zzz.i2p/forums/16
|
websiteURL=http://zzz.i2p/forums/16
|
||||||
license=Apache 2.0
|
license=Apache 2.0
|
||||||
min-jetty-version=6
|
min-jetty-version=6
|
||||||
|
max-jetty-version=6.99999
|
||||||
|
Reference in New Issue
Block a user