Home
last modified time | relevance | path

Searched full:url (Results 1 – 25 of 1091) sorted by relevance

12345678910>>...44

/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/
H A Durls.py9 from django.urls import re_path as url unknown
21 url(r'^landing/$', views.landing, name='landing'),
23 url(r'^builds/$',
28 url(r'^build/(?P<build_id>\d+)$', views.builddashboard, name="builddashboard"),
29 url(r'^build/(?P<build_id>\d+)/tasks/$',
34 url(r'^build/(?P<build_id>\d+)/task/(?P<task_id>\d+)$', views.task, name='task'),
36 url(r'^build/(?P<build_id>\d+)/recipes/$',
41url(r'^build/(?P<build_id>\d+)/recipe/(?P<recipe_id>\d+)/active_tab/(?P<active_tab>\d{1})$', views…
43 url(r'^build/(?P<build_id>\d+)/recipe/(?P<recipe_id>\d+)$', views.recipe, name='recipe'),
44url(r'^build/(?P<build_id>\d+)/recipe_packages/(?P<recipe_id>\d+)$', views.recipe_packages, name='…
[all …]
/openbmc/qemu/
H A D.gitmodules3 url = https://gitlab.com/qemu-project/seabios.git/
6 url = https://gitlab.com/qemu-project/SLOF.git
9 url = https://gitlab.com/qemu-project/ipxe.git
12 url = https://gitlab.com/qemu-project/openbios.git
15 url = https://gitlab.com/qemu-project/qemu-palcode.git
18 url = https://gitlab.com/qemu-project/u-boot.git
21 url = https://gitlab.com/qemu-project/skiboot.git
24 url = https://gitlab.com/qemu-project/QemuMacDrivers.git
27 url = https://gitlab.com/qemu-project/seabios-hppa.git
30 url = https://gitlab.com/qemu-project/u-boot-sam460ex.git
[all …]
/openbmc/openbmc/poky/bitbake/lib/bb/fetch2/
H A Dgitsm.py33 Check to see if a given url can be fetched with git.
59 elif module and line.strip().startswith('url'):
60 url = line.split('=')[1].strip()
61 modules[module]['url'] = url
86 uris[m] = md['url']
96 # Translate the module url into a SRC_URI
99 # Properly formated URL already
101 url = uris[module].replace('%s:' % proto, 'gitsm:', 1)
108 url = "gitsm://" + uris[module].replace(':/', '/', 1)
111 …fers to relative ssh reference %s. References may fail if not absolute." % (ud.url, uris[module]))
[all …]
H A D__init__.py51 def __init__(self, url, message=''): argument
55 msg = "The URL: '%s' is not trusted and cannot be used" % url
56 self.url = url
58 self.args = (url,)
61 """Exception raised when encountering an invalid url"""
62 def __init__(self, url, message=''): argument
66 msg = "The URL: '%s' is invalid and cannot be interpreted" % url
67 self.url = url
69 self.args = (url,)
73 def __init__(self, message, url = None): argument
[all …]
H A Dnpmsw.py9 SRC_URI = "npmsw://some.registry.url;OptionA=xxx;OptionB=xxx;..."
65 """Check if a given url can be fetched with npmsw"""
69 """Init npmsw specific variables within url data"""
72 ud.shrinkwrap_file = re.sub(r"^npmsw://", "", ud.url.split(";")[0])
81 url = None
98 # Handle duplicate dependencies without url
110 url = str(uri)
120 f.write(url)
134 url = str(uri)
149 (?P<url>[^#]+)
[all …]
/openbmc/openbmc-test-automation/lib/
H A Dredfish_request.py34 def form_url(url): argument
36 Form a complete path for user url.
39 url Url passed by user e.g. /redfish/v1/Systems/system.
47 "https://" + str(openbmc_host) + ":" + str(https_port) + str(url)
67 def request_login(self, headers, url, credential, timeout=10): argument
75 url Requested path from user.
101 self, headers=headers, url=url, data=credential
106 def request_get(self, headers, url, timeout=10, verify=False): argument
114 url Requested path from user.
128 url = redfish_request.form_url(url)
[all …]
/openbmc/bmcweb/http/
H A Dutility.hpp11 #include <boost/url/segments_view.hpp>
12 #include <boost/url/url.hpp>
13 #include <boost/url/url_view_base.hpp>
37 constexpr uint64_t getParameterTag(std::string_view url) in getParameterTag() argument
42 for (size_t urlIndex = 0; urlIndex < url.size(); urlIndex++) in getParameterTag()
44 char character = url[urlIndex]; in getParameterTag()
60 url.substr(urlSegmentIndex, urlIndex + 1 - urlSegmentIndex); in getParameterTag()
328 inline void appendUrlPieces(boost::urls::url& url, AV&&... args) in appendUrlPieces() argument
334 url.segments().push_back(arg); in appendUrlPieces()
384 inline bool readUrlSegments(const boost::urls::url_view_base& url, in readUrlSegments() argument
[all …]
/openbmc/bmcweb/test/redfish-core/lib/
H A Dupdate_service_test.cpp7 #include <boost/url/url.hpp>
22 // No protocol, schema on url in TEST()
23 std::optional<boost::urls::url> ret = in TEST()
35 // Protocol, no schema on url in TEST()
36 std::optional<boost::urls::url> ret = in TEST()
48 // Both protocol and schema on url in TEST()
49 std::optional<boost::urls::url> ret = in TEST()
66 // No protocol, schema on url in TEST()
67 std::optional<boost::urls::url> ret = in TEST()
79 // Protocol, no schema on url in TEST()
[all …]
/openbmc/openbmc/poky/bitbake/doc/sphinx-static/
H A Dswitchers.js103 // Navigate to the first existing URL in urls.
104 var url = urls.shift();
108 if (url.startsWith("file://")) {
109 window.location.href = url;
114 window.location.href = url;
118 url: url, property in AnonymousClassc446d8e20301
120 window.location.href = url;
129 var url = window.location.href;
132 var urlarray = url.split('/');
145 var url = window.location.href;
[all …]
/openbmc/openbmc/poky/bitbake/lib/toaster/toastermain/
H A Durls.py9 from django.urls import re_path as url, include unknown
25 # url(r'^toaster/', include('toaster.foo.urls')),
28 # url(r'^admin/doc/', include('django.contrib.admindocs.urls')),
31 url(r'^logs/', include('log_viewer.urls')),
35 url(r'^orm/eventfile$', bldcollector.views.eventfile),
37 url(r'^health$', TemplateView.as_view(template_name="health.html"), name='Toaster Health'),
40 url(r'^$', never_cache(RedirectView.as_view(url='/toastergui/', permanent=True))),
46 urlpatterns.insert(1, url(r'', include('fresh.urls')))
51 urlpatterns.insert(1, url(r'', include(debug_toolbar.urls)))
56 url(r'^admin/', admin.site.urls),
[all …]
/openbmc/openbmc/poky/documentation/sphinx-static/
H A Dswitchers.js.in109 // Navigate to the first existing URL in urls.
110 var url = urls.shift();
114 if (url.startsWith("file://")) {
115 window.location.href = url;
120 window.location.href = url;
124 url: url, property in AnonymousClass83dfa30a0301
126 window.location.href = url;
135 var url = window.location.href;
144 var urlarray = url.split('/');
157 var url = window.location.href;
[all …]
/openbmc/bmcweb/test/http/
H A Dutility_test.cpp7 #include <boost/url/parse.hpp>
8 #include <boost/url/url.hpp>
9 #include <boost/url/url_view.hpp>
154 parsed = boost::urls::parse_relative_ref("/absolute/url"); in TEST()
155 EXPECT_TRUE(readUrlSegments(*parsed, "absolute", "url")); in TEST()
157 parsed = boost::urls::parse_relative_ref("not/absolute/url"); in TEST()
158 EXPECT_FALSE(readUrlSegments(*parsed, "not", "absolute", "url")); in TEST()
169 boost::urls::url_view url( in TEST() local
174 readUrlSegments(url, "redfish", "v1", "Managers", std::ref(managerId), in TEST()
190 TEST(URL, JsonEncoding) in TEST() argument
[all …]
H A Drouter_test.cpp35 constexpr std::string_view url = "/foo"; in TEST() local
37 Request req{{boost::beast::http::verb::get, url, 11}, ec}; in TEST()
44 router.newRuleTagged<getParameterTag(url)>(std::string(url)) in TEST()
50 Request patchReq{{boost::beast::http::verb::patch, url, 11}, ec}; in TEST()
53 router.newRuleTagged<getParameterTag(url)>(std::string(url)) in TEST()
84 constexpr std::string_view url = "/foo/bar"; in TEST() local
87 Request::Body{boost::beast::http::verb::get, url, 11}, ec); in TEST()
110 constexpr std::string_view url = "/foo/bar"; variable
113 Request::Body{boost::beast::http::verb::get, url, 11}, ec);
115 router.newRuleTagged<getParameterTag(url)>("/foo/<path>")
[all …]
/openbmc/openbmc/poky/meta/lib/oe/
H A Ddistro_check.py7 def create_socket(url, d): argument
12 return urllib.request.urlopen(url)
14 def get_links_from_url(url, d): argument
19 soup = BeautifulSoup(create_socket(url,d), "html.parser", parse_only=SoupStrainer("a"))
25 def find_latest_numeric_release(url, d): argument
26 "Find the latest listed numeric release on the given url"
29 for link in get_links_from_url(url, d):
52 def get_source_package_list_from_url(url, section, d): argument
53 "Return a sectioned list of package names from a URL list"
55 bb.note("Reading %s: %s" % (url, section))
[all …]
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/templates/
H A Dbase_specific.html44 projectsUrl : "{% url 'all-projects' %}",
45 projectsTypeAheadUrl: {% url 'xhr_projectstypeahead' as prjurl%}{{prjurl|json}},
47 landingSpecificURL : "{% url 'landing_specific' project.id %}",
48 landingSpecificCancelURL : "{% url 'landing_specific_cancel' project.id %}",
50 projectPageUrl : {% url 'project' project.id as purl %}{{purl|json}},
51 projectSpecificPageUrl : {% url 'project_specific' project.id as purl %}{{purl|json}},
52 xhrProjectUrl : {% url 'xhr_project' project.id as pxurl %}{{pxurl|json}},
54 recipesTypeAheadUrl: {% url 'xhr_recipestypeahead' project.id as paturl%}{{paturl|json}},
55 layersTypeAheadUrl: {% url 'xhr_layerstypeahead' project.id as paturl%}{{paturl|json}},
56 machinesTypeAheadUrl: {% url 'xhr_machinestypeahead' project.id as paturl%}{{paturl|json}},
[all …]
H A Dbase.html42 projectsUrl : "{% url 'all-projects' %}",
43 projectsTypeAheadUrl: {% url 'xhr_projectstypeahead' as prjurl%}{{prjurl|json}},
46 projectPageUrl : {% url 'project' project.id as purl %}{{purl|json}},
47 xhrProjectUrl : {% url 'xhr_project' project.id as pxurl %}{{pxurl|json}},
49 recipesTypeAheadUrl: {% url 'xhr_recipestypeahead' project.id as paturl%}{{paturl|json}},
50 layersTypeAheadUrl: {% url 'xhr_layerstypeahead' project.id as paturl%}{{paturl|json}},
51 machinesTypeAheadUrl: {% url 'xhr_machinestypeahead' project.id as paturl%}{{paturl|json}},
52 distrosTypeAheadUrl: {% url 'xhr_distrostypeahead' project.id as paturl%}{{paturl|json}},
53 projectBuildsUrl: {% url 'projectbuilds' project.id as pburl %}{{pburl|json}},
54 xhrCustomRecipeUrl : "{% url 'xhr_customrecipe' %}",
[all …]
H A Dbaseprojectspecificpage.html28 <li><a class="nav-parent" href="{% url 'project' project.id %}">Configuration</a></li>
30 <li><a href="{% url 'projectcustomimages' project.id %}">Custom images</a></li>
31 <li><a href="{% url 'projectimagerecipes' project.id %}">Image recipes</a></li>
32 <li><a href="{% url 'projectsoftwarerecipes' project.id %}">Software recipes</a></li>
33 <li><a href="{% url 'projectmachines' project.id %}">Machines</a></li>
34 <li><a href="{% url 'projectlayers' project.id %}">Layers</a></li>
35 <li><a href="{% url 'projectdistros' project.id %}">Distros</a></li>
37 <li><a href="{% url 'projectconf' project.id %}">BitBake variables</a></li>
/openbmc/openbmc/poky/bitbake/lib/layerindexlib/
H A Drestapi.py27 def load_index(self, url, load): argument
33 url is the url to the rest api of the layer index, such as:
39 up = urlparse(url)
42 return self.load_index_file(up, url, load)
45 return self.load_index_web(up, url, load)
47 raise layerindexlib.plugin.LayerIndexPluginUrlError(self.type, url)
50 def load_index_file(self, up, url, load): argument
56 ud is the parsed url to the local file or directory.
65 index.config['URL'] = url
134 def load_index_web(self, up, url, load): argument
[all …]
/openbmc/bmcweb/redfish-core/lib/
H A Dodata.hpp11 #include <boost/url/format.hpp>
12 #include <boost/url/url.hpp>
38 boost::urls::url url = boost::urls::format("/redfish/v1/{}", service); in redfishOdataGet() local
41 url = boost::urls::url("/redfish/v1"); in redfishOdataGet()
43 serviceObj["url"] = url; in redfishOdataGet()
/openbmc/phosphor-misc/http-redirect/
H A Dhttp-redirect.awk166 reason = "Access with a https:// URL"
233 function split_url_components(url, components)
235 if (match(url, /#/)) {
236 components["frag"] = substr(url, RSTART + 1)
237 url = substr(url, 1, RSTART - 1)
240 if (match(url, /\?/)) {
241 components["query"] = substr(url, RSTART + 1)
242 url = substr(url, 1, RSTART - 1)
245 if (match(url, /^[^:\/?#]+:/)) {
246 components["scheme"] = substr(url, 1, RLENGTH - 1) ;
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-graphics/vk-gl-cts/files/
H A Dgenerate-srcuri.py29 url = urllib.parse.urlunparse(parts)
33 return url + f";protocol={protocol};nobranch=1;destsuffix={destination};rev={sha}"
57 url = f"{p.url};subdir={dest};sha256sum={p.checksum}"
58 lines.append(f" {url} \\")
61 url = transform_git(p.httpsUrl, p.revision, dest)
62 lines.append(f" {url} \\")
84 # Switch the URL to use git: and save the original protocol
85 parts = urllib.parse.urlparse(repo.url)
88 url = urllib.parse.urlunparse(parts)
90 sha = resolve_commit(repo.url, repo.commit)
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/classes/
H A Dgitpkgv.bbclass71 for url in ud.values():
72 if url.type == 'git' or url.type == 'gitsm':
73 names.append(url.name)
79 for url in ud.values():
80 if url.type == 'git' or url.type == 'gitsm':
81 if not os.path.exists(url.localpath):
86 vars = { 'repodir' : quote(url.localpath),
87 'rev' : quote(url.revision) }
90 rev_file = os.path.join(url.localpath, "oe-gitpkgv_" + url.revision)
118 format = format.replace(url.name, ver)
/openbmc/openbmc/meta-arm/ci/
H A Dupdate-repos11 def repo_shortname(url): argument
14 url = urlparse(url)
15 return ('{url.netloc}{url.path}'
16 .format(url=url)
/openbmc/qemu/tests/functional/qemu_test/
H A Dasset.py22 self.url = asset.url
27 return "%s: %s" % (self.url, self.msg)
35 def __init__(self, url, hashsum): argument
36 self.url = url
48 return "Asset: url=%s hash=%s cache=%s" % (
49 self.url, self.hash, self.cache_file)
118 self.cache_file, self.url)
125 self.log.info("Downloading %s to %s...", self.url, self.cache_file)
131 with urllib.request.urlopen(self.url) as resp:
144 self.url, fsize, length)
[all …]
/openbmc/bmcweb/static/google/v1/odata/
H A Dindex.json7 "url": "/google/v1/$metadata" string
12 "url": "/google/v1/odata" string
17 "url": "/google/v1/" string
22 "url": "/google/v1/ServiceRoot" string
27 "url": "/google/v1/RootOfTrustCollection" string

12345678910>>...44