6 Commits
v0.5 ... master

Author SHA1 Message Date
sockenklaus
6231f9bf2d test 2020-07-18 18:17:39 +02:00
Pascal Koenig
5a007d02f9 Changed version number to 0.4 2012-02-03 17:04:08 +01:00
Pascal Koenig
8be79fadc6 Merge branch 'stats2.0'
Conflicts:
	.build.number

Merged stats2.0 into master.
2012-02-03 17:00:55 +01:00
Pascal Koenig
5c8a6b1865 Build.number increased. 2011-10-04 18:50:26 +02:00
Pascal Koenig
9a985737d6 Added build.number to repo. 2011-10-04 10:41:51 +02:00
Pascal Koenig
2597c12183 Fixed a bug in fetchAllPlayers(). 2011-10-04 10:37:17 +02:00
3 changed files with 4 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
# XmlStats v0.3
# XmlStats v0.4
This plugin for the Bukkit Minecraft Server API ([Homepage](http://bukkit.org) | [Github](https://github.com/Bukkit/Bukkit )) offers the possibility to access some playerstats via xml files. The provided data is basically generated by [Stats](https://github.com/nidefawl/Stats).
@@ -52,4 +52,4 @@ Also you can request achievement data provided by the achievements plugin via:
You can request gzip compressed files by using the parameter gzip=true. This works on all files:
http://server:port/userstats.xml?gzip=true
http://server:port/userstats.xml?gzip=true

View File

@@ -77,7 +77,7 @@ public class Webserver {
this.server = HttpServer.create(this.address, 0);
XmlStats.LogDebug("Created webserver.");
this.server.createContext("/user_list.xml", new UserList());
XmlStats.LogDebug("Created context /user_list.xml.");

View File

@@ -219,7 +219,7 @@ public class XmlStats extends JavaPlugin {
if (registerTemp != null && registerTemp.getClass().getName().equals("com.nijikokun.register.Register") && registerTemp.isEnabled() && Methods.hasMethod()) return true;
return false;
}
/**
* Checks if is Achievements hooked.
*