BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
468ff959
Commit
468ff959
authored
Apr 19, 2017
by
Filipa Lacerda
Committed by
Phil Hughes
Apr 19, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove special naming of pipelines folder
parent
135fc81c
Show whitespace changes
Inline
Side-by-side
Showing
30 changed files
with
33 additions
and
33 deletions
+33
-33
pipelines_table.js
app/assets/javascripts/commit/pipelines/pipelines_table.js
+5
-5
async_button.vue
app/assets/javascripts/pipelines/components/async_button.vue
+0
-0
empty_state.vue
app/assets/javascripts/pipelines/components/empty_state.vue
+0
-0
error_state.vue
app/assets/javascripts/pipelines/components/error_state.vue
+0
-0
nav_controls.js
app/assets/javascripts/pipelines/components/nav_controls.js
+0
-0
navigation_tabs.js
...ssets/javascripts/pipelines/components/navigation_tabs.js
+0
-0
pipeline_url.js
app/assets/javascripts/pipelines/components/pipeline_url.js
+0
-0
pipelines_actions.js
...ets/javascripts/pipelines/components/pipelines_actions.js
+0
-0
pipelines_artifacts.js
...s/javascripts/pipelines/components/pipelines_artifacts.js
+0
-0
stage.js
app/assets/javascripts/pipelines/components/stage.js
+0
-0
status.js
app/assets/javascripts/pipelines/components/status.js
+0
-0
time_ago.js
app/assets/javascripts/pipelines/components/time_ago.js
+0
-0
event_hub.js
app/assets/javascripts/pipelines/event_hub.js
+0
-0
index.js
app/assets/javascripts/pipelines/index.js
+0
-0
pipelines.js
app/assets/javascripts/pipelines/pipelines.js
+0
-0
pipelines_service.js
...ssets/javascripts/pipelines/services/pipelines_service.js
+0
-0
pipelines_store.js
app/assets/javascripts/pipelines/stores/pipelines_store.js
+0
-0
pipelines_table_row.js
.../javascripts/vue_shared/components/pipelines_table_row.js
+7
-7
index.html.haml
app/views/projects/pipelines/index.html.haml
+1
-1
webpack.config.js
config/webpack.config.js
+9
-9
async_button_spec.js
spec/javascripts/vue_pipelines_index/async_button_spec.js
+1
-1
empty_state_spec.js
spec/javascripts/vue_pipelines_index/empty_state_spec.js
+1
-1
error_state_spec.js
spec/javascripts/vue_pipelines_index/error_state_spec.js
+1
-1
nav_controls_spec.js
spec/javascripts/vue_pipelines_index/nav_controls_spec.js
+1
-1
pipeline_url_spec.js
spec/javascripts/vue_pipelines_index/pipeline_url_spec.js
+1
-1
pipelines_actions_spec.js
...javascripts/vue_pipelines_index/pipelines_actions_spec.js
+1
-1
pipelines_artifacts_spec.js
...vascripts/vue_pipelines_index/pipelines_artifacts_spec.js
+1
-1
pipelines_spec.js
spec/javascripts/vue_pipelines_index/pipelines_spec.js
+2
-2
pipelines_store_spec.js
spec/javascripts/vue_pipelines_index/pipelines_store_spec.js
+1
-1
stage_spec.js
spec/javascripts/vue_pipelines_index/stage_spec.js
+1
-1
No files found.
app/assets/javascripts/commit/pipelines/pipelines_table.js
View file @
468ff959
import
Vue
from
'vue'
;
import
Visibility
from
'visibilityjs'
;
import
PipelinesTableComponent
from
'../../vue_shared/components/pipelines_table'
;
import
PipelinesService
from
'../../
vue_pipelines_index
/services/pipelines_service'
;
import
PipelineStore
from
'../../
vue_pipelines_index
/stores/pipelines_store'
;
import
eventHub
from
'../../
vue_pipelines_index
/event_hub'
;
import
EmptyState
from
'../../
vue_pipelines_index
/components/empty_state.vue'
;
import
ErrorState
from
'../../
vue_pipelines_index
/components/error_state.vue'
;
import
PipelinesService
from
'../../
pipelines
/services/pipelines_service'
;
import
PipelineStore
from
'../../
pipelines
/stores/pipelines_store'
;
import
eventHub
from
'../../
pipelines
/event_hub'
;
import
EmptyState
from
'../../
pipelines
/components/empty_state.vue'
;
import
ErrorState
from
'../../
pipelines
/components/error_state.vue'
;
import
'../../lib/utils/common_utils'
;
import
'../../vue_shared/vue_resource_interceptor'
;
import
Poll
from
'../../lib/utils/poll'
;
...
...
app/assets/javascripts/
vue_pipelines_index
/components/async_button.vue
→
app/assets/javascripts/
pipelines
/components/async_button.vue
View file @
468ff959
File moved
app/assets/javascripts/
vue_pipelines_index
/components/empty_state.vue
→
app/assets/javascripts/
pipelines
/components/empty_state.vue
View file @
468ff959
File moved
app/assets/javascripts/
vue_pipelines_index
/components/error_state.vue
→
app/assets/javascripts/
pipelines
/components/error_state.vue
View file @
468ff959
File moved
app/assets/javascripts/
vue_pipelines_index
/components/nav_controls.js
→
app/assets/javascripts/
pipelines
/components/nav_controls.js
View file @
468ff959
File moved
app/assets/javascripts/
vue_pipelines_index
/components/navigation_tabs.js
→
app/assets/javascripts/
pipelines
/components/navigation_tabs.js
View file @
468ff959
File moved
app/assets/javascripts/
vue_pipelines_index
/components/pipeline_url.js
→
app/assets/javascripts/
pipelines
/components/pipeline_url.js
View file @
468ff959
File moved
app/assets/javascripts/
vue_pipelines_index
/components/pipelines_actions.js
→
app/assets/javascripts/
pipelines
/components/pipelines_actions.js
View file @
468ff959
File moved
app/assets/javascripts/
vue_pipelines_index
/components/pipelines_artifacts.js
→
app/assets/javascripts/
pipelines
/components/pipelines_artifacts.js
View file @
468ff959
File moved
app/assets/javascripts/
vue_pipelines_index
/components/stage.js
→
app/assets/javascripts/
pipelines
/components/stage.js
View file @
468ff959
File moved
app/assets/javascripts/
vue_pipelines_index
/components/status.js
→
app/assets/javascripts/
pipelines
/components/status.js
View file @
468ff959
File moved
app/assets/javascripts/
vue_pipelines_index
/components/time_ago.js
→
app/assets/javascripts/
pipelines
/components/time_ago.js
View file @
468ff959
File moved
app/assets/javascripts/
vue_pipelines_index
/event_hub.js
→
app/assets/javascripts/
pipelines
/event_hub.js
View file @
468ff959
File moved
app/assets/javascripts/
vue_pipelines_index
/index.js
→
app/assets/javascripts/
pipelines
/index.js
View file @
468ff959
File moved
app/assets/javascripts/
vue_pipelines_index
/pipelines.js
→
app/assets/javascripts/
pipelines
/pipelines.js
View file @
468ff959
File moved
app/assets/javascripts/
vue_pipelines_index
/services/pipelines_service.js
→
app/assets/javascripts/
pipelines
/services/pipelines_service.js
View file @
468ff959
File moved
app/assets/javascripts/
vue_pipelines_index
/stores/pipelines_store.js
→
app/assets/javascripts/
pipelines
/stores/pipelines_store.js
View file @
468ff959
File moved
app/assets/javascripts/vue_shared/components/pipelines_table_row.js
View file @
468ff959
/* eslint-disable no-param-reassign */
import
AsyncButtonComponent
from
'../../
vue_pipelines_index
/components/async_button.vue'
;
import
PipelinesActionsComponent
from
'../../
vue_pipelines_index
/components/pipelines_actions'
;
import
PipelinesArtifactsComponent
from
'../../
vue_pipelines_index
/components/pipelines_artifacts'
;
import
PipelinesStatusComponent
from
'../../
vue_pipelines_index
/components/status'
;
import
PipelinesStageComponent
from
'../../
vue_pipelines_index
/components/stage'
;
import
PipelinesUrlComponent
from
'../../
vue_pipelines_index
/components/pipeline_url'
;
import
PipelinesTimeagoComponent
from
'../../
vue_pipelines_index
/components/time_ago'
;
import
AsyncButtonComponent
from
'../../
pipelines
/components/async_button.vue'
;
import
PipelinesActionsComponent
from
'../../
pipelines
/components/pipelines_actions'
;
import
PipelinesArtifactsComponent
from
'../../
pipelines
/components/pipelines_artifacts'
;
import
PipelinesStatusComponent
from
'../../
pipelines
/components/status'
;
import
PipelinesStageComponent
from
'../../
pipelines
/components/stage'
;
import
PipelinesUrlComponent
from
'../../
pipelines
/components/pipeline_url'
;
import
PipelinesTimeagoComponent
from
'../../
pipelines
/components/time_ago'
;
import
CommitComponent
from
'./commit'
;
/**
...
...
app/views/projects/pipelines/index.html.haml
View file @
468ff959
...
...
@@ -17,4 +17,4 @@
"ci-lint-path"
=>
ci_lint_path
}
}
=
page_specific_javascript_bundle_tag
(
'common_vue'
)
=
page_specific_javascript_bundle_tag
(
'
vue_
pipelines'
)
=
page_specific_javascript_bundle_tag
(
'pipelines'
)
config/webpack.config.js
View file @
468ff959
...
...
@@ -19,12 +19,11 @@ var WEBPACK_REPORT = process.env.WEBPACK_REPORT;
var
config
=
{
context
:
path
.
join
(
ROOT_PATH
,
'app/assets/javascripts'
),
entry
:
{
blob
:
'./blob_edit/blob_bundle.js'
,
boards
:
'./boards/boards_bundle.js'
,
common
:
'./commons/index.js'
,
common_vue
:
[
'vue'
,
'./vue_shared/common_vue.js'
],
common_d3
:
[
'd3'
],
main
:
'./main.js'
,
blob
:
'./blob_edit/blob_bundle.js'
,
boards
:
'./boards/boards_bundle.js'
,
cycle_analytics
:
'./cycle_analytics/cycle_analytics_bundle.js'
,
commit_pipelines
:
'./commit/pipelines/pipelines_bundle.js'
,
diff_notes
:
'./diff_notes/diff_notes_bundle.js'
,
...
...
@@ -32,26 +31,27 @@ var config = {
environments_folder
:
'./environments/folder/environments_folder_bundle.js'
,
filtered_search
:
'./filtered_search/filtered_search_bundle.js'
,
graphs
:
'./graphs/graphs_bundle.js'
,
group
:
'./group.js'
,
groups_list
:
'./groups_list.js'
,
issuable
:
'./issuable/issuable_bundle.js'
,
issue_show
:
'./issue_show/index.js'
,
main
:
'./main.js'
,
merge_conflicts
:
'./merge_conflicts/merge_conflicts_bundle.js'
,
merge_request_widget
:
'./merge_request_widget/ci_bundle.js'
,
monitoring
:
'./monitoring/monitoring_bundle.js'
,
network
:
'./network/network_bundle.js'
,
notebook_viewer
:
'./blob/notebook_viewer.js'
,
sketch_viewer
:
'./blob/sketch_viewer.js'
,
pdf_viewer
:
'./blob/pdf_viewer.js'
,
pipelines
:
'./pipelines/index.js'
,
profile
:
'./profile/profile_bundle.js'
,
protected_branches
:
'./protected_branches/protected_branches_bundle.js'
,
protected_tags
:
'./protected_tags'
,
snippet
:
'./snippet/snippet_bundle.js'
,
sketch_viewer
:
'./blob/sketch_viewer.js'
,
stl_viewer
:
'./blob/stl_viewer.js'
,
terminal
:
'./terminal/terminal_bundle.js'
,
u2f
:
[
'vendor/u2f'
],
users
:
'./users/users_bundle.js'
,
vue_pipelines
:
'./vue_pipelines_index/index.js'
,
issue_show
:
'./issue_show/index.js'
,
group
:
'./group.js'
,
},
output
:
{
...
...
@@ -121,11 +121,11 @@ var config = {
'environments'
,
'environments_folder'
,
'issuable'
,
'issue_show'
,
'merge_conflicts'
,
'notebook_viewer'
,
'pdf_viewer'
,
'vue_pipelines'
,
'issue_show'
,
'pipelines'
,
],
minChunks
:
function
(
module
,
count
)
{
return
module
.
resource
&&
(
/vue_shared/
).
test
(
module
.
resource
);
...
...
spec/javascripts/vue_pipelines_index/async_button_spec.js
View file @
468ff959
import
Vue
from
'vue'
;
import
asyncButtonComp
from
'~/
vue_pipelines_index
/components/async_button.vue'
;
import
asyncButtonComp
from
'~/
pipelines
/components/async_button.vue'
;
describe
(
'Pipelines Async Button'
,
()
=>
{
let
component
;
...
...
spec/javascripts/vue_pipelines_index/empty_state_spec.js
View file @
468ff959
import
Vue
from
'vue'
;
import
emptyStateComp
from
'~/
vue_pipelines_index
/components/empty_state.vue'
;
import
emptyStateComp
from
'~/
pipelines
/components/empty_state.vue'
;
describe
(
'Pipelines Empty State'
,
()
=>
{
let
component
;
...
...
spec/javascripts/vue_pipelines_index/error_state_spec.js
View file @
468ff959
import
Vue
from
'vue'
;
import
errorStateComp
from
'~/
vue_pipelines_index
/components/error_state.vue'
;
import
errorStateComp
from
'~/
pipelines
/components/error_state.vue'
;
describe
(
'Pipelines Error State'
,
()
=>
{
let
component
;
...
...
spec/javascripts/vue_pipelines_index/nav_controls_spec.js
View file @
468ff959
import
Vue
from
'vue'
;
import
navControlsComp
from
'~/
vue_pipelines_index
/components/nav_controls'
;
import
navControlsComp
from
'~/
pipelines
/components/nav_controls'
;
describe
(
'Pipelines Nav Controls'
,
()
=>
{
let
NavControlsComponent
;
...
...
spec/javascripts/vue_pipelines_index/pipeline_url_spec.js
View file @
468ff959
import
Vue
from
'vue'
;
import
pipelineUrlComp
from
'~/
vue_pipelines_index
/components/pipeline_url'
;
import
pipelineUrlComp
from
'~/
pipelines
/components/pipeline_url'
;
describe
(
'Pipeline Url Component'
,
()
=>
{
let
PipelineUrlComponent
;
...
...
spec/javascripts/vue_pipelines_index/pipelines_actions_spec.js
View file @
468ff959
import
Vue
from
'vue'
;
import
pipelinesActionsComp
from
'~/
vue_pipelines_index
/components/pipelines_actions'
;
import
pipelinesActionsComp
from
'~/
pipelines
/components/pipelines_actions'
;
describe
(
'Pipelines Actions dropdown'
,
()
=>
{
let
component
;
...
...
spec/javascripts/vue_pipelines_index/pipelines_artifacts_spec.js
View file @
468ff959
import
Vue
from
'vue'
;
import
artifactsComp
from
'~/
vue_pipelines_index
/components/pipelines_artifacts'
;
import
artifactsComp
from
'~/
pipelines
/components/pipelines_artifacts'
;
describe
(
'Pipelines Artifacts dropdown'
,
()
=>
{
let
component
;
...
...
spec/javascripts/vue_pipelines_index/pipelines_spec.js
View file @
468ff959
import
Vue
from
'vue'
;
import
pipelinesComp
from
'~/
vue_pipelines_index
/pipelines'
;
import
Store
from
'~/
vue_pipelines_index
/stores/pipelines_store'
;
import
pipelinesComp
from
'~/
pipelines
/pipelines'
;
import
Store
from
'~/
pipelines
/stores/pipelines_store'
;
import
pipelinesData
from
'./mock_data'
;
describe
(
'Pipelines'
,
()
=>
{
...
...
spec/javascripts/vue_pipelines_index/pipelines_store_spec.js
View file @
468ff959
import
PipelineStore
from
'~/
vue_pipelines_index
/stores/pipelines_store'
;
import
PipelineStore
from
'~/
pipelines
/stores/pipelines_store'
;
describe
(
'Pipelines Store'
,
()
=>
{
let
store
;
...
...
spec/javascripts/vue_pipelines_index/stage_spec.js
View file @
468ff959
import
Vue
from
'vue'
;
import
{
SUCCESS_SVG
}
from
'~/ci_status_icons'
;
import
Stage
from
'~/
vue_pipelines_index
/components/stage'
;
import
Stage
from
'~/
pipelines
/components/stage'
;
function
minify
(
string
)
{
return
string
.
replace
(
/
\s
/g
,
''
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment