Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Jérome Perrin
gitlab-ce
Commits
182bcc97
Commit
182bcc97
authored
Jul 11, 2016
by
Connor Shea
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Initial incomplete draft of the Frontend Development Guidelines.
[ci skip]
parent
73b4eecd
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
62 additions
and
0 deletions
+62
-0
doc/development/README.md
doc/development/README.md
+1
-0
doc/development/frontend.md
doc/development/frontend.md
+61
-0
No files found.
doc/development/README.md
View file @
182bcc97
...
@@ -13,6 +13,7 @@
...
@@ -13,6 +13,7 @@
-
[
SQL Migration Style Guide
](
migration_style_guide.md
)
for creating safe SQL migrations
-
[
SQL Migration Style Guide
](
migration_style_guide.md
)
for creating safe SQL migrations
-
[
Testing standards and style guidelines
](
testing.md
)
-
[
Testing standards and style guidelines
](
testing.md
)
-
[
UI guide
](
ui_guide.md
)
for building GitLab with existing CSS styles and elements
-
[
UI guide
](
ui_guide.md
)
for building GitLab with existing CSS styles and elements
-
[
Frontend guidelines
](
frontend.md
)
-
[
SQL guidelines
](
sql.md
)
for SQL guidelines
-
[
SQL guidelines
](
sql.md
)
for SQL guidelines
## Process
## Process
...
...
doc/development/frontend.md
0 → 100644
View file @
182bcc97
# Frontend Guidelines
This document describes various guidelines to follow to ensure good and
consistent performance of GitLab.
## Performance
### Per-page JavaScript
Per-page JavaScript is JavaScript that is loaded only where necessary.
There are some potential problems to per-page JavaScript as well. For one,
### Minimizing page size
A smaller page size means the page loads faster (especially important on mobile
and poor connections), the page is parsed faster by the browser, and less data is used for
users with capped data plans.
General tips:
-
Don't add fonts that are unnecessary.
-
Prefer font formats with better compression, e.g. WOFF2 is better than WOFF is better than TFF.
-
Compress and minify assets wherever possible (For CSS/JS, Sprockets does this for us).
-
If a piece of functionality can be reasonably done without adding extra libraries, prefer not to use extra libraries.
-
Use per-page JavaScripts as described above to remove libraries that are only loaded on certain pages.
## Accessibility
The
[
Chrome Accessibility Developer Tools
][
chrome-accessibility-developer-tools
]
are useful for testing for potential accessibility problems in GitLab.
Accessibility best-practices and more in-depth information is available on
[
the Audit Rules page
][
audit-rules
]
for the Chrome Accessibility Developer Tools.
## Security
### Content Security Policy
### Subresource Integrity
### Including external resources
External fonts, CSS, JavaScript should never be used with the exception of
Google Analytics - and only when the instance has enabled it. Assets should
always be hosted and served locally from the GitLab instance. Embedded resources
via
`iframes`
should never be used except in certain circumstances such as with
ReCaptcha, which cannot reasonably be used without an iframe.
### Avoiding inline scripts and styles
While inline scripts can be useful, they're also a security concern. If
user-supplied content is unintentionally left un-sanitized, malicious users can
inject scripts into the site.
[
chrome-accessibility-developer-tools
]:
https://github.com/GoogleChrome/accessibility-developer-tools
[
audit-rules
]:
https://github.com/GoogleChrome/accessibility-developer-tools/wiki/Audit-Rules
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