💾 Archived View for rawtext.club › ~sloum › geminilist › 004947.gmi captured on 2024-02-05 at 11:16:46. Gemini links have been rewritten to link to archived content
⬅️ Previous capture (2021-11-30)
-=-=-=-=-=-=-
Gary Johnson lambdatronic at disroot.org
Wed Jan 27 22:19:59 GMT 2021
- - - - - - - - - - - - - - - - - - -
Jason McBrayer wrote:
Having more complex forms is a temptation to implement applications on
Gemini, rather than using pairings of protocol+client that are more
appropriate (e.g. using NNTP for a message board).
Charlie Stanton <charlie at shtanton.com> wrote:
I agree with this completely. I think Gemini should be a protocol for
viewing content only. I missed all the discussion around inimeg, titan
etc. at the time but I feel similarly about those.
I think a different protocol for filling out forms makes a lot more
sense, and we can work on having gemini clients and form clients play
nicely together so the user experience doesn't suffer from using a
different program to fill out a form.
Adding forms would take us wayyyyy too close to the web in my opinion.
And now me...
tl;dr: Gemini can already emulate forms. We just need a spec language clarification in Section 3.2.1 1x (INPUT) from Solderpunk and for client authors to update their software accordingly. I illustrate both points (and provide code) below.
I appreciate the generally conservative nature of the Gemini communitywhen it comes to extending the Gemini and Gemtext specifications. As aserver author, this certainly keeps my life easier.
However, I'd like to go on record here to say that interactive capsulesare not something that worries me. There are already quite a few of themout there in Geminispace (hello Astrobotany!), and I'd like to continueto see this medium grow and thrive in our little corner of the internet.
I don't think form-like data submission should be seen as an evil. Itallows us to implement a wide variety of CGI-style applications that doall their computing on the server side (often through some scriptextension mechanism). This keeps our servers and clients simple,empowers content authors to build cool things, and still keeps us nicelyinsulated from "The Javascript Trap" since our Gemini clients neverdownload and run any client-side code.
=
https://www.gnu.org/philosophy/javascript-trap.html The Javascript Trap
Over the months that I have followed this mailing list, I've seenbroadly two categories of proposals around extending Gemini's simpleinput methods:
1. Ways to submit multiple pieces of information to a server at once.
2. Ways to upload files to a server.
Both proposals are pretty self-explanatory since they extend thepossible functionality of interactive Gemini capsules without breakingany of our privacy or security guarantees. However, option 1 puts anadditional burden on client authors, and option 2 puts an additionalburden on both client and server authors.
Some members of our community have suggested that these features aren'tworth the extra effort. Others have argued in favor of one or both ofthem, and a brave few have gone off and created their own sisterprotocols to try and implement Gemini-like systems that also supportsome variant of these two data upload options (e.g., Titan, Dioscuri,Inimeg).
From a personal standpoint (and I can only speak for myself hereobviously), I wouldn't mind one or more form types being added toGemtext (option 1 above) as it would reduce the total number ofround-trip network requests between client and server to submit multiplepieces of information (and I have quite a slow satellite internetconnection, so this matters to me).
However, even without (a very unlikely) form enhancement to Solderpunk'sGemtext spec, I'd like to remind folks that we actually do (or at leastwe should) already have the ability to emulate forms in our Geminicapsules.
Assuming we are currently browsing a page atgemini://awesome.capsule.net/form, this dynamic Gemtext page couldinclude forms as follows:
To fill in any field below, simply click it. Everything's a link in Gemini, so you can't really mess up! = > form?$SESSION&name Name: $NAME = > form?$SESSION&password Password: $PASSWORD = > form?$SESSION&smog SMOG is great: $SMOG = > form?$SESSION&plant Best Astrobotany Plant: $PLANT = > form?$SESSION&submit Submit Answers``` Here, my Gemtext is a template string, which I process in a context inwhich $SESSION, $NAME, $PASSWORD, $SMOG, and $PLANT are defined (ordefault to empty strings). When the page first loads, we create a new$SESSION value in our CGI script and insert it into the links topreserve state across requests until we restart the server or the userrefreshes the page. (Obviously, a more robust state management mechanism could be achievedwith client certs and a DB, but I just mean to show a very simpleexample here.) ## Section 3.2: Server-side Responses Here would be the server-side responses for each of those links:
The requested resource accepts a line of textual user input. The <META>line is a prompt which should be displayed to the user. The sameresource should then be requested again with the user's input includedas a query component. Queries are included in requests as per the usualgeneric URL definition in RFC3986, i.e. separated from the path by a ?.Reserved characters used in the user's input must be "percent-encoded"as per RFC3986, and space characters should also be percent-encoded.```
As far as I can tell, the fix here is for Solderpunk to update the textin section 3.2.1 to indicate that if a query string is already part ofthe request leading to an INPUT response, then the user's input shouldbe appended (using &) to the existing query string rather than replacingit wholesale (using ?).
Otherwise, we really have no way to input more than one query param(with &) other than asking the user to type it directly into the INPUTprompt (e.g., cat&dog&pig). I'm hoping this isn't the spec's intentionhere and that we just have a case of ambiguous wording that has led someclient authors to create divergent (or broken) implementations.
Okay, that was a LONG message, but I hope I've communicated my pointsclearly. Thanks to all who read this far, and thanks to everyone formaking Gemini such an active and engaging community!
I've attached a short (47 line) CGI script (for Space Age) thatimplements the dynamic form example described in this email. If clientswould append user input params (with &) to existing query strings ratherthan replace them, it should work perfectly. Until then, it will justhave to feel a bit sad and dejected.
Whose client is going to make it work first! I wait eagerly with batedbreath to find out.
Happy hacking! Gary
-------------- next part --------------An embedded and charset-unspecified text was scrubbed...Name: form.cljURL: <https://lists.orbitalfox.eu/archives/gemini/attachments/20210127/4d28aea6/attachment.ksh>-------------- next part --------------
-- GPG Key ID: 7BC158EDUse `gpg --search-keys lambdatronic' to find meProtect yourself from surveillance: https://emailselfdefense.fsf.org=======================================================================() ascii ribbon campaign - against html e-mail/\ www.asciiribbon.org - against proprietary attachments
Why is HTML email a security nightmare? See https://useplaintext.email/
Please avoid sending me MS-Office attachments.See http://www.gnu.org/philosophy/no-word-attachments.html