Re: [freenet-dev] Datastore corruption?

2002-06-20 Thread Matthew Toseland
On Thu, Jun 20, 2002 at 12:08:42PM -0500, Tiernan Hubble wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On June 20, 2002 08:40 am, Matthew Toseland wrote: I reinitialize a freenet node. I try to insert some content. After some hours (maybe 12), it partially stops responding

[freenet-dev] Unhandled error while initializing datastore

2002-06-20 Thread Matthew Toseland
Has somebody broken the node reinitialization in CVS? Got the attached, with a newly compiled node (with jikes) from CVS... 21-Jun-02 3:58:40 AM (freenet.node.Main, main): starting filesystem 21-Jun-02 3:58:40 AM (freenet.node.Main$FSInitializer, store-initializer): initializing data store

[freenet-dev] [PATCH] More node status info: histogram by bytes

2002-06-20 Thread Matthew Toseland
Attached is a patch to Fred to implement a histogram of the bytes, rather than the number of keys, under each prefix. msg03312/pgp0.pgp Description: PGP signature

Re: [freenet-dev] [PATCH] More node status info: histogram by bytes

2002-06-20 Thread Matthew Toseland
On Fri, Jun 21, 2002 at 02:58:11AM +0100, Matthew Toseland wrote: Attached is a patch to Fred to implement a histogram of the bytes, rather than the number of keys, under each prefix. Whoops. BTW, my sourceforge nym is 'amphibian'. ? mydiff ? src/freenet/support/KeyBytesHistogram.java ? src

[freenet-dev] CVS is borked

2002-06-21 Thread Matthew Toseland
cvs [diff aborted]: connect to cvs.freenet.sourceforge.net(216.136.171.202):2401 failed: Connection refused - same on update (anonymous). msg03317/pgp0.pgp Description: PGP signature

[freenet-dev] [PATCH] Histogram of sizes of keys in datastore

2002-06-21 Thread Matthew Toseland
Against CVS, probably more useful than the previous patch. ? src/freenet/node/ds/.FSDataStore.java.swp ? src/freenet/support/KeySizeHistogram.java Index: src/freenet/client/http/NodeStatusServlet.java === RCS file:

[freenet-dev] [PATCH] Distribution data for successful requests

2002-06-22 Thread Matthew Toseland
Fixed. Attached patch includes my previous work on a histogram of keys in the datastore by size, I can separate this if people object. The easiest way to deal with this is to give me CVS write access. Next stop, P(success). ? src/freenet/support/KeySizeHistogram.java Index:

Re: [freenet-dev] [PATCH] Distribution data for successful requests

2002-06-22 Thread Matthew Toseland
On Sat, Jun 22, 2002 at 11:39:14PM +0100, Matthew Toseland wrote: Fixed. Attached patch includes my previous work on a histogram of keys in the datastore by size, I can separate this if people object. The easiest way to deal with this is to give me CVS write access. Next stop, P(success). I'm

Re: [freenet-dev] [PATCH] Distribution data for successful requests

2002-06-22 Thread Matthew Toseland
On Sat, Jun 22, 2002 at 11:46:45PM +0100, Matthew Toseland wrote: On Sat, Jun 22, 2002 at 11:39:14PM +0100, Matthew Toseland wrote: Fixed. Attached patch includes my previous work on a histogram of keys in the datastore by size, I can separate this if people object. The easiest way to deal

Re: P(success) was Re: [freenet-dev] [PATCH] Distribution data for successful requests

2002-06-22 Thread Matthew Toseland
Attached is the latest version of the Big Histogram Patch (tm). It implements a new table, 'Probability of success of an incoming request', as well as histograms of successful incoming requests and of the sizes of the files in the datastore. It forces a datastore reset at least on my Kaffe,

Re: P(success) was Re: [freenet-dev] [PATCH] Distribution data for successful requests

2002-06-22 Thread Matthew Toseland
Attached patch implements the above, phase 1 of GJ's overload fix plan, and a crude approximation to phase 2 (it just accepts the requests in the most successful bucket, if it's partly overloaded). In need of optimization, and rather coarse (only 16 buckets). Not yet thoroughly tested, due

Re: [freenet-dev] Fwd: HTL based prioritizing

2002-06-23 Thread Matthew Toseland
On Sun, Jun 23, 2002 at 06:00:31PM -0700, Ian Clarke wrote: I have been asked to forward the following message to the list as the author wishes to remain anonymous. Do we allow HTL=0 from external nodes? If so, why? Aren't there anonymity concerns? Hello - I wonder if you could submit this

[freenet-dev] HTL=0 probes?

2002-06-23 Thread Matthew Toseland
Is it correct that I can send HTL=0 requests to a node, and easily determine if that node has a given file? Without even having to mess with timing data? It would seem so from the source... isn't this incompatible with our goal of plausible deniability? There is a random HTL decrement... but no

[freenet-dev] Core.java, breaking things...

