Home
last modified time | relevance | path

Searched refs:urlname (Results 1 – 25 of 131) sorted by relevance

123456

/dports/net/netembryo/netembryo-0.1.1/utils/
H A Durl.c38 int Url_init(Url * url, char * urlname) in Url_init() argument
45 hostname_begin = strstr(urlname, "://"); in Url_init()
47 hostname_begin = urlname; in Url_init()
51 protocol_len = (size_t)(hostname_begin - urlname); in Url_init()
53 protocol_begin = urlname; in Url_init()
56 hostname_len = strlen(urlname) - ((size_t)(hostname_begin - urlname)); in Url_init()
64 path_len = strlen(urlname) - ((size_t)(path_begin - urlname)); in Url_init()
77 port_len = strlen(urlname) - ((size_t)(port_begin - urlname)); in Url_init()
/dports/devel/tclvfs/tclvfs-20080503/library/
H A Dhttpvfs.tcl284 set urlname "[join $urlparts /]$querystr"
286 set urlname $name
288 return $urlname
315 set urlname [urlname $name]
316 ::vfs::log "stat $name ($urlname)"
323 set token [geturl "$dirurl$urlname" -validate 1 -headers $headers]
333 set urlname [urlname $name]
334 ::vfs::log "access $name $mode ($urlname)"
349 set urlname [urlname $name]
350 ::vfs::log "open $name $mode $permissions ($urlname)"
[all …]
/dports/databases/sqlrelay/sqlrelay-1.7.0/src/configs/
H A Dxmldom.cpp1156 parseUrl(urlname); in load()
2159 while (*urlname && character::isWhitespace(*urlname)) { in parseUrl()
2160 urlname++; in parseUrl()
2165 urlname+=9; in parseUrl()
2167 urlname+=7; in parseUrl()
2192 (urlname+6):(urlname+4); in parseDir()
2234 urlname+=7; in parseLinkFile()
2236 urlname+=5; in parseLinkFile()
2241 urlname+=9; in parseLinkFile()
2243 urlname+=7; in parseLinkFile()
[all …]
/dports/www/e107/e107/e107_plugins/user/
H A De_dashboard.php146 $urlname = preg_replace("/\.php|\?.*/", "", substr($url, (strrpos($url, "/")+1)));
150 $urlname = preg_replace("/\.php|\?.*/", "", $url);
152 $dayarray[$log_id][$urlname] = array('url' => $url, 'total' => $total, 'unique' => $unique);
153 if (!isset($pagearray[$urlname]['total'])) $pagearray[$urlname]['total'] = 0;
154 if (!isset($pagearray[$urlname]['unique'])) $pagearray[$urlname]['unique'] = 0;
155 $pagearray[$urlname]['total'] += $total;
156 $pagearray[$urlname]['unique'] += $unique;
/dports/www/phpgroupware/phpgroupware-0.9.16.017/nntp/
H A Dadmin.php82 $urlname = '/nntp/admin.php'; variable
177 … 'nml' => $GLOBALS['phpgw']->nextmatchs->left($urlname,intval($start),intval($tg),$extra_parms),
178 … 'nmr' => $GLOBALS['phpgw']->nextmatchs->right($urlname,intval($start),intval($tg),$extra_parms),
184 …'sort_con' => $GLOBALS['phpgw']->nextmatchs->show_sort_order($sort, 1, $order, $urlname,' # ','&t…
185 …'sort_group' => $GLOBALS['phpgw']->nextmatchs->show_sort_order($sort, 2, $order, $urlname,lang('G…
186 …'sort_active' => $GLOBALS['phpgw']->nextmatchs->show_sort_order($sort, 3, $order, $urlname,lang('…
H A Dpreferences.php222 $urlname = '/nntp/preferences.php'; variable
229 'nml' => $GLOBALS['phpgw']->nextmatchs->left($urlname,$start,$tg,$extra_parms),
230 'nmr' => $GLOBALS['phpgw']->nextmatchs->right($urlname,$start,$tg,$extra_parms),
236 …'sort_con' => $GLOBALS['phpgw']->nextmatchs->show_sort_order($sort,'1',$order,$urlname,' # ','&tg…
237 …'sort_group' => $GLOBALS['phpgw']->nextmatchs->show_sort_order($sort,'2',$order,$urlname,lang('Na…
238 …'sort_active' => $GLOBALS['phpgw']->nextmatchs->show_sort_order($sort,'3',$order,$urlname,' '.lan…
/dports/audio/mp3riot/mp3riot-1.3_1/
H A Dmp3riot1089 if ( $REPLACEFLAG == 1 ) { $urlname = &Replacelink($urlname) }
1092 $urlname =
1100 if ( $HEXFLAG == 1 ) { $urlname = &Correcthexlinks($urlname); }
1103 $urlname = join '', $httpaddress, "/", $urlname;
1785 if ( $REPLACEFLAG == 1 ) { $urlname = &Replacelink($urlname) }
1788 $urlname =
1796 if ( $HEXFLAG == 1 ) { $urlname = &Correcthexlinks($urlname); }
2170 if ( $REPLACEFLAG == 1 ) { $urlname = &Replacelink($urlname) }
2173 $urlname =
2181 if ( $HEXFLAG == 1 ) { $urlname = &Correcthexlinks($urlname); }
[all …]
/dports/devel/checkbashisms/devscripts-2.21.4/scripts/
H A Dnamecheck.pl157 my $urlname = $url;
158 if ($urlname =~ /:\/\/([^\/]+)\//) {
159 $urlname = $1;
161 print sprintf "Testing %20s", $urlname;
/dports/x11-toolkits/wxgtk31/wxWidgets-3.1.5/samples/sockets/
H A Dclient.cpp575 void DoDownload(const wxString& urlname) in DoDownload() argument
584 wxURL url(urlname); in DoDownload()
587 wxLogError("Failed to parse URL \"%s\"", urlname); in DoDownload()
592 wxLogMessage("Establishing connection to \"%s\"...", urlname); in DoDownload()
596 wxLogError("Failed to retrieve URL \"%s\"", urlname); in DoDownload()
613 urlname, sout.GetString()); in DoDownload()
620 wxString urlname = wxGetTextFromUser in OnTestURL() local
626 if ( urlname.empty() ) in OnTestURL()
629 s_urlname = urlname; in OnTestURL()
632 DoDownload(urlname); in OnTestURL()
[all …]
/dports/x11-toolkits/wxgtk30/wxWidgets-3.0.5.1/samples/sockets/
H A Dclient.cpp579 void DoDownload(const wxString& urlname) in DoDownload() argument
588 wxURL url(urlname); in DoDownload()
591 wxLogError("Failed to parse URL \"%s\"", urlname); in DoDownload()
596 wxLogMessage("Establishing connection to \"%s\"...", urlname); in DoDownload()
600 wxLogError("Failed to retrieve URL \"%s\"", urlname); in DoDownload()
617 urlname, sout.GetString()); in DoDownload()
624 wxString urlname = wxGetTextFromUser in OnTestURL() local
630 if ( urlname.empty() ) in OnTestURL()
633 s_urlname = urlname; in OnTestURL()
636 DoDownload(urlname); in OnTestURL()
[all …]
/dports/x11-toolkits/py-wxPython40/wxPython-4.0.7/ext/wxWidgets/samples/sockets/
H A Dclient.cpp579 void DoDownload(const wxString& urlname) in DoDownload() argument
588 wxURL url(urlname); in DoDownload()
591 wxLogError("Failed to parse URL \"%s\"", urlname); in DoDownload()
596 wxLogMessage("Establishing connection to \"%s\"...", urlname); in DoDownload()
600 wxLogError("Failed to retrieve URL \"%s\"", urlname); in DoDownload()
617 urlname, sout.GetString()); in DoDownload()
624 wxString urlname = wxGetTextFromUser in OnTestURL() local
630 if ( urlname.empty() ) in OnTestURL()
633 s_urlname = urlname; in OnTestURL()
636 DoDownload(urlname); in OnTestURL()
[all …]
/dports/www/moodle310/moodle/competency/
H A Dlib.php90 $urlname = get_string('userplans', 'core_competency');
93 $urlname = $competencyname;
103 'urlname' => $urlname,
133 $message->contexturlname = $urlname;
170 $urlname = $planname;
179 'urlname' => $urlname,
209 $message->contexturlname = $urlname;
/dports/www/moodle311/moodle/competency/
H A Dlib.php90 $urlname = get_string('userplans', 'core_competency');
93 $urlname = $competencyname;
103 'urlname' => $urlname,
133 $message->contexturlname = $urlname;
170 $urlname = $planname;
179 'urlname' => $urlname,
209 $message->contexturlname = $urlname;
/dports/www/moodle39/moodle/competency/
H A Dlib.php90 $urlname = get_string('userplans', 'core_competency');
93 $urlname = $competencyname;
103 'urlname' => $urlname,
133 $message->contexturlname = $urlname;
170 $urlname = $planname;
179 'urlname' => $urlname,
209 $message->contexturlname = $urlname;
/dports/devel/rudiments/rudiments-1.2.2/test/
H A Durl.cpp17 const char *urlname= in main() local
37 test("open",u.open(urlname,O_RDONLY|O_BINARY)); in main()
46 test("open",u.open(urlname,O_RDONLY)); in main()
/dports/games/simutrans/simutrans-121.0/
H A Dget_pak.sh87 urlname=${paksets[$setcount]}
151 urlname=${paksets[$setcount]}
153 DownloadInstallZip "$urlname" "$zipname"
/dports/www/bozohttpd/bozohttpd-20210227/
H A Ddir-index-bozo.c147 char *urlname, *htmlname; in bozo_dir_index() local
161 urlname = bozo_escape_rfc3986(httpd, name, 0); in bozo_dir_index()
170 bozo_printf(httpd, "<a href=\"%s/\">", urlname); in bozo_dir_index()
174 bozo_printf(httpd, "<a href=\"./%s\">", urlname); in bozo_dir_index()
177 bozo_printf(httpd, "<a href=\"%s\">", urlname); in bozo_dir_index()
/dports/www/py-django-simple-captcha/django-simple-captcha-0.5.14/captcha/tests/
H A Dtests.py161 for urlname in ("captcha-test", "captcha-test-model-form"):
162 r = self.client.get(reverse(urlname))
165 reverse(urlname),
226 for urlname in ("captcha-test", "captcha-test-model-form"):
229 r1 = self.client.get(reverse(urlname))
230 r2 = self.client.get(reverse(urlname))
253 reverse(urlname),
270 reverse(urlname),
287 r = self.client.get(reverse(urlname))
296 self.client.get(reverse(urlname))
[all …]
/dports/java/javamail/javamail-JAVAMAIL-1_6_2/mail/src/main/java/com/sun/mail/smtp/
H A DSMTPSSLTransport.java60 public SMTPSSLTransport(Session session, URLName urlname) { in SMTPSSLTransport() argument
61 super(session, urlname, "smtps", true); in SMTPSSLTransport()
/dports/archivers/libarc/libarc-2.0.2/
H A Durl_newsgroup.c92 char *host, *p, *urlname; in url_newsgroup_open() local
101 if((urlname = strdup(name)) == NULL) in url_newsgroup_open()
103 n = strlen(urlname); in url_newsgroup_open()
104 while(n > 0 && urlname[n - 1] == '/') in url_newsgroup_open()
105 urlname[--n] = '\0'; in url_newsgroup_open()
111 free(urlname); in url_newsgroup_open()
132 url->name = urlname; in url_newsgroup_open()
/dports/japanese/timidity++-slang/TiMidity++-2.15.0/libarc/
H A Durl_newsgroup.c101 char *host, *p, *urlname; in url_newsgroup_open() local
110 if((urlname = safe_strdup(name)) == NULL) in url_newsgroup_open()
112 n = strlen(urlname); in url_newsgroup_open()
113 while(n > 0 && urlname[n - 1] == '/') in url_newsgroup_open()
114 urlname[--n] = '\0'; in url_newsgroup_open()
120 free(urlname); in url_newsgroup_open()
141 url->name = urlname; in url_newsgroup_open()
/dports/audio/ocp/ocp-0.2.90/playgmi/timidity-git/libarc/
H A Durl_newsgroup.c101 char *host, *p, *urlname; in url_newsgroup_open() local
110 if((urlname = safe_strdup(name)) == NULL) in url_newsgroup_open()
112 n = strlen(urlname); in url_newsgroup_open()
113 while(n > 0 && urlname[n - 1] == '/') in url_newsgroup_open()
114 urlname[--n] = '\0'; in url_newsgroup_open()
120 free(urlname); in url_newsgroup_open()
141 url->name = urlname; in url_newsgroup_open()
/dports/audio/timidity++-gtk/TiMidity++-2.15.0/libarc/
H A Durl_newsgroup.c101 char *host, *p, *urlname; in url_newsgroup_open() local
110 if((urlname = safe_strdup(name)) == NULL) in url_newsgroup_open()
112 n = strlen(urlname); in url_newsgroup_open()
113 while(n > 0 && urlname[n - 1] == '/') in url_newsgroup_open()
114 urlname[--n] = '\0'; in url_newsgroup_open()
120 free(urlname); in url_newsgroup_open()
141 url->name = urlname; in url_newsgroup_open()
/dports/audio/timidity++-motif/TiMidity++-2.15.0/libarc/
H A Durl_newsgroup.c101 char *host, *p, *urlname; in url_newsgroup_open() local
110 if((urlname = safe_strdup(name)) == NULL) in url_newsgroup_open()
112 n = strlen(urlname); in url_newsgroup_open()
113 while(n > 0 && urlname[n - 1] == '/') in url_newsgroup_open()
114 urlname[--n] = '\0'; in url_newsgroup_open()
120 free(urlname); in url_newsgroup_open()
141 url->name = urlname; in url_newsgroup_open()
/dports/audio/timidity++/TiMidity++-2.15.0/libarc/
H A Durl_newsgroup.c101 char *host, *p, *urlname; in url_newsgroup_open() local
110 if((urlname = safe_strdup(name)) == NULL) in url_newsgroup_open()
112 n = strlen(urlname); in url_newsgroup_open()
113 while(n > 0 && urlname[n - 1] == '/') in url_newsgroup_open()
114 urlname[--n] = '\0'; in url_newsgroup_open()
120 free(urlname); in url_newsgroup_open()
141 url->name = urlname; in url_newsgroup_open()

123456