Home
last modified time | relevance | path

Searched refs:cgi (Results 1 – 25 of 396) sorted by relevance

12345678910>>...16

/external/python/cpython2/Lib/test/
Dtest_cgi.py2 import cgi
16 cgi.sys = HackedSysModule()
55 return cgi.parse(fp, env, strict_parsing=1)
115 form = cgi.FieldStorage(fp=fake_stdin, environ=environ)
126 self.assertEqual("test & string", cgi.escape("test & string"))
127 self.assertEqual("&lt;test string&gt;", cgi.escape("<test string>"))
128 self.assertEqual("&quot;test string&quot;", cgi.escape('"test string"', True))
139 fcd = cgi.FormContentDict(env)
140 sd = cgi.SvFormContentDict(env)
141 fs = cgi.FieldStorage(environ=env)
[all …]
/external/dnsmasq/contrib/dynamic-dnsmasq/
Ddynamic-dnsmasq.pl106 my %cgi;
115 $cgi{(split '=', $element)[0]} = (split '=', $element)[1];
118 unless ( defined $cgi{'hostname'} ) {
122 if ( !exists $cgi{'myip'} ) {
123 $cgi{'myip'} = $client->peerhost();
126 if ( authorize($user, $pass, $cgi{'hostname'}, $cgi{'myip'}) == 0 ) {
127 print_http_response($client, $cgi{'myip'}, "good");
128 update_dns(\%cgi);
/external/python/cpython2/Demo/cgi/
Dcgi2.py7 import cgi
10 form = cgi.FieldStorage()
19 print "<p>", cgi.escape(key), ":", cgi.escape(value)
Dwiki.py3 import os, re, cgi, sys, tempfile
4 escape = cgi.escape
7 form = cgi.FieldStorage()
/external/autotest/client/common_lib/cros/
Dinteractive_xmlrpc_server.py7 import cgi
105 cgi.escape(title),
106 cgi.escape(onclick)))
164 html = '<div id="%s"></div>' % cgi.escape(name)
180 item_html = '"<div id=\\"%s\\"></div>"' % cgi.escape(item_name)
184 cgi.escape(list_name),
206 cgi.escape(item_name),
/external/autotest/server/site_tests/bluetooth_Sanity_LEDiscovery/
Dbluetooth_Sanity_LEDiscovery.py5 import cgi
59 html = '%s %s' % (cgi.escape(device['Address']),
60 cgi.escape(device['Alias']))
106 (cgi.escape(self.name),
107 cgi.escape(self.address))))
/external/autotest/server/site_tests/bluetooth_Sanity_Discovery/
Dbluetooth_Sanity_Discovery.py5 import cgi
59 html = '%s %s' % (cgi.escape(device['Address']),
60 cgi.escape(device['Alias']))
105 (cgi.escape(self.name),
106 cgi.escape(self.address))))
/external/libxml2/test/URI/
Duri.data13 /root.cgi#OK
14 /root.cgi?OK
15 /root.cgi?OK#OK2
/external/ltp/pan/cgi/
DREADME22 results.cgi
30 browse.cgi
35 The side by side comparison is done with in reconsile.cgi
37 reconsile.cgi
47 -a` output in browse.cgi and reconsile.cgi. You will be missing this
/external/selinux/python/sepolicy/sepolicy/help/
Dfile_equiv.txt9 …s handed /srv/www/cgi-bin/myscript.cgi, it substitutes /var/www for /svr/www and looks up the cont…
/external/toolchain-utils/crosperf/
Dresults_report_templates.py7 import cgi
19 escaped = cgi.escape(table_name, quote=True)
34 return _ExperimentFileHTML % (cgi.escape(experiment_file_text), )
/external/python/cpython2/Tools/faqwiz/
DREADME16 importable module. The actual script in cgi-bin is minimal.
20 faqw.py executable script to be edited and installed in cgi-bin
71 install faqw.py in your cgi-bin directory. Make sure that it is
75 specifying a different directory for "cgi-bin" if local conventions so
78 http://your.web.server/cgi-bin/faqw.py
81 file. The documentation for Python's cgi module in the Python Library
84 documentation is repeated in the doc string in the cgi module; try
85 ``import cgi; print cgi.__doc__''.
Dfaqw.py32 import cgi
33 cgi.print_exception(t, v, tb)
/external/libxml2/result/URI/
Duri.data13 http://foo.com/root.cgi#OK
14 http://foo.com/root.cgi?OK
15 http://foo.com/root.cgi?OK#OK2
/external/autotest/apache/conf/
Dcgi-directives1 AddHandler cgi-script .cgi
/external/autotest/server/site_tests/bluetooth_Sanity_Discoverable/
Dbluetooth_Sanity_Discoverable.py5 import cgi
74 (cgi.escape(self.adapter['Alias']),
75 cgi.escape(self.adapter['Address']))))
/external/curl/tests/data/
Dtest4515 Location: data.cgi?moo=http://&/450002
34 Location: data.cgi?moo=http://&/450002
70 GET /want/data.cgi?moo=http://&/450002 HTTP/1.1
/external/python/cpython2/Modules/_ctypes/darwin/
DREADME.ctypes2 http://www.opendarwin.org/cgi-bin/cvsweb.cgi/~checkout~/proj/dlcompat/
/external/nist-sip/java/gov/nist/javax/sip/header/ims/
DPAccessNetworkInfo.java100 public void setCGI3GPP(String cgi) throws ParseException { in setCGI3GPP() argument
102 if (cgi == null) in setCGI3GPP()
107 setParameter(ParameterNamesIms.CGI_3GPP, cgi); in setCGI3GPP()
/external/autotest/tko/
Djsonp_fetcher.cgi3 import cgi, traceback, urllib2
16 form = cgi.FieldStorage(keep_blank_values=True)
Dsave_query.cgi3 import os, cgi, cgitb, time, urllib
7 form = cgi.FieldStorage()
Dmachine_test_attribute_graph.cgi5 import cgi, cgitb, os, sys, re, subprocess
16 form = cgi.FieldStorage()
/external/python/cpython2/Doc/library/
Dcgi.rst1 :mod:`cgi` --- Common Gateway Interface support
4 .. module:: cgi
16 **Source code:** :source:`Lib/cgi.py`
34 Most often, CGI scripts live in the server's special :file:`cgi-bin` directory.
64 .. _using-the-cgi-module:
66 Using the cgi module
69 Begin by writing ``import cgi``. Do not use ``from cgi import *`` --- the
111 form = cgi.FieldStorage()
252 import cgi
253 form = cgi.FieldStorage()
[all …]
/external/llvm/test/Transforms/InstCombine/
Dshift-shift.ll6 ; https://llvm.org/bugs/show_bug.cgi?id=12967
25 ; https://llvm.org/bugs/show_bug.cgi?id=26760
45 ; https://llvm.org/bugs/show_bug.cgi?id=8547
/external/swiftshader/third_party/LLVM/lib/Target/ARM/
DREADME.txt16 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43129
357 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19598
358 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18560
359 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27016
361 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11831
362 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11826
363 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11825
364 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11824
365 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11823
366 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11820
[all …]

12345678910>>...16