FoxPro

1 program Added 2025-11-03T04:59:09Z Model: google/gemini-2.5-proTemp: 0.4 Evidence Report issue View issues
Aliases: Visual FoxPro, VFP
Provenance: commit 137536c188 · authored 2025-11-03T05:59:09+01:00 · model google/gemini-2.5-pro

Sources mentioning this language

5 sources · pl_id: pl/foxpro
LLM (this repo) · 1PldbPygmentsWikipediaWikidata · Q834358

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.

Designed byNantucket Corporation Computer Associates
First appeared1985
Influenced bydBase
Licenseproprietary
Homepagehttp://www.grafxsoft.com/clipper.htm

Extensions claimed by this language

1 claim. Each row is one upstream assertion with its strength. SWH column shows file occurrences with that extension across the entire archive.
ExtensionSourceStrengthSWH
.prgpygmentsprimary692.6K files

Related languages

Visual FoxPro (0.65)VFP (0.50)VLISP (0.25)Zoea (0.22)Visual J# (0.22)

LLM-contributed programs

Text to HTML Converter

Provenance: commit 137536c188 · authored 2025-11-03T05:59:09+01:00 · model google/gemini-2.5-pro · Temp 0.4
code.prg · added: 2025-11-03T04:59:09Z
************************************************************************
*  TextToHTML
*
FUNCTION TextToHTML(tcText,llNoHtml)
************************************************************************
*  Author: Rick Strahl
*          (c) West Wind Technologies, 1996-2003
*          http://www.west-wind.com/
*
* Converted from a C# function I wrote
* http://www.west-wind.com/weblog/posts/1154.aspx
*
* Pass in a block of text and it will be converted to 'HTML'
* Specifically it encodes the text and then replaces carriage returns
* with <br> tags.
*
* It can also optionally wrap the text in <pre> tags which is
* useful for displaying code.
*
* llNoHtml - if .t. doesn't HTML encode the text
************************************************************************
LPARAMETERS tcText, llNoHtml, llPreTag
LOCAL lcText

IF EMPTY(tcText)
   RETURN ""
ENDIF

IF VARTYPE(llNoHtml) # "L"
   llNoHtml = .f.
ENDIF
IF VARTYPE(llPreTag) # "L"
   llPreTag = .f.
ENDIF

IF !llNoHtml
   lcText = HtmlEncode(tcText)
ELSE
   lcText = tcText
ENDIF

IF llPreTag
   lcText = "<pre>" + lcText + "</pre>"
ELSE
   lcText = STRTRAN(lcText,CHR(13),"",1)
   lcText = STRTRAN(lcText,CHR(10),"<br />" + CHR(10))
ENDIF

RETURN lcText
* EOF TextToHTML()


************************************************************************
*  HtmlEncode
*
FUNCTION HtmlEncode(cString)
************************************************************************
*  Turns an string into an HTML encoded string
************************************************************************
cString = STRTRAN(cString,"&","&amp;")
cString = STRTRAN(cString,"<","&lt;")
cString = STRTRAN(cString,">","&gt;")
cString = STRTRAN(cString,'"',"&quot;")
cString = STRTRAN(cString,"'","&#39;")

* For <pre> formatting
cString = STRTRAN(cString,CHR(9),"&nbsp;&nbsp;&nbsp;&nbsp;")

RETURN cString
* EOF HtmlEncode()

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 FoxPro (mapped to pl/foxpro). 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/FoxPro/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← FoxDot FP →