2002-06-23 Thread Matthew Toseland
In order to implement GJ's requested successful request statistics, and his overload improvement plan, I need to either add a (transient) variable to Core.java, or change the type of a (transient) variable. Either way this seems to force a datastore reset (incompatible class change error...).

[freenet-dev] Overload handling changed

2002-06-24 Thread Matthew Toseland
Patch committed, changes overload handling to: always accept if in failure table (as now) 60%-70% load: accept HTL=1, HTL=0 (this is after we have decremented it) accept if in most successful 1/256th of the keyspace (by % requests fulfilled successfully) accept if in datastore 70-80% load: accept

Re: [freenet-dev] Overload handling changed

2002-06-25 Thread Matthew Toseland
On Tue, Jun 25, 2002 at 01:18:37AM -0400, Gianni Johansson wrote: On Monday 24 June 2002 23:19, Matthew wrote: On Tue, Jun 25, 2002 at 04:16:49AM +0100, Matthew Toseland wrote: Patch committed, changes overload handling to: I hoped it might get your attention :) always accept

Re: [freenet-dev] Overload handling changed

2002-06-25 Thread Matthew Toseland
3) I think you need to distinguish between successful DataRequests and InsertRequests. When the network is performance is bad there will be a disproportiate number of successful InsertRequests as compared to the number of successful DataRequests. InsertRequests just mean that data was

Re: [freenet-dev] Overload handling changed

2002-06-25 Thread Matthew Toseland
3) I think you need to distinguish between successful DataRequests and InsertRequests. When the network is performance is bad there will be a disproportiate number of successful InsertRequests as compared to the number of successful DataRequests. InsertRequests just mean that data was

Re: [freenet-dev] Why preemptively QRej?

2002-06-26 Thread Matthew Toseland
I recommend you try just doubling the maxThreads setting in your freenet.conf. This should provide a similar result. We need a way to work out the optimal load maximum at configuration time... or adjust it dynamically. On Wed, Jun 26, 2002 at 05:31:01PM -0700, Tril wrote: I setup a node on a

Re: [freenet-dev] Probabalistic caching with Ps(k)

