- Feb 04, 2015
-
-
zzz authored
-
- Jan 06, 2015
-
-
zzz authored
-
- Aug 23, 2014
-
-
zzz authored
-
- Aug 21, 2014
-
-
zzz authored
This will break Android and the i2pcontrol plugin but shouldn't affect anything else.
-
- Aug 03, 2014
-
-
zzz authored
- Fix update buttons - Don't filter parameter names starting with "nofilter_" - Re-allow configadvanced, news URL, and unsigned update URL if routerconsole.advanced=true - Re-allow plugin install if routerconsole.advanced=true or routerconsole.enablePluginInstall=true - Only allow whitelisted plugin signers, unless routerconsole.allowUntrustedPlugins=true - Re-allow clients.config changes if routerconsole.advanced=true or routerconsole.enableClientChange=true - More escaping * i2psnark: Fix add torrent form
-
- Jul 26, 2014
-
-
zzz authored
- Fix several XSS issues (thx Aaron Portnoy of Exodus Intel) - Add Content-Security-Policy and X-XSS-Protection headers - Disable changing news feed URL from UI - Disable plugin install from UI - Disable setting unsigned update URL from UI - Disable /configadvanced * DataHelper: Disallow \r in storeProps() (thx joernchen of Phenoelit) * ExecNamingService: Disable (thx joernchen of Phenoelit) * Startup: Add susimail.config to migrated files
-
- Jun 15, 2014
-
-
zzz authored
- Serializable - hashCode() - Make DataStructureImpl Serializable (removed from DataStructure in 2005)
-
- Jun 07, 2014
-
-
zzz authored
-
- Apr 01, 2014
-
-
zzz authored
-
- Feb 10, 2014
-
-
zzz authored
-
- Nov 28, 2013
-
-
str4d authored
-
- Nov 21, 2013
-
-
str4d authored
-
- Sep 20, 2013
-
-
zzz authored
due to "constraints". Add constraint checks for java version, router version, configuration, and base permissions. (ticket #1024)
-
- May 02, 2013
-
-
zzz authored
-
- Nov 25, 2012
-
-
str4d authored
Fixes a bug which caused the ordering to be non-functional.
-
- Nov 05, 2012
-
-
zzz authored
- Fix NPE after restart (ticket #763) - Move more nonces out of system properties
-
- Oct 26, 2012
-
-
zzz authored
-
- Oct 22, 2012
-
-
zzz authored
- Add start() in UpdateTask so things happen in the right order - Add toString() in UpdateTask for better debugging - Fix getID() for plugin UpdateTasks
-
- Oct 20, 2012
-
-
zzz authored
- Add a simple network monitor - Add new reachability state for network disconnected - Prevent any tunnel building when disconnected (ticket #519) - Don't unleash watchdog when disconnected
-
- Oct 19, 2012
-
-
zzz authored
- Fix status display after downloaded - Don't display update buttons unless HTTP proxy is up - Pass the manager down thru the constructors
-
- Oct 14, 2012
-
-
zzz authored
-
- Sep 28, 2012
-
-
zzz authored
-
- Jul 30, 2012
-
-
zzz authored
-
- Jul 24, 2012
-
-
str4d authored
-
- Jul 17, 2012
-
-
str4d authored
-
- Jul 11, 2012
-
-
str4d authored
-
- Jul 10, 2012
- Jul 09, 2012
- Jul 08, 2012
-
-
str4d authored
-
- Jun 18, 2012
-
-
zzz authored
implementing out-of-console updaters like i2psnark. - Add new update interfaces in net.i2p.update - All update implementations moved to routerconsole update/ - Implement an UpdateManager that registers with the RouterContext - UpdateManager handles multiple types of things to update (router, plugins, news, ...) and methods of updating (HTTP, ...) - UpdateManager maintains list of installed, downloaded, and available versions of everything - Define Updaters that can check for a new version and/or download an item - Individual Updaters register with the UpdateManager obtained from I2PAppContext, identifying the type of update item and update method they can handle. - Updaters need only core libs, no router.jar or routerconsole access required. - All checks and updates are initiated via the UpdateManager. - All status on checks and updates in-progress or completed are obtained from the UpdateManager. No more use of System properties to broadcast update state. - All update and checker tasks are intantiated on demand and threaded; no more static references left over. - Split out the Runners and Checkers from the Handlers and make the inheritance more sane. - No more permanent NewsFetcher thread; run on the SimpleScheduler queue and thread a checker task only to fetch the news. - No more static NewsFetcher instance in routerconsole. All helper methods that are still required are moved to NewsHelper. The UpdateManager implements the policy for when to check and download. All requests go through the UpdateManager. For each update type, there's several parts: - The xxxUpdateHandler implements the Updater - The xxxUpdateChecker implements the UpdateTask for checking - The xxxUpdateRunner implements the UpdateTask for downloading New and moved classes: web/ update/ ---- ------- new ConsoleUpdateManager.java new PluginUpdateChecker.java from PluginUpdateChecker PluginUpdateChecker -> PluginUpdateHandler.java PluginUpdateHandler.java -> PluginUpdateRunner new UnsignedUpdateHandler.java UnsignedUpdateHandler -> UnsignedUpdateRunner.java new UnsignedUpdateChecker from NewsFetcher UpdateHandler.java remains new UpdateHandler.java new UpdateRunner.java from UpdateHandler move NewsHandler from NewsFetcher new NewsFetcher new NewsTimerTask new DummyHandler Initial checkin. Unfinished, untested, unpolished.
-
- Jun 11, 2012
- Jun 09, 2012
- Jun 07, 2012