💾 Archived View for gemi.dev › gemini-mailing-list › 000749.gmi captured on 2024-05-26 at 16:37:06. Gemini links have been rewritten to link to archived content
⬅️ Previous capture (2023-12-28)
-=-=-=-=-=-=-
In its visual editor Wikipedia helps the editing person to cite sources by establishing title, author, date by retrieving and parsing a given URL: > You can add a citation by selecting from the drop-down "cite" menu > at the top of the editing box. _ https://en.wikipedia.org/wiki/Wikipedia:Citing_sources Does anybody know where to start coding support for citing gemini:// resources via this drop-down from within Wikipedia's visual editor? According to Wikipedia citations for pages typically include:
I think the main problem you'd run into is that it's easy to make a request to another HTTP site to get that data (since you're already in HTTP-space), but it'd be very difficult to make a request into Geminispace unless you abuse mozz's proxy or something. Possibly it would be easier to write a utility hosted in Geminispace to generate Wikipedia-format citations from a given link (or BibTeX format for wider compatibility), which you could then paste into Wikipedia. ~nytpu -- Alex // nytpu alex at nytpu.com GPG Key: https://www.nytpu.com/files/pubkey.asc Key fingerprint: 43A5 890C EE85 EA1F 8C88 9492 ECCD C07B 337B 8F5B https://useplaintext.email/ -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 833 bytes Desc: not available URL: <https://lists.orbitalfox.eu/archives/gemini/attachments/20210224/ec4d 3e3d/attachment.sig>
On Wed, 24 Feb 2021 at 20:01, <text at sdfeu.org> wrote: > > In its visual editor Wikipedia helps the editing person to cite sources > by establishing title, author, date by retrieving and parsing a given URL: > > > You can add a citation by selecting from the drop-down "cite" menu > > at the top of the editing box. > _ https://en.wikipedia.org/wiki/Wikipedia:Citing_sources > > Does anybody know where to start coding support for citing gemini:// > resources via this drop-down from within Wikipedia's visual editor? Citing sources would be exactly the same, just a different protocol in the URL. e.g.: ``` Would become {{cite web |title=Project Gemini FAQ |url=gemini://gemini.circumlunar.space/docs/faq.gmi |access-date=27 Feb 2021 |url-status=live |archiveurl= |archivedate= |df=dmy-all }}</ref> ``` The archive links don't *have* to be from archive.org, that's just what's typically used. AFAIK we don't have any archives like that yet, so for now that would have to be left missing (which is perfectly fine - it's an optional field). The only Gemini Space archives I know of are data dumps. Having a dedicated template for gemini space probably would be best though :) {{Template:cite gemini space}} or something > According to Wikipedia citations for pages typically include: > > * URL of the specific page [...] > * the date the page was accessed > (required if the publication date is unknown) AFAIK this is mostly added by hand, except the URL and maybe title. Syntax for this stuff is still not decided on so I'd wait until then to add it anyways. - Oliver Simmons
---