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-pagesWikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| Typing | static |
|---|---|
| Designed by | Guidewire Software · open source contributors · Scott McKinney |
| First appeared | 2010 |
| Influenced by | Java · C# |
| License | Apache 2.0 |
| Homepage | https://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.| Extension | Source | Strength | SWH |
|---|---|---|---|
.gs | pygments | primary | 257.9K files |
.gsp | linguist | primary | 1.3M files |
.gsp | pygments | secondary | 1.3M files |
.gsx | pygments | secondary | 7.9K files |
.vark | pygments | secondary | 236 files |
Related languages
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
<%@ 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.)