Home
last modified time | relevance | path

Searched full:script (Results 1 – 25 of 90) sorted by relevance

1234

/civetweb-2.7.6/src/third_party/lua-5.3.5/src/
Dlua.c137 "usage: %s [options] [script [args]]\n" in print_usage()
140 " -i enter interactive mode after executing 'script'\n" in print_usage()
221 ** it has 'argv[script]', which is the script name. The arguments
222 ** to the script (everything after 'script') go to positive indices;
223 ** other arguments (before the script name) go to negative indices.
224 ** If there is no script name, assume interpreter's name as base.
226 static void createargtable (lua_State *L, char **argv, int argc, int script) { in createargtable() argument
228 if (script == argc) script = 0; /* no script name? */ in createargtable()
229 narg = argc - (script + 1); /* number of positive indices */ in createargtable()
230 lua_createtable(L, narg, script + 1); in createargtable()
[all …]
/civetweb-2.7.6/docs/
DUserManual.md90 e.g., CGI, SSI and Lua script files are recognized by the file name pattern.
174 Index scripts (like `index.cgi` or `index.lua`) may have script handled resources.
194 Note: This parameter affects only index scripts. A path like /here/script.cgi/handle/this.ext
195 will call /here/script.cgi with PATH\_INFO='/handle/this.ext', no matter if this option is set to `…
197 This feature can be used to completely hide the script extension from the URL.
218 Extra environment variables to be passed to the CGI script in
224 regardless of the script file extension. If this option is not set (which is
225 the default), CivetWeb looks at first line of a CGI script,
386 Run a Lua script in the background, independent from any connection.
387 The script is started before network access to the server is available.
[all …]
/civetweb-2.7.6/test/
Dresource_script_demo.lua1 -- This is a Lua script that handles sub-resources, e.g. resource_script_demo.lua/path/file.ext
18 mg.write("<html><head><title>Civetweb Lua script resource handling test</title></head>\r\n")
20 …mg.write("The server admin must make sure this script is available as URI " .. scriptUri .. "<br>\…
33 mg.write("<html><head><title>Civetweb Lua script resource handling test</title></head>\r\n")
40 mg.write("<html><head><title>Civetweb Lua script resource handling test</title></head>\r\n")
57 mg.write("<html><head><title>Civetweb Lua script resource handling test</title></head>\r\n")
71 mg.write("<html><head><title>Civetweb Lua script resource handling test</title></head>\r\n")
88 mg.write("<html><head><title>Civetweb Lua script resource handling test</title></head>\r\n")
103 mg.write("<html><head><title>Civetweb Lua script resource handling test</title></head>\r\n")
111 mg.write("<html><head><title>Civetweb Lua script resource handling test</title></head>\r\n")
[all …]
Dpage3a.lp11 script = "test/page2.lp"
12 mg.write("Output of " .. script .. " (path type: \"abs\"):\n")
16 mg.include(script, "abs")
Dpage3r.lp11 script = "page2.lp"
12 mg.write("Output of " .. script .. " (path type: \"rel\"):\n")
16 mg.include(script, "rel")
Dpage3v.lp11 script = "page2.lp"
12 mg.write("Output of " .. script .. " (path type: \"virtual\"):\n")
16 mg.include(script, "virtual")
Dpage3.lp11 script = string.gsub(mg.script_name, "page3.lp$", "page2.lp")
12 mg.write("Output of " .. script .. ":\n")
16 mg.include(script)
Dpage3.lua10 mg.write("<html><head><title>CivetWeb Lua script test page 3</title></head>\r\n")
17 mg.write("<html><head><title>CivetWeb Lua script test page 3</title></head>\r\n")
26 mg.write("<html>\r\n<head><title>CivetWeb Lua script test page 3</title></head>\r\n")
/civetweb-2.7.6/src/third_party/duktape-1.8.0/debugger/static/
Dindex.html48 <div style="color: #dddddd">(output from script, print() and alert() calls)</div>
91 <script src="jquery-1.11.1.min.js" type="text/javascript"></script>
92 <script src="jquery-ui.min.js" type="text/javascript"></script>
93 <script src="socket.io-1.2.0.js" type="text/javascript"></script>
94 <script src="webui.js" type="text/javascript"></script>
/civetweb-2.7.6/src/third_party/duktape-1.5.2/debugger/static/
Dindex.html48 <div style="color: #dddddd">(output from script, print() and alert() calls)</div>
91 <script src="jquery-1.11.1.min.js" type="text/javascript"></script>
92 <script src="jquery-ui.min.js" type="text/javascript"></script>
93 <script src="socket.io-1.2.0.js" type="text/javascript"></script>
94 <script src="webui.js" type="text/javascript"></script>
/civetweb-2.7.6/src/
Dmod_lua.inl387 /* This reader is called multiple times, to fetch the full Lua script */
407 /* Forth/Final call: tell Lua we got the entire script */
428 /* This reader is called multiple times, to fetch the full Lua script */
525 /* Forward all data inside the Lua script tag */
635 /* Assume the script does not support keep_alive. The script may change
671 /* execute script code */
703 /* Distinguish between <? script ?> (is_var == 0)
829 const char *script[LSP_INCLUDE_MAX_DEPTH + 1]; member
901 include_history->script[include_history->depth]);
1650 char *script; member
[all …]
Dmod_duktape.inl46 /* Script is called "protected" (duk_peval_file), so script errors should
48 * the script could raise a fatal error. */
60 duk_int_t duk_peval_file(duk_context *duk_ctx, const char *script);
102 duk_peval_file(duk_context *duk_ctx, const char *script) argument
104 push_file_as_string(duk_ctx, script);
/civetweb-2.7.6/src/third_party/lua-5.2.4/src/
Dlua.c115 "usage: %s [options] [script [args]]\n" in print_usage()
118 " -i enter interactive mode after executing " LUA_QL("script") "\n" in print_usage()
197 narg = argc - (n + 1); /* number of arguments to the script */ in getargs()
198 luaL_checkstack(L, narg + 3, "too many arguments to script"); in getargs()
441 int script; in pmain() local
445 script = collectargs(argv, args); in pmain()
446 if (script < 0) { /* invalid arg? */ in pmain()
447 print_usage(argv[-script]); in pmain()
463 if (!runargs(L, argv, (script > 0) ? script : argc)) return 0; in pmain()
464 /* execute main script (if there is one) */ in pmain()
[all …]
/civetweb-2.7.6/src/third_party/lua-5.1.5/doc/
Dlua.111 .I script
33 .I script
38 .I script
48 .RI ' script '.
52 .IR script ,
140 .I script
147 .IR script .
Dlua.html18 <I>script</I>
40 <I>script</I>
45 <I>script</I>
55 '<I>script</I>'.
59 <I>script</I>,
147 <I>script</I>
154 <I>script</I>.
/civetweb-2.7.6/src/third_party/lua-5.1.5/src/
Dlua.c44 "usage: %s [options] [script [args]].\n" in print_usage()
48 " -i enter interactive mode after executing " LUA_QL("script") "\n" in print_usage()
121 narg = argc - (n + 1); /* number of arguments to the script */ in getargs()
122 luaL_checkstack(L, narg + 3, "too many arguments to script"); in getargs()
343 int script; in pmain() local
352 script = collectargs(argv, &has_i, &has_v, &has_e); in pmain()
353 if (script < 0) { /* invalid args? */ in pmain()
359 s->status = runargs(L, argv, (script > 0) ? script : s->argc); in pmain()
361 if (script) in pmain()
362 s->status = handle_script(L, argv, script); in pmain()
[all …]
/civetweb-2.7.6/src/third_party/lua-5.2.4/doc/
Dlua.111 .I script
32 .I script
37 .I script
86 .IR script .
92 .IR script .
/civetweb-2.7.6/src/third_party/lua-5.3.5/doc/
Dlua.111 .I script
32 .I script
37 .I script
82 .IR script .
88 .IR script .
/civetweb-2.7.6/test/htmldir/
Dindex.html6 <script type="text/javascript" src="script.js"></script>
14 <div id="div1">Script not working</div>
/civetweb-2.7.6/
Dbuild.cmd31 @if not "!options!"=="!options:/? =!" set usage="Convenience script to build %project% with CMake"
85 :: Print the usage or start the script
101 :: Stop the script if the user double clicked
115 @call :log 2 "Welcome to the %project% build script"
118 @call :log 2 "This script builds the project using CMake"
142 :print_usage - Prints the usage of the script
302 :script_source - Determines if the script was ran from the cli or explorer
310 @call :log 3 "Attempting to detect the script source"
338 @call :log 3 "The script was invoked from %script_source%"
491 echo Logging was used to early in the script, log_folder isn't set yet
[all …]
Dmingw.cmd89 :: Stop the script if the user double clicked
107 @call :log 2 "Welcome to the MinGW download script"
110 @call :log 2 "This script downloads a specific version of MinGW"
605 :print_usage - Prints the usage of the script
628 :script_source - Determines if the script was ran from the cli or explorer
636 @call :log 3 "Attempting to detect the script source"
664 @call :log 3 "The script was invoked from %script_source%"
809 echo Logging was used to early in the script, log_folder isn't set yet
813 echo Logging was used to early in the script, log_path isn't set yet
827 echo Logging was used to early in the script, logging_level isn't set yet
/civetweb-2.7.6/ci/travis/
Dsetup_lua.sh4 # this script installs a lua / luarocks environment in .travis/lua
8 # After this script is finished, you can configure your environment to
13 # The current versions when this script was written
17 # directory where this script is located
/civetweb-2.7.6/examples/_obsolete/docroot/
Dindex.html10 <script src="jquery.js"></script>
11 <script src="main.js"></script>
/civetweb-2.7.6/test/ajax/
Dtest.html5 <script type='text/javascript' language="javascript" src='jquery.js'></script>
6 <script type='text/javascript' language="javascript">
99 </script>
/civetweb-2.7.6/examples/https/
Dcivetweb.conf10 # in case you want a self signed cert, you can use the script
25 # 7) run civetweb, like above - or better create your own start script
54 additional_header Content-Security-Policy: script-src 'self'

1234