[Tech] AJAX
freenetwork at web.de
freenetwork at web.de
Mon Nov 19 09:31:12 UTC 2007
On Mon, 19 Nov 2007 09:13:24 +0100, xpdf wrote:
>Phillip Hutchings pisze:
>> On 19/11/2007, at 20:54, xpdf wrote:
>>
>>
>>> xpdf pisze:
>>>
>>>> Phillip Hutchings pisze:
>>>>
>>>>
>>>>> On 19/11/2007, at 19:52, xpdf wrote:
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>> Can I use AJAX on my freepage?
>>>>>>
>>>>>>
>>>>>>
>>>>> No, for security reasons Freenet filters out JavaScript, since it
>>>>> could be used to harvest freenet user's details.
>>>>>
>>>>>
>>>>>
>>>> ok. meybe rewrite a put metod or make special freenetput?
>>>> (similar to send a message to frost)
>>>> I would like to write a forum & comment below my news on web page.
>>>> What
>>>> I can do this?
>>>> You are open on this idea?
>>>>
>>> Interactive with users is very important.
>>>
>>
>> Look at frost then, it's a usenet-style system. There are also a few
>> others, I recall one that works through a web interface similar to
>> fproxy.
It's called "WORST" :)
Sadly development seems to have ceased but it works quite good
>> Freenet isn't really suited to run a wiki, or any system that's based
>> on the standard client-server model.
>yes but interaction is interesting to users.
>If I read freepage I would like to write a comment. On page I make
><form freeput>
></form>
>The data send to KSK/SSK etc. file like that frost. Och, i cant imagine
>the comment is sended to frost board directly ;) & serwer on my komputer
>read the messages from frost & update my web page. Slowly but usualy.
In The Old Days there was a method called "Nearly Instant Messaging" or "NIM" that allowed visitors to enter a freeform text into a textbox and upload this text to a numbered slot that's in effect a KSK-key. Haven't seen these on 0.7, though.
Here's a code snipplet to get you started, I don't kow if this works at all with 0.7, or might need some tweaking:
<form method="post" enctype="multipart/form-data">
Used Submission Slot Checker:<br />
<a href="/KSK at YourNimNameSpace-1" target="_blank">1</a>
<a href="/KSK at YourNimNameSpace-2" target="_blank">2</a>
<a href="/KSK at YourNimNameSpace-3" target="_blank">3</a>
<a href="/KSK at YourNimNameSpace-4" target="_blank">4</a>
<a href="/KSK at YourNimNameSpace-5" target="_blank">5</a>
<a href="/KSK at YourNimNameSpace-6" target="_blank">6</a>
<a href="/KSK at YourNimNameSpace-7" target="_blank">7</a>
<a href="/KSK at YourNimNameSpace-8" target="_blank">8</a>
<a href="/KSK at YourNimNameSpace-9" target="_blank">9</a>
<a href="/KSK at YourNimNameSpace-10" target="_blank">10</a> <br />
<br />
Target:<br />
<input type="text" name="key" value="KSK at YourNimNameSpace-1" size="30"> Adjust as required (use a free slot)<br />
<br />
HTL:<br />
<input type="text" name="htl" value="15" size="6"> Higher values for deeper insertions (they take longer)<br />
<br />
Your Message:<br />
<textarea name="filename" rows="10" cols="80"></textarea><br />
<br />
<input type="submit" name="submit" value="Submit NIM Message">
<input type="hidden" name="content-type" value="text/plain">
</form>
More information about the Tech
mailing list