GSP

1 program Added 2026-03-12T10:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: Groovy Server Pages
Provenance: commit f352983931 · authored 2026-03-12T13:44:04+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

7 sources · pl_id: pl/groovy-server-pages
LLM (this repo) · 1PldbLinguistPygmentsWikipediaHyperpolyglotWikidata · Q5587589

Wikipedia infobox

Pulled from the wikimedia/structured-wikipedia snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and pl_fact.csv for the long-table provenance.

Typingstatic
Designed byGuidewire Software · open source contributors · Scott McKinney
First appeared2010
Influenced byJava · C#
LicenseApache 2.0
Homepagehttps://gosu-lang.github.io/

Extensions claimed by this language

5 claims. Each row is one upstream assertion with its strength. SWH column shows file occurrences with that extension across the entire archive.
ExtensionSourceStrengthSWH
.gspygmentsprimary257.9K files
.gsplinguistprimary1.3M files
.gsppygmentssecondary1.3M files
.gsxpygmentssecondary7.9K files
.varkpygmentssecondary236 files

Related languages

JSP (0.33)Groovy (0.20)SSI (0.19)Lucee (0.15)GRAP (0.10)

LLM-contributed programs

Book List View

Provenance: commit f352983931 · authored 2026-03-12T13:44:04+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.gsp · license: Apache-2.0 · added: 2026-03-12T10:00:00Z
<%@ page contentType="text/html;charset=UTF-8" %>
<!DOCTYPE html>
<html>
<head>
    <title>Book List</title>
</head>
<body>
    <h1><g:message code="book.list.label" default="Book List"/></h1>
    <g:if test="${bookList}">
        <ul>
            <g:each in="${bookList}" status="i" var="book">
                <li class="${(i % 2) == 0 ? 'odd' : 'even'}">
                    <g:link action="show" id="${book.id}">
                        ${book.title.encodeAsHTML()}
                    </g:link>
                </li>
            </g:each>
        </ul>
    </g:if>
    <g:else>
        <p>No books found.</p>
    </g:else>
    <div>
        <g:link action="create">
            <g:message code="book.new" default="New Book"/>
        </g:link>
    </div>
</body>
</html>

Real programs from Software Heritage

No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)

Contribute — propose a file extension

Tell us where to find evidence about GSP (mapped to pl/groovy-server-pages). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/GSP/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← GSL GSQL →