Home
last modified time | relevance | path

Searched refs:isGroupPage (Results 1 – 17 of 17) sorted by relevance

/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/app/assets/javascripts/packages_and_registries/container_registry/explorer/graphql/queries/
H A Dget_container_repositories_details.query.graphql8 $isGroupPage: Boolean!
11 project(fullPath: $fullPath) @skip(if: $isGroupPage) {
27 group(fullPath: $fullPath) @include(if: $isGroupPage) {
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/app/assets/javascripts/packages_and_registries/package_registry/graphql/queries/
H A Dget_packages.query.graphql6 $isGroupPage: Boolean!
16 project(fullPath: $fullPath) @skip(if: $isGroupPage) {
36 group(fullPath: $fullPath) @include(if: $isGroupPage) {
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/app/graphql/queries/container_registry/
H A Dget_container_repositories.query.graphql8 $isGroupPage: Boolean!
11 project(fullPath: $fullPath) @skip(if: $isGroupPage) {
45 group(fullPath: $fullPath) @include(if: $isGroupPage) {
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/app/assets/javascripts/packages_and_registries/infrastructure_registry/list/components/
H A Dinfrastructure_search.vue12 isGroupPage: (state) => state.config.isGroupPage,
17 return sortableFields(this.isGroupPage).filter((h) => h.orderBy !== LIST_KEY_PACKAGE_TYPE);
H A Dpackages_list.vue30 isGroupPage: (state) => state.config.isGroupPage,
96 :is-group="isGroupPage"
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/app/assets/javascripts/packages_and_registries/package_registry/pages/
H A Dlist.vue32 inject: ['emptyListIllustration', 'isGroupPage', 'fullPath'],
58 isGroupPage: this.isGroupPage,
60 sort: this.isGroupPage ? undefined : this.sort,
61 groupSort: this.isGroupPage ? this.sort : undefined,
68 return this.isGroupPage ? GROUP_RESOURCE_TYPE : PROJECT_RESOURCE_TYPE;
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/app/assets/javascripts/packages_and_registries/container_registry/explorer/pages/
H A Dlist.vue149 return this.config.isGroupPage ? 'group' : 'project';
155 fullPath: this.config.isGroupPage ? this.config.groupPath : this.config.projectPath,
156 isGroupPage: this.config.isGroupPage,
169 return Boolean(!this.isLoading && !this.config?.isGroupPage && this.images?.length);
321 :hide-expiration-policy-data="config.isGroupPage"
376 <project-empty-state v-if="!config.isGroupPage" />
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/app/assets/javascripts/packages_and_registries/package_registry/components/list/
H A Dpackage_search.vue26 inject: ['isGroupPage'],
39 return sortableFields(this.isGroupPage);
H A Dpackage_list_row.vue34 inject: ['isGroupPage'],
119 v-if="isGroupPage"
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/app/views/groups/registry/repositories/
H A Dindex.html.haml3 …ner_repositories', { fullPath: @group.full_path, first: 10, name: nil, isGroupPage: true, sort: ni…
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/app/views/projects/registry/repositories/
H A Dindex.html.haml3 …r_repositories', { fullPath: @project.full_path, first: 10, name: nil, isGroupPage: false, sort: n…
/dports/www/moinmoin/moin-1.9.11/MoinMoin/
H A Dwikiutil.py655 def isGroupPage(pagename, cfg): function
2257 if isGroupPage(page, cfg):
H A Duser.py372 return (name == normalized) and not wikiutil.isGroupPage(name, request.cfg)
/dports/converters/wkhtmltopdf/qt-5db36ec/tools/qdoc3/
H A Dhtmlgenerator.cpp2460 bool isGroupPage = false; in generateOverviewList() local
2463 isGroupPage = true; in generateOverviewList()
2484 if (isGroupPage) { in generateOverviewList()
2501 else if (!isGroupPage) { in generateOverviewList()
H A Dditaxmlgenerator.cpp3142 bool isGroupPage = false; in generateOverviewList() local
3145 isGroupPage = true; in generateOverviewList()
3166 if (isGroupPage) { in generateOverviewList()
3183 else if (!isGroupPage) { in generateOverviewList()
/dports/www/moinmoin/moin-1.9.11/MoinMoin/script/migration/
H A Dwikiutil160a.py666 def isGroupPage(request, pagename): function
/dports/www/moinmoin/moin-1.9.11/MoinMoin/_tests/
H A Dtest_wikiutil.py1039 if wikiutil.isGroupPage(test, self.request.cfg):