Skip to content

Commit 9d36c80

Browse files
committed
added search services
1 parent dea0308 commit 9d36c80

112 files changed

Lines changed: 1493 additions & 419 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

lasso/blog/2025-04-14-icst25.mdx

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,4 @@ authors: [mkessel]
55
tags: []
66
---
77

8-
We recently presented our journal article as part of ICST25's Journal-First track @ ICST'25.
9-
10-
11-
12-
138
We're excited to share that we recently presented our journal article, <a href="https://www.sciencedirect.com/science/article/pii/S0164121224000141">"Promoting Open Science in Test-driven Software Experiments"</a> as part of the Journal-First track at <a href="https://conf.researchr.org/home/icst-2025">ICST'25</a>! This track provides a unique opportunity to showcase research that has already been published in a peer-reviewed journal. You can find our presentation slides <a href="/web/pdfviewer?f=ICST_JF_talk_02.04.25.pdf">here</a>.

lasso/docusaurus.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ const config: Config = {
7171
label: 'Documentation',
7272
},
7373
{to: '/hub', label: 'TDSEHub (Pipelines)', position: 'left'},
74-
{to: '/lasso/search', label: 'Code Search', position: 'left'},
74+
{to: '/search', label: 'Code Search', position: 'left'},
7575
{to: '/labs', label: 'Labs (Playground)', position: 'left'},
7676
{to: '/blog', label: 'Blog', position: 'left'},
7777
{to: '/research/intro', label: 'Research', position: 'left'},
@@ -119,7 +119,7 @@ const config: Config = {
119119
},
120120
{
121121
label: 'Code Search',
122-
href: '/lasso/search',
122+
href: '/search',
123123
},
124124
// {
125125
// label: 'Discord',

lasso/src/components/HomepageFeatures/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const FeatureList: FeatureItem[] = [
1818
image: 'img/features/services.png',
1919
description: (
2020
<>
21-
Utilize <a href="hub">LSL (LASSO Scripting Language)</a> for customizable code analysis services, including <a href="lasso/search">Code Search</a> and <a href="lasso/submit?exampleId=OPENAI_GEN">Generation (via LLMs)</a>, Test Generation, and Study Designs, enabling reproducible research in software engineering.
21+
Utilize <a href="hub">LSL (LASSO Scripting Language)</a> for customizable code analysis services, including <a href="search">Code Search</a> and <a href="lasso/submit?exampleId=OPENAI_GEN">Generation (via LLMs)</a>, Test Generation, and Study Designs, enabling reproducible research in software engineering.
2222
</>
2323
),
2424
position: true,

lasso/src/components/HubFeatures/HubFeatures.tsx

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,26 @@
1+
// TDS examples
2+
13
// examples
4+
export class TDSExamples {
5+
static MAP = {
6+
BASE64: {
7+
label: "Hello World (JDK Collections)",
8+
lql: `Base64 {
9+
encode(byte[])->byte[]
10+
decode(java.lang.String)->byte[]
11+
}`,
12+
sheets: [{
13+
name: "testEncode",
14+
signature: "()",
15+
jsonl: `{"cells": {"A1": {}, "B1": "create", "C1": "Base64"}}
16+
{"cells": {"A2": {}, "B2": "encode", "C2": "A1", "D2": "\\"Hello World!\\".getBytes()"}}`,
17+
invocations: []
18+
}]
19+
}
20+
}
21+
}
22+
23+
// Hub examples
224
export class HubExamples {
325
static MAP = {
426
HELLO_WORLD_QUICKSTART: {

0 commit comments

Comments
 (0)