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/foxproWikipedia 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 by | Nantucket Corporation Computer Associates |
|---|---|
| First appeared | 1985 |
| Influenced by | dBase |
| License | proprietary |
| Homepage | http://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.| Extension | Source | Strength | SWH |
|---|---|---|---|
.prg | pygments | primary | 692.6K files |
Related languages
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
************************************************************************
* 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,"&","&")
cString = STRTRAN(cString,"<","<")
cString = STRTRAN(cString,">",">")
cString = STRTRAN(cString,'"',""")
cString = STRTRAN(cString,"'","'")
* For <pre> formatting
cString = STRTRAN(cString,CHR(9)," ")
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.)