-
Notifications
You must be signed in to change notification settings - Fork 269
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3206 from Alfresco/development
2.3.0
- Loading branch information
Showing
842 changed files
with
28,610 additions
and
9,584 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Contributor Code of Conduct | ||
|
||
We want to make everyone feel welcome to contribute to ADF. | ||
We promise to respect everyone who posts issues, updates documentation, | ||
submits pull requests, provides feedback in comments, or makes any other contribution to the project. | ||
|
||
We expect all discussion about the project (on GitHub, social media and other channels) to be positive and constructive. | ||
We do not accept personal attacks, trolling, public or private harassment, insults, | ||
or other unprofessional conduct towards anyone. | ||
|
||
We promise to show respect to all contributors regardless of their gender, gender identity, | ||
sexual orientation, disability, age, race, ethnicity, religion, or level of experience. | ||
|
||
We expect all contributors to understand and follow these standards | ||
If any member of the community does not follow the code of conduct, | ||
the maintainers will do whatever they consider appropriate to stop the unacceptable behavior. | ||
This may include removing issues, comments, and PRs or blocking accounts. | ||
Any bans may be temporary or permanent, at the maintainers’ discretion. | ||
|
||
Contact us if you see any behavior that breaks the code of conduct, whether it is directed at you or at anyone else. | ||
We take responsibility for making sure the code of conduct is clear and understandable, | ||
so you should also contact us if you think there is anything that needs to be explained better. | ||
Our contact email address is: [[email protected]](mailto:[email protected]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM nginx | ||
FROM nginx:alpine | ||
|
||
COPY demo-shell/nginx.conf /etc/nginx/nginx.conf | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,4 +54,4 @@ install: | |
# Don't actually build. | ||
build: off | ||
matrix: | ||
fast_finish: false | ||
fast_finish: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
import { MyappPage } from './app.po'; | ||
|
||
describe('myapp App', () => { | ||
let page: MyappPage; | ||
let page: MyappPage; | ||
|
||
beforeEach(() => { | ||
page = new MyappPage(); | ||
}); | ||
beforeEach(() => { | ||
page = new MyappPage(); | ||
}); | ||
|
||
it('should display message saying app works', () => { | ||
page.navigateTo(); | ||
expect(page.getParagraphText()).toEqual('app works!'); | ||
}); | ||
it('should display toolbar', () => { | ||
page.navigateTo(); | ||
expect(page.getToolbar()).toBeDefined(); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
import { browser, element, by } from 'protractor'; | ||
|
||
export class MyappPage { | ||
navigateTo() { | ||
return browser.get('/'); | ||
} | ||
navigateTo() { | ||
return browser.get('/'); | ||
} | ||
|
||
getParagraphText() { | ||
return element(by.css('app-root h1')).getText(); | ||
} | ||
getToolbar() { | ||
return element(by.tagName('adf-toolbar')); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.