2002-06-27 Thread Matthew Toseland
On Wed, Jun 26, 2002 at 12:13:15AM -0400, Scott Young wrote: If data is cached with the probabibility of Ps(k), then data would not be likely to be cached where it is not likely to be found. This would also We don't want to use raw Ps(k). It's REALLY low (less than 0.1 except in cases of

Re: [freenet-dev] Why preemptively QRej?

2002-06-27 Thread Matthew Toseland
On Thu, Jun 27, 2002 at 01:07:12AM -0400, Gianni Johansson wrote: On Wednesday 26 June 2002 23:30, Pascal wrote: The reason these limits are there is to keep badly behaved nodes from DOSing the rest of freenet. There were situations where nodes would try to send hundreds of times more

Re: [freenet-dev] Statistics from my non-watchme node:

2002-06-29 Thread Matthew Toseland
On Sat, Jun 29, 2002 at 01:06:53PM -0400, [EMAIL PROTECTED] wrote: Knew I forgot something :-P build number 471 Windows 98 Athlon 1.33G 256MB DDR RAM My stats: 473 (current CVS), up 13 hours, 19 minutes 379 out of 8874 incoming requests successful. 31 out of 142 incoming inserts

Re: [freenet-dev] Node performance

2002-07-02 Thread Matthew Toseland
On Tue, Jul 02, 2002 at 08:34:53PM +0100, Christopher William Turner wrote: My average bandwidth throttled node settles down to exactly track its defined long-term weekly traffic limits. Any nodes in contact with it will be slowed to match it (if they don't lose patience and timeout). They

Re: [freenet-dev] Node performance

2002-07-02 Thread Matthew Toseland
On Tue, Jul 02, 2002 at 09:27:03PM +0100, Christopher William Turner wrote: Matthew Toseland wrote: Very nice. Do our overall per second limits still not work? Last I saw they set each connection's limit to 10% of the overall limit, but since we can have many connections

[freenet-dev] Load

2002-07-03 Thread Matthew Toseland
Once a node gets over 100% load, it never comes back down again, and it stops doing any more work. The reason for this is presumably that the connections on which it might get a response to one of its queries have either fallen down or are saturated with QueryRejects. Possible solutions? My

Re: [freenet-dev] DS taking longer to load.

2002-07-03 Thread Matthew Toseland
On Wed, Jul 03, 2002 at 03:47:51PM -0700, Ian Clarke wrote: On Wed, Jul 03, 2002 at 06:25:21PM -0400, Dan Merillat wrote: I volunteer. What encapsulates the needs of freenet (APIwise) best? FSDirectory.java? The LRU management? Or is that not-interesting to higher layers except for

[freenet-dev] Oskar fixed a fun bug, please upgrade to 480

2002-07-06 Thread Matthew Toseland
#freenet subject is changed by hobx: toad: I fixed it / oskar Everybody grab 480 Bug was causing mis-schedulings for 2 years. msg03402/pgp0.pgp Description: PGP signature

Re: [freenet-dev] Freenet distribution/seedNodes

2002-07-10 Thread Matthew Toseland
On Tue, Jul 09, 2002 at 07:09:01AM +0200, Sebastian Spaeth wrote: Matthew Toseland wrote: Hi. I am going to be working on fixing Oskar's distribution servlet. It is reasonably easy to produce a zip file for UNIX with the appropriate scripts, and he has already written the code to produce

Re: [freenet-dev] Single keyspace specialization vs. multiple keyspace specialization

2002-07-23 Thread Matthew Toseland
On Tue, Jul 23, 2002 at 09:36:43AM -0700, Ian Clarke wrote: I was just wondering if Ian and others feel that multi-area specialization is a requirement for Freenet to work (i.e. stems from a conscious design decision) or just something that is a consequence of the current Freenet

[freenet-dev] Bug in client.cli.Main

2002-07-24 Thread Matthew Toseland
I thought we fixed this ages ago? Anyway, freenet.client.cli.Main doesn't insert the redirect if the file being inserted is already in Freenet. If anyone feels like fixing this etc etc; I haven't found the relevant code yet. For the occasional freesites that use this, this could be used as a DoS

Re: [freenet-dev] Bug in client.cli.Main

2002-07-25 Thread Matthew Toseland
a insert succeed even when a key collision occurs. I vote that we ignore CHK collisions at the client end, and just document it somewhere. At 02:21 AM 07/25/2002 +0100, Matthew Toseland wrote: I thought we fixed this ages ago? Anyway, freenet.client.cli.Main doesn't insert the redirect

Re: [freenet-dev] Proposal: ClientGet MetadataHint message.

2002-07-26 Thread Matthew Toseland
On Fri, Jul 26, 2002 at 08:31:43PM -0400, Gianni Johansson wrote: With the current FCP implementation would be application writers have to handle metadata parsing for redirects themselves. This seems like an unreasonable burden, especially given that Oskar has already written a metadata

[freenet-dev] Implemented random first hop

2002-07-28 Thread Matthew Toseland
CVS now is at version 489, and this includes code to always route to a random key on the first hop, at oskar's suggestion. This hopefully will have the following benefits: a) prevents the network from splitting, sows it back together when/if it does b) if you can't find a piece of data, then

Re: [freenet-dev] Implemented random first hop

2002-07-29 Thread Matthew Toseland
On Mon, Jul 29, 2002 at 09:29:07AM -0400, Gianni Johansson wrote: On Sunday 28 July 2002 21:11, Matthew wrote: CVS now is at version 489, and this includes code to always route to a random key on the first hop, at oskar's suggestion. This hopefully will have the following benefits: a)

[freenet-dev] Version 490; don't count routing steps pointing back to requestor

2002-07-29 Thread Matthew Toseland
maxRoutingSteps should not include steps rejected because they point back to the requestor. Pro: Should prevent RouteNotFound, attempts were made to contact 0 nodes Con: Requests may get routed too far away from the ideal route. This is in the new build 490. Comments? Revocation notices? Flames

Re: [freenet-dev] Freenet distribution/seedNodes

2002-07-29 Thread Matthew Toseland
On Fri, Jul 12, 2002 at 09:37:19AM +0200, Sebastian Spaeth wrote: Matthew Toseland schrieb: I want the installer to see it's in a directory with lib/freenet.jar, lib/freenet-ext.jar, and seednodes.ref, and then install using those rather than downloading. OK, let me summarize to see if I

[freenet-dev] Improved Distribution Servlet

2002-07-29 Thread Matthew Toseland
The Distribution Servlet now includes the Windows installer. You need to set the following config options: services=fproxy,nodestatus,nodeinfo,distribution distribution.class=freenet.node.http.DistributionServlet distribution.port=8891 distribution.allowedHosts=* # assuming you want to

Re: [freenet-dev] Almost all good.

2002-08-30 Thread Matthew Toseland
On Thu, Aug 29, 2002 at 07:39:25PM -0400, Dan Merillat wrote: Net wise, it's the best I've seen in a long time. I can reach freesites, frost works and hell, I can retrieve splitfiles. I have not been able to retrieve any pieces of any splitfiles in a long, long time. I am not sure if this is

[freenet-dev] Find devrandom or dump the content filter

2002-08-30 Thread Matthew Toseland
On Thu, Aug 29, 2002 at 01:57:03PM +0100, Matthew Toseland wrote: Hi. Newly implemented fproxy functionality allows you to fetch an old edition of a DBR site, like this: http://127.0.0.1:/SSK@rBjVda8pC-Kq04jUurIAb8IzAGcPAgM/TFE//?date=20020817 A test page with activelinks to the last 90

Re: [freenet-dev] Find devrandom or dump the content filter

2002-08-31 Thread Matthew Toseland
On Sat, Aug 31, 2002 at 01:18:23PM -0400, Greg Wooledge wrote: http://127.0.0.1:/__USE_DATE_20020817__SSK@rBjVda8pC-Kq04jUurIAb8IzAGcPAgM/TFE// I think that the user interface should work like this: (snip) Thanks for stating the bleedin obvious. Some of us around here have actually

Re: [freenet-dev] Find devrandom or dump the content filter

2002-08-31 Thread Matthew Toseland
On Sat, Aug 31, 2002 at 12:42:07PM -0500, Ed Onken wrote: I agree and would like to ask to clarify one thing that Greg proposed and add another idea and propose a workaround for the whole issue of human readable dates: Is the new HTL in idea #2 incremented from the previous HTL? Only for

Re: [freenet-dev] Fixing spurious filter warnings

2002-08-31 Thread Matthew Toseland
On Sat, Aug 31, 2002 at 02:47:45PM -0400, Gianni Johansson wrote: On Saturday 31 August 2002 12:46, Matthew wrote: On Sat, Aug 31, 2002 at 12:33:58AM -0400, Gianni Johansson wrote: On Friday 30 August 2002 08:57, Matthew wrote: On Thu, Aug 29, 2002 at 01:57:03PM +0100, Matthew

Re: [freenet-dev] Fixing spurious filter warnings

2002-08-31 Thread Matthew Toseland
Looking at Parser.flex... /* Non whitespace and not close of tag (right angle bracket). I.e. * chars that * would not cause an unquoted attribute to end */ NONSEP=[^\n\r\ \t\b\012:?] NONSEP_NOQUOTE=[^\n\r\ \t\b\012:?] This I don't understand... ? or : do not terminate the attribute (meaning

Re: [freenet-dev] Fixing spurious filter warnings

2002-08-31 Thread Matthew Toseland
On Sat, Aug 31, 2002 at 08:20:33PM +0100, Matthew Toseland wrote: Looking at Parser.flex... /* Non whitespace and not close of tag (right angle bracket). I.e. * chars that * would not cause an unquoted attribute to end */ NONSEP=[^\n\r\ \t\b\012:?] NONSEP_NOQUOTE=[^\n\r\ \t\b\012

Re: [freenet-dev] Fixing spurious filter warnings

2002-08-31 Thread Matthew Toseland
Johansson wrote: On Friday 30 August 2002 08:57, Matthew wrote: On Thu, Aug 29, 2002 at 01:57:03PM +0100, Matthew Toseland wrote: Hi. Newly implemented fproxy functionality allows you to fetch an old edition of a DBR site, like this: http://127.0.0.1:/SSK

Re: [freenet-dev] Fixing spurious filter warnings

2002-08-31 Thread Matthew Toseland
On Sat, Aug 31, 2002 at 08:39:42PM -0400, Gianni Johansson wrote: On Saturday 31 August 2002 14:41, you wrote: So an alternate date format may make sense... how about /DATE@MMDD/SSK@...? SSK@blah/blah@MMDD ? is reserved in keys, isn't it? This looks confusing to me. I

Re: [freenet-dev] Fixing spurious filter warnings

2002-08-31 Thread Matthew Toseland
On Sat, Aug 31, 2002 at 08:39:42PM -0400, Gianni Johansson wrote: On Saturday 31 August 2002 14:41, you wrote: So an alternate date format may make sense... how about /DATE@MMDD/SSK@...? SSK@blah/blah@MMDD ? is reserved in keys, isn't it? This looks confusing to me. I

Re: [freenet-dev] Web bug using CSS

2002-09-01 Thread Matthew Toseland
After reading Cruft's short blurb about external CSS style sheets, I hacked around to see if FProxy would accept external style sheets. Inserting the style sheets as *.css doesn't work, because FProxy doesn't recognise the content-type as safe and trips the anonymity filter. Inserting

Re: [freenet-dev] While you're all looking at Fproxy ...

2002-09-01 Thread Matthew Toseland
On Sun, Sep 01, 2002 at 06:21:51AM -0700, [EMAIL PROTECTED] wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 As everybody seems keen on beefing up fproxy all of a sudden, here's a few suggestions for some little changes you all might like to consider, 1) Death to the evil browser

Re: [freenet-dev] Web bug using CSS

2002-09-01 Thread Matthew Toseland
On Sun, Sep 01, 2002 at 04:06:08PM +0300, Jukka Holappa wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Matthew Toseland wrote: |background: url(http://nightwatch.mine.nu/graphics/back.gif); | | Is this the only way to specify a URL in CSS code? Inline CSS should be | reasonably

Re: [freenet-dev] [patch] logging unhandled exceptions

2002-09-01 Thread Matthew Toseland
On Sun, Sep 01, 2002 at 09:33:18PM +0200, Robert Bihlmeyer wrote: Hi, I'm running Fred as a service in the background, and so won't see exceptions that are not logged. The most likely culprits are fatal datastore corruptions. All I see is that Fred is no longer running after a boot. So

Re: [freenet-dev] [patch] mkdir in Makefile's fproxy target

2002-09-01 Thread Matthew Toseland
On Sun, Sep 01, 2002 at 09:51:46PM +0200, Robert Bihlmeyer wrote: Make bombs out with: mkdir: cannot create directory `build/freenet/node/http/templates': No such file or directory That's because build/freenet/node/http does not exist yet. Here's the obviously correct fix: Heh. You're

Re: [freenet-dev] Fixing spurious filter warnings

2002-09-01 Thread Matthew Toseland
On Sun, Sep 01, 2002 at 02:54:02AM +0200, Oskar Sandberg wrote: On Sat, Aug 31, 2002 at 09:02:36PM -0400, Gianni Johansson wrote: On Saturday 31 August 2002 20:07, you wrote: It's ugly. Really really ugly. I don't think it's ugly or I wouldn't have suggested it. However if you are

Re: [freenet-dev] [patch] mkdir in Makefile's fproxy target

2002-09-02 Thread Matthew Toseland
On Sun, Sep 01, 2002 at 09:09:12PM -0500, Pascal wrote: Actually the current cvs is still missing the -p on the mkdir. If you've fixed this you forgot to commit it. -Pascal Isn't mkdir -p gnu specific? Matthew Toseland wrote: On Sun, Sep 01, 2002 at 09:51:46PM +0200, Robert

[freenet-dev] anonymity filter

2002-09-02 Thread Matthew Toseland
link rel=alternate stylesheet href=... wasn't caught by the filter, it is now. The paranoid should upgrade to current CVS immediately, as this would have allowed an external in-freenet stylesheet, which sadly would have allowed inline images etc from the traceable internet, as we can't filter

[freenet-dev] IE and the anonymity filter... big trouble

2002-09-02 Thread Matthew Toseland
If you insert a page of HTML as text/plain, it will not be filtered, being a 'safe' content-type. However, M$IE (tested a fairly recent version - somewhere between 5 and 6 inclusive), will recognize the HTML, and render it. So... we need to have loud warnings not to use IE, all over the place, in

Re: [freenet-dev] IE and the anonymity filter... big trouble

2002-09-02 Thread Matthew Toseland
(being We would have to filter ALL documents of supposedly safe types. careful to modify the View page source link since it would likely be ineffective). Ian. On Mon, Sep 02, 2002 at 08:06:44PM +0100, Matthew Toseland wrote: If you insert a page of HTML as text/plain

Re: [freenet-dev] [patch] mkdir in Makefile's fproxy target

2002-09-02 Thread Matthew Toseland
On Mon, Sep 02, 2002 at 03:01:11PM -0500, Pascal wrote: If some systems don't support it you could instead do something along the lines of: test -d build || mkdir build test -d build/freenet || mkdir build/freenet test -d build/freenet/node || mkdir build/freenet/node test -d

Re: [freenet-dev] Fixing spurious filter warnings

2002-09-02 Thread Matthew Toseland
On Mon, Sep 02, 2002 at 07:00:59PM -0400, Gianni Johansson wrote: On Monday 02 September 2002 15:10, you wrote: On Mon, Sep 02, 2002 at 07:28:32PM +0200, Oskar Sandberg wrote: The fact remains that any link from outside freenet can already do this. If it is really a problem then we

Re: [freenet-dev] IE and the anonymity filter... big trouble

2002-09-04 Thread Matthew Toseland
Committed a fix... we warn IE users, once per IP address, about this. -- Matthew Toseland [EMAIL PROTECTED] [EMAIL PROTECTED] Freenet/Coldstore open source hacker. Looking for $coding. msg03784/pgp0.pgp Description: PGP signature

Re: [freenet-dev] HTML/CSS parser?

2002-09-04 Thread Matthew Toseland
On Thu, Sep 05, 2002 at 01:02:26AM +0100, Matthew Toseland wrote: Does anyone know of an HTML+CSS parser written in java that we could borrow? Maybe from a java web browser? Or maybe we could convert something from C[++]/flex? It looks to me like we :) are going to have to write a more

Re: [freenet-dev] Fixing spurious filter warnings

2002-09-04 Thread Matthew Toseland
or to parse. Hopefully we can just unblock ?'s, and this will just work (or we could only allow certain safe parameters to relative links, ?date being the main one). -- Benjamin Coates -- Matthew Toseland [EMAIL PROTECTED] [EMAIL PROTECTED] Freenet/Coldstore open source hacker. Looking

Re: [freenet-dev] Upping the build

2002-09-05 Thread Matthew Toseland
Officer, Uprizer Inc. http://www.uprizer.com/ Personal Homepage http://locut.us/ -- Matthew Toseland [EMAIL PROTECTED] [EMAIL PROTECTED] Freenet/Coldstore open source hacker. Looking for $coding (I'm cheap) msg03805/pgp0.pgp Description: PGP

Re: [freenet-dev] IE and the anonymity filter... big trouble

2002-09-05 Thread Matthew Toseland
opt-in rather than opt-out, which should be much safer. The point is not that the view page source link doesn't work, this is a minor side effect. The point is that text/plain would get passed through as safe in the first place, which is totally unacceptable. --Dan -- Matthew Toseland [EMAIL

Re: [freenet-dev] Re: Anyone experiencing out-of-memory errors?

2002-09-06 Thread Matthew Toseland
://www.uprizer.com/ Personal Homepage http://locut.us/ -- Matthew Toseland [EMAIL PROTECTED] [EMAIL PROTECTED] Freenet/Coldstore open source hacker. Looking for $coding (I'm cheap) msg03832/pgp0.pgp Description: PGP signature

Re: [freenet-dev] 0.4 Release

2002-09-06 Thread Matthew Toseland
than kill-bad-content filter (this is all about blocking HTML that might make your browser run scripts or contact the external internet, both of which would ruin your anonymity). So... we can't do a 0.5, but 0.4.5 might make sense. --Reuben Balik -- Matthew Toseland [EMAIL PROTECTED] [EMAIL

Re: [freenet-dev] FProxy overhaul

2002-09-06 Thread Matthew Toseland
[EMAIL PROTECTED] Founder Coordinator, The Freenet Projecthttp://freenetproject.org/ Chief Technology Officer, Uprizer Inc. http://www.uprizer.com/ Personal Homepage http://locut.us/ -- Matthew Toseland [EMAIL PROTECTED] [EMAIL PROTECTED

Re: [freenet-dev] 0.4 Release

2002-09-06 Thread Matthew Toseland
. On Fri, Sep 06, 2002 at 12:09:39PM +0100, Matthew Toseland wrote: I implemented it. It is absolutely necessary that the user know we can't possibly protect their anonymity if they use a browser that doesn't respect HTTP mime types. The other point - well... maybe we should do

Re: [freenet-dev] 0.4 Release

2002-09-06 Thread Matthew Toseland
On Fri, Sep 06, 2002 at 02:17:38PM +0200, Oskar Sandberg wrote: On Fri, Sep 06, 2002 at 12:46:44PM +0100, Matthew Toseland wrote: We all agree that we cannot ask most all users to install browser plugins, because maintaining such for X browsers on Y platforms is not realistic

Re: [freenet-dev] Re: Anyone experiencing out-of-memory errors?

2002-09-06 Thread Matthew Toseland
On Fri, Sep 06, 2002 at 12:06:16PM +0100, Matthew Toseland wrote: On Thu, Sep 05, 2002 at 05:15:45PM -0700, Ian Clarke wrote: On Thu, Sep 05, 2002 at 04:53:19PM -0700, Simon G wrote: I've been getting out of memory crashes too: I've also noticed that the ticker contents display

[freenet-dev] Snapshot still at 500; something wrong?

2002-09-06 Thread Matthew Toseland
Ian said he'd rebuilt the snapshot, looks like the snapshot builder is having problems because it's still at version 500. Which is a really bad idea. -- Matthew Toseland [EMAIL PROTECTED] [EMAIL PROTECTED] Freenet/Coldstore open source hacker. Looking for $coding (I'm cheap) msg03841/pgp0

Re: [freenet-dev] Snapshot still at 500; something wrong?

2002-09-06 Thread Matthew Toseland
On Fri, Sep 06, 2002 at 08:48:31AM -0700, Ian Clarke wrote: On Fri, Sep 06, 2002 at 02:37:38PM +0100, Matthew Toseland wrote: Ian said he'd rebuilt the snapshot, looks like the snapshot builder is having problems because it's still at version 500. Which is a really bad idea. Weird - try

Re: [freenet-dev] Fproxy changes

2002-09-06 Thread Matthew Toseland
it. Perhaps. It's a pain to rewrite URLs on the fly, so I may have to maintain diffs to the source (UGH). Just allow access to : AND :8890. The code does not make it absolute, it takes the hostname from the query. --Dan -- Matthew Toseland [EMAIL PROTECTED] [EMAIL PROTECTED] Freenet

Re: [freenet-dev] MSIE issues

2002-09-06 Thread Matthew Toseland
we just work around deficiencies like that? What happens if you send text/x-really-plain instead? Nope. Not really. -- Robbe -- Matthew Toseland [EMAIL PROTECTED] [EMAIL PROTECTED] Freenet/Coldstore open source hacker. Looking for $coding (I'm cheap) msg03855/pgp0.pgp Description

Re: [freenet-dev] MSIE issues

2002-09-06 Thread Matthew Toseland
/p760 =4OHY -END PGP SIGNATURE- ___ devl mailing list [EMAIL PROTECTED] http://hawk.freenetproject.org/cgi-bin/mailman/listinfo/devl -- Matthew Toseland [EMAIL PROTECTED] [EMAIL PROTECTED] Freenet/Coldstore open source hacker. Looking

[freenet-dev] Allowed external stylesheets in freenet

2002-09-06 Thread Matthew Toseland
). -- Matthew Toseland [EMAIL PROTECTED] [EMAIL PROTECTED] Freenet/Coldstore open source hacker. Looking for $coding (I'm cheap) msg03859/pgp0.pgp Description: PGP signature

[freenet-dev] Sarcasm

2002-09-07 Thread Matthew Toseland
altogether once there exists a cross platform browser that can be configured to be safe. One way to make this slightly less user hostile would be a freenet plugin for whatever browser, implementing the scheme freenet:[/]{CHK,SSK,KSK}@... . Comments? -- Matthew Toseland [EMAIL PROTECTED] [EMAIL PROTECTED

Re: [freenet-dev] More anonymity traps?

2002-09-07 Thread Matthew Toseland
design software -- Matthew Toseland [EMAIL PROTECTED] [EMAIL PROTECTED] Freenet/Coldstore open source hacker. Looking for $coding (I'm cheap) msg03882/pgp0.pgp Description: PGP signature

Re: [freenet-dev] Re: Anyone experiencing out-of-memory errors?

2002-09-08 Thread Matthew Toseland
On Sun, Sep 08, 2002 at 12:00:51AM -0400, Dan Merillat wrote: Matthew Toseland writes: Yup. Build 500 had a combinatorial explosion of announcements (within the node). Build 501 largely fixed this. Build 502 fixed another nasty. Build 503 will be out later today, and will fix

Re: [freenet-dev] MSIE issues

2002-09-08 Thread Matthew Toseland
://hawk.freenetproject.org/cgi-bin/mailman/listinfo/devl -- Matthew Toseland [EMAIL PROTECTED] [EMAIL PROTECTED] Freenet/Coldstore open source hacker. Looking for $coding (I'm cheap) msg03895/pgp0.pgp Description: PGP signature

[freenet-dev] Something for later...

2002-09-08 Thread Matthew Toseland
of announcementThreads?. Comments? Flames? -- Matthew Toseland [EMAIL PROTECTED] [EMAIL PROTECTED] Freenet/Coldstore open source hacker. Looking for $coding (I'm cheap) msg03918/pgp0.pgp Description: PGP signature

Re: [freenet-dev] More Micro$oft insecure crap

2002-09-09 Thread Matthew Toseland
The Machine ___ devl mailing list [EMAIL PROTECTED] http://hawk.freenetproject.org/cgi-bin/mailman/listinfo/devl -- Matthew Toseland [EMAIL PROTECTED] [EMAIL PROTECTED] Freenet/Coldstore open source hacker. Looking for $coding (I'm cheap

Re: [freenet-dev] Frozen node

2002-09-09 Thread Matthew Toseland
/ Chief Technology Officer, Uprizer Inc. http://www.uprizer.com/ Personal Homepage http://locut.us/ -- Matthew Toseland [EMAIL PROTECTED] [EMAIL PROTECTED] Freenet/Coldstore open source hacker. Looking for $coding (I'm cheap) msg03938/pgp0.pgp

[freenet-dev] Proposal

2002-09-09 Thread Matthew Toseland
intimately, I can only give very rough estimates for the effort involved in each stage. How detailed do I need to make my proposal? Need input. -- Matthew Toseland [EMAIL PROTECTED] [EMAIL PROTECTED] Freenet/Coldstore open source hacker. Looking for $coding (I'm cheap) msg03943/pgp0.pgp

Re: [freenet-dev] Proposal

2002-09-09 Thread Matthew Toseland
On Mon, Sep 09, 2002 at 10:16:18PM +0100, Matthew Toseland wrote: I have some free time, and would like to spend it being paid to work for the Freenet Project, which I am informed has the funds. Previously prominent developers - oskar and tavin - have been paid $2500 for approximately 2

[freenet-dev] Problems with unix installer

2002-09-10 Thread Matthew Toseland
Somebody recently changed node.Main's behaviour so that if it had no options, and found no config file, it did not run --config. The unix installer ./start-freenet.sh depends on this. Please put it back. -- Matthew Toseland [EMAIL PROTECTED] [EMAIL PROTECTED] Freenet/Coldstore open source hacker

[freenet-dev] Directory implementations

2002-09-10 Thread Matthew Toseland
of these options? Should I tackle a) and b) before debugging c) ? If a) and b) are implemented, is c) even necessary? -- Matthew Toseland [EMAIL PROTECTED] [EMAIL PROTECTED] Freenet/Coldstore open source hacker. Looking for $coding (I'm cheap) msg03961/pgp0.pgp Description: PGP signature

Re: [freenet-dev] Directory implementations

2002-09-10 Thread Matthew Toseland
On Tue, Sep 10, 2002 at 04:44:57PM -0700, Ian Clarke wrote: On Wed, Sep 11, 2002 at 12:37:58AM +0100, Matthew Toseland wrote: It may make sense to implement several different types of store. a) Native filesystem, with one file per key, and the filename derived from the keyname (may need

Re: [freenet-dev] Cleaning up fproxy

2002-09-12 Thread Matthew Toseland
easily expandable. Think webcam servlet. edition freesite checker servlet etc. etc. -- gj -- Matthew Toseland [EMAIL PROTECTED] [EMAIL PROTECTED] Freenet/Coldstore open source hacker. Employed full time by Freenet Project Inc. from 11/9/02 to 11/11/02. msg03975/pgp0.pgp Description: PGP

Re: [freenet-dev] FCP FEC Proposal -- in message body

2002-09-12 Thread Matthew Toseland
encoders, given that the facilities are there, and let the best codec win :-p. -- Matthew Toseland [EMAIL PROTECTED] [EMAIL PROTECTED] Freenet/Coldstore open source hacker. Employed full time by Freenet Project Inc. from 11/9/02 to 11/11/02. msg03976/pgp0.pgp Description: PGP signature

Re: [freenet-dev] Fproxy insert

2002-09-12 Thread Matthew Toseland
a stop-gap solution. So I strongly suggest to reenable some kind of Fproxy in fred, at least as option. FWIW. Ciao. Marco -- * Marco A. Calamari [EMAIL PROTECTED] * il Progetto Freenet - segui il coniglio bianco the Freenet Project - follow the white rabbit -- Matthew

Re: [freenet-dev] Fixing fproxy FEC insert, moving fproxy nodeinfo onto the same port

2002-09-23 Thread Matthew Toseland
. --gj -- Matthew Toseland [EMAIL PROTECTED] [EMAIL PROTECTED] Freenet/Coldstore open source hacker. Employed full time by Freenet Project Inc. from 11/9/02 to 11/11/02. msg04000/pgp0.pgp Description: PGP signature

Re: [freenet-dev] Has anyone tried out the FCP FEC commands?

2002-09-23 Thread Matthew Toseland
On Mon, Sep 23, 2002 at 01:23:59AM -0400, Gianni Johansson wrote: ... besides fish. Could you add support for them to freenet.client.cli.Main? I suppose that'd be quite a lot of work, they're fairly low level... ? --gj -- Matthew Toseland [EMAIL PROTECTED] [EMAIL PROTECTED] Freenet

Re: [freenet-dev] fproxy no longer binds to 0.0.0.0

2002-09-24 Thread Matthew Toseland
-- but since I can't get to port remotely any more, it's not very useful. -- Greg Wooledge | Truth belongs to everybody. [EMAIL PROTECTED] |- The Red Hot Chili Peppers http://wooledge.org/~greg/ | -- Matthew Toseland [EMAIL PROTECTED] [EMAIL

Re: [freenet-dev] Datastore maintenance

2002-09-24 Thread Matthew Toseland
PROTECTED] http://hawk.freenetproject.org/cgi-bin/mailman/listinfo/devl -- Matthew Toseland [EMAIL PROTECTED] [EMAIL PROTECTED] Freenet/Coldstore open source hacker. Employed full time by Freenet Project Inc. from 11/9/02 to 11/11/02. msg04013/pgp0.pgp Description: PGP signature

Re: [freenet-dev] fproxy / nodeinfo single port change checked in

2002-09-24 Thread Matthew Toseland
___ devl mailing list [EMAIL PROTECTED] http://hawk.freenetproject.org/cgi-bin/mailman/listinfo/devl -- Matthew Toseland [EMAIL PROTECTED] [EMAIL PROTECTED] Freenet/Coldstore open source hacker. Employed full time by Freenet Project Inc. from 11/9/02 to 11/11/02. msg04014/pgp0.pgp

Re: [freenet-dev] fproxy / nodeinfo single port change checked in

2002-09-24 Thread Matthew Toseland
On Tue, Sep 24, 2002 at 02:47:58PM +0100, Matthew Toseland wrote: On Tue, Sep 24, 2002 at 01:41:58AM -0400, Gianni Johansson wrote: IRead the comments for my checkin for the details: http://hawk.freenetproject.org/pipermail/cvs/2002-September/000654.html Could someone make sure

Re: [freenet-dev] A pitiful cry for help

2002-09-25 Thread Matthew Toseland
___ devl mailing list [EMAIL PROTECTED] http://hawk.freenetproject.org/cgi-bin/mailman/listinfo/devl -- Matthew Toseland [EMAIL PROTECTED] [EMAIL PROTECTED] Freenet/Coldstore open source hacker. Employed full time by Freenet Project Inc. from 11/9

[freenet-dev] Re: ActiveLinks (from FF)

2002-09-26 Thread Matthew Toseland
, hypothetically, about an fproxy extension to only load one image if another file has successfully downloaded? -- Matthew Toseland [EMAIL PROTECTED] [EMAIL PROTECTED] Freenet/Coldstore open source hacker. Employed full time by Freenet Project Inc. from 11/9/02 to 11/11/02. msg04030/pgp0.pgp

[freenet-dev] Request for wider testing of storeType=native

2002-09-26 Thread Matthew Toseland
=debug (but will produce huge logfiles and run a bit slow). -- Matthew Toseland [EMAIL PROTECTED] [EMAIL PROTECTED] Freenet/Coldstore open source hacker. Employed full time by Freenet Project Inc. from 11/9/02 to 11/11/02. msg04031/pgp0.pgp Description: PGP signature

  1   2   3   4   5   6   7   8   9   10   >