Compare commits
No commits in common. "master" and "3-1-stable" have entirely different histories.
master
...
3-1-stable
7
.gitignore
vendored
|
@ -2,7 +2,7 @@
|
||||||
.rbx/
|
.rbx/
|
||||||
db/*.sqlite3
|
db/*.sqlite3
|
||||||
db/*.sqlite3-journal
|
db/*.sqlite3-journal
|
||||||
log/*.log*
|
log/*.log
|
||||||
tmp/
|
tmp/
|
||||||
.sass-cache/
|
.sass-cache/
|
||||||
coverage/*
|
coverage/*
|
||||||
|
@ -19,12 +19,7 @@ config/gitlab.yml
|
||||||
config/database.yml
|
config/database.yml
|
||||||
config/initializers/omniauth.rb
|
config/initializers/omniauth.rb
|
||||||
config/unicorn.rb
|
config/unicorn.rb
|
||||||
config/resque.yml
|
|
||||||
config/aws.yml
|
|
||||||
db/data.yml
|
db/data.yml
|
||||||
.idea
|
.idea
|
||||||
.DS_Store
|
.DS_Store
|
||||||
.chef
|
.chef
|
||||||
vendor/bundle/*
|
|
||||||
rails_best_practices_output.html
|
|
||||||
doc/code/*
|
|
||||||
|
|
2
.rspec
|
@ -1 +1 @@
|
||||||
--colour --drb
|
--colour
|
||||||
|
|
|
@ -1,4 +0,0 @@
|
||||||
# .simplecov
|
|
||||||
SimpleCov.start 'rails' do
|
|
||||||
merge_timeout 3600
|
|
||||||
end
|
|
13
.travis.yml
|
@ -1,21 +1,26 @@
|
||||||
language: ruby
|
|
||||||
env:
|
env:
|
||||||
- DB=mysql TRAVIS=true
|
- DB=postgresql
|
||||||
|
- DB=mysql
|
||||||
before_install:
|
before_install:
|
||||||
- sudo apt-get install libicu-dev -y
|
- sudo apt-get install libicu-dev -y
|
||||||
|
- wget -P /tmp http://phantomjs.googlecode.com/files/phantomjs-1.7.0-linux-i686.tar.bz2
|
||||||
|
- tar -xf /tmp/phantomjs-1.7.0-linux-i686.tar.bz2 -C /tmp/
|
||||||
|
- sudo rm -rf /usr/local/phantomjs
|
||||||
|
- sudo mv /tmp/phantomjs-1.7.0-linux-i686 /usr/local/phantomjs
|
||||||
- gem install charlock_holmes -v="0.6.9"
|
- gem install charlock_holmes -v="0.6.9"
|
||||||
branches:
|
branches:
|
||||||
only:
|
only:
|
||||||
- 'master'
|
- 'master'
|
||||||
rvm:
|
rvm:
|
||||||
- 1.9.3-p392
|
- 1.9.3
|
||||||
services:
|
services:
|
||||||
- mysql
|
- mysql
|
||||||
- postgresql
|
- postgresql
|
||||||
before_script:
|
before_script:
|
||||||
- "cp config/database.yml.$DB config/database.yml"
|
- "cp config/database.yml.$DB config/database.yml"
|
||||||
- "cp config/gitlab.yml.example config/gitlab.yml"
|
- "cp config/gitlab.yml.example config/gitlab.yml"
|
||||||
- "bundle exec rake db:setup RAILS_ENV=test"
|
- "bundle exec rake db:create RAILS_ENV=test"
|
||||||
|
- "bundle exec rake db:migrate RAILS_ENV=test"
|
||||||
- "bundle exec rake db:seed_fu RAILS_ENV=test"
|
- "bundle exec rake db:seed_fu RAILS_ENV=test"
|
||||||
- "sh -e /etc/init.d/xvfb start"
|
- "sh -e /etc/init.d/xvfb start"
|
||||||
script: "bundle exec rake travis --trace"
|
script: "bundle exec rake travis --trace"
|
||||||
|
|
108
CHANGELOG
|
@ -1,111 +1,3 @@
|
||||||
v 5.1.0
|
|
||||||
- You can login with email or username now
|
|
||||||
- Corrected project transfer rollback when repository cannot be moved
|
|
||||||
- Move both repo and wiki when project transfer requrested
|
|
||||||
- Admin area: project editing was removed from admin namespace
|
|
||||||
- Access: admin user has now access to any project.
|
|
||||||
|
|
||||||
v 5.0.0
|
|
||||||
- Replaced gitolite with gitlab-shell
|
|
||||||
- Removed gitolite-related libraries
|
|
||||||
- State machine added
|
|
||||||
- Setup gitlab as git user
|
|
||||||
- Internal API
|
|
||||||
- Show team tab for empty projects
|
|
||||||
- Import repository feature
|
|
||||||
- Updated rails
|
|
||||||
- Use lambda for scopes
|
|
||||||
- Redesign admin area -> users
|
|
||||||
- Redesign admin area -> user
|
|
||||||
- Secure link to file attachments
|
|
||||||
- Add validations for Group and Team names
|
|
||||||
- Restyle team page for project
|
|
||||||
- Update capybara, rspec-rails, poltergeist to recent versions
|
|
||||||
- Wiki on git using Gollum
|
|
||||||
- Added Solarized Dark theme for code review
|
|
||||||
- Dont show user emails in autocomplete lists, profile pages
|
|
||||||
- Added settings tab for group, team, project
|
|
||||||
- Replace user popup with icons in header
|
|
||||||
- Handle project moving with gitlab-shell
|
|
||||||
- Added select2-rails for selectboxes with ajax data load
|
|
||||||
- Fixed search field on projects page
|
|
||||||
- Added teams to search autocomplete
|
|
||||||
- Move groups and teams on dashboard sidebar to sub-tabs
|
|
||||||
- API: improved return codes and docs. (Felix Gilcher, Sebastian Ziebell)
|
|
||||||
- Redesign wall to be more like chat
|
|
||||||
- Snippets, Wall features are disabled by default for new projects
|
|
||||||
|
|
||||||
v 4.2.0
|
|
||||||
- Teams
|
|
||||||
- User show page. Via /u/username
|
|
||||||
- Show help contents on pages for better navigation
|
|
||||||
- Async gitolite calls
|
|
||||||
- added satellites logs
|
|
||||||
- can_create_group, can_create_team booleans for User
|
|
||||||
- Process web hooks async
|
|
||||||
- GFM: Fix images escaped inside links
|
|
||||||
- Network graph improved
|
|
||||||
- Switchable branches for network graph
|
|
||||||
- API: Groups
|
|
||||||
- Fixed project download
|
|
||||||
|
|
||||||
v 4.1.0
|
|
||||||
- Optional Sign-Up
|
|
||||||
- Discussions
|
|
||||||
- Satellites outside of tmp
|
|
||||||
- Line numbers for blame
|
|
||||||
- Project public mode
|
|
||||||
- Public area with unauthorized access
|
|
||||||
- Load dashboard events with ajax
|
|
||||||
- remember dashboard filter in cookies
|
|
||||||
- replace resque with sidekiq
|
|
||||||
- fix routing issues
|
|
||||||
- cleanup rake tasks
|
|
||||||
- fix backup/restore
|
|
||||||
- scss cleanup
|
|
||||||
- show preview for note images
|
|
||||||
- improved network-graph
|
|
||||||
- get rid of app/roles/
|
|
||||||
- added new classes Team, Repository
|
|
||||||
- Reduce amount of gitolite calls
|
|
||||||
- Ability to add user in all group projects
|
|
||||||
- remove deprecated configs
|
|
||||||
- replaced Korolev font with open font
|
|
||||||
- restyled admin/dashboard page
|
|
||||||
- restyled admin/projects page
|
|
||||||
|
|
||||||
v 4.0.0
|
|
||||||
- Remove project code and path from API. Use id instead
|
|
||||||
- Return valid clonable url to repo for web hook
|
|
||||||
- Fixed backup issue
|
|
||||||
- Reorganized settings
|
|
||||||
- Fixed commits compare
|
|
||||||
- Refactored scss
|
|
||||||
- Improve status checks
|
|
||||||
- Validates presence of User#name
|
|
||||||
- Fixed postgres support
|
|
||||||
- Removed sqlite support
|
|
||||||
- Modified post-receive hook
|
|
||||||
- Milestones can be closed now
|
|
||||||
- Show comment events on dashboard
|
|
||||||
- Quick add team members via group#people page
|
|
||||||
- [API] expose created date for hooks and SSH keys
|
|
||||||
- [API] list, create issue notes
|
|
||||||
- [API] list, create snippet notes
|
|
||||||
- [API] list, create wall notes
|
|
||||||
- Remove project code - use path instead
|
|
||||||
- added username field to user
|
|
||||||
- rake task to fill usernames based on emails create namespaces for users
|
|
||||||
- STI Group < Namespace
|
|
||||||
- Project has namespace_id
|
|
||||||
- Projects with namespaces also namespaced in gitolite and stored in subdir
|
|
||||||
- Moving project to group will move it under group namespace
|
|
||||||
- Ability to move project from namespaces to another
|
|
||||||
- Fixes commit patches getting escaped (see #2036)
|
|
||||||
- Support diff and patch generation for commits and merge request
|
|
||||||
- MergeReqest doesn't generate a temporary file for the patch any more
|
|
||||||
- Update the UI to allow downloading Patch or Diff
|
|
||||||
|
|
||||||
v 3.1.0
|
v 3.1.0
|
||||||
- Updated gems
|
- Updated gems
|
||||||
- Services: Gitlab CI integration
|
- Services: Gitlab CI integration
|
||||||
|
|
|
@ -1,53 +1,26 @@
|
||||||
# Contribute to GitLab
|
## Contribute to GitLab
|
||||||
|
|
||||||
This guide details how to use pull requests and the issues to improve GitLab.
|
If you want to contribute to GitLab, follow this process:
|
||||||
|
|
||||||
## Closing policy for pull requests and issues
|
1. Fork the project
|
||||||
|
2. Create a feature branch
|
||||||
|
3. Code
|
||||||
|
4. Create a pull request
|
||||||
|
|
||||||
Pull requests and issues not in line with the guidelines listed in this document will be closed with just a link to this paragraph. GitLab is a popular open source project and the capacity to deal with issues and pull requests is limited. To get support for your problems please use other channels as detailed in [the getting help section of the readme](https://github.com/gitlabhq/gitlabhq#getting-help). Professional [support subscriptions](http://www.gitlab.com/subscription/) and [consulting services](http://www.gitlab.com/consultancy/) are available from [GitLab.com](http://www.gitlab.com/).
|
We will only accept pull requests if:
|
||||||
|
|
||||||
## Pull requests
|
* Your code has proper tests and all tests pass
|
||||||
|
* Your code can be merged w/o problems
|
||||||
|
* It won't break existing functionality
|
||||||
|
* It's quality code
|
||||||
|
* We like it :)
|
||||||
|
|
||||||
We welcome pull request with improvements to GitLab code and/or documentation. The issues we would really like a pull request for are listed with the [status 'accepting merge/pull requests' on our feedback forum](http://feedback.gitlab.com/forums/176466-general/status/796455) but other improvements are also welcome.
|
For examples of feedback on pull requests please look at the [closed pull requests](https://github.com/gitlabhq/gitlabhq/pulls?direction=desc&page=1&sort=created&state=closed).
|
||||||
|
|
||||||
### Pull request guidelines
|
## Installation
|
||||||
|
|
||||||
If you can please submit a pull request with the fix including tests. The workflow to make a pull request is as follows:
|
Install the Gitlab development in a virtual machine with the [Gitlab Vagrant virtual machine](https://github.com/gitlabhq/gitlab-vagrant-vm). Installing it in a virtual machine makes it much easier to set up all the dependencies for integration testing.
|
||||||
|
|
||||||
1. Fork the project on GitHub
|
## Running tests
|
||||||
1. Create a feature branch
|
|
||||||
1. Write tests and code
|
|
||||||
1. If you have multiple commits please combine them into one commit by [squashing them](http://git-scm.com/book/en/Git-Tools-Rewriting-History#Squashing-Commits)
|
|
||||||
1. Push the commit to your fork
|
|
||||||
1. Submit a pull request
|
|
||||||
|
|
||||||
We will accept pull requests if:
|
For more information on running the tests please read the [development tips](https://github.com/gitlabhq/gitlabhq/blob/master/doc/development.md)
|
||||||
|
|
||||||
* The code has proper tests and all tests pass
|
|
||||||
* It can be merged without problems (if not please use: git rebase master)
|
|
||||||
* It doesn't break any existing functionality
|
|
||||||
* It's quality code that conforms to the [Rails style guide](https://github.com/bbatsov/rails-style-guide) and best practices
|
|
||||||
* The description includes a motive for your change and the method you used to achieve it
|
|
||||||
* It keeps the GitLab code base clean and well structured
|
|
||||||
* We think other users will need the same functionality
|
|
||||||
* If it makes changes to the UI the pull request should include screenshots
|
|
||||||
|
|
||||||
For examples of feedback on pull requests please look at already [closed pull requests](https://github.com/gitlabhq/gitlabhq/pulls?direction=desc&page=1&sort=created&state=closed).
|
|
||||||
|
|
||||||
## Issue tracker
|
|
||||||
|
|
||||||
The [issue tracker](https://github.com/gitlabhq/gitlabhq/issues) is only for obvious bugs or misbehavior in the master branch of GitLab. When submitting an issue please conform to the issue submission guidelines listed below.
|
|
||||||
|
|
||||||
Please send a pull request with a tested solution or a pull request with a failing test instead of opening an issue if you can. If you're unsure where to post, post to the [Support Forum](https://groups.google.com/forum/#!forum/gitlabhq) first. There are a lot of helpful GitLab users there who may be able to help you quickly. If your particular issue turns out to be a bug, it will find its way from there.
|
|
||||||
|
|
||||||
### Issue tracker guidelines
|
|
||||||
|
|
||||||
**Search** for similar entries before submitting your own, there's a good chance somebody else had the same issue or idea. Show your support with `:+1:` and/or join the discussion.
|
|
||||||
|
|
||||||
* Summarize your issue in one sentence (what goes wrong, what did you expect to happen)
|
|
||||||
* Describe your issue in detail
|
|
||||||
* How can we reproduce the issue on the [GitLab Vagrant virtual machine](https://github.com/gitlabhq/gitlab-vagrant-vm) (start with: vagrant destroy && vagrant up && vagrant ssh)
|
|
||||||
* Add the last commit sha1 of the GitLab version you used to replicate the issue
|
|
||||||
* Add logs or screen shots when possible
|
|
||||||
* Link to the line of code that might be responsible for the problem
|
|
||||||
* Describe your setup (use relevant parts from `sudo -u gitlab -H bundle exec rake gitlab:env:info`)
|
|
||||||
|
|
|
@ -1,4 +0,0 @@
|
||||||
load 'deploy'
|
|
||||||
load 'deploy/assets'
|
|
||||||
require 'bundler/capistrano'
|
|
||||||
load 'config/deploy'
|
|
91
Gemfile
|
@ -1,4 +1,4 @@
|
||||||
source "https://rubygems.org"
|
source "http://rubygems.org"
|
||||||
|
|
||||||
def darwin_only(require_as)
|
def darwin_only(require_as)
|
||||||
RUBY_PLATFORM.include?('darwin') && require_as
|
RUBY_PLATFORM.include?('darwin') && require_as
|
||||||
|
@ -8,58 +8,51 @@ def linux_only(require_as)
|
||||||
RUBY_PLATFORM.include?('linux') && require_as
|
RUBY_PLATFORM.include?('linux') && require_as
|
||||||
end
|
end
|
||||||
|
|
||||||
gem "rails", "3.2.13"
|
gem "rails", "3.2.9"
|
||||||
|
|
||||||
# Supported DBs
|
# Supported DBs
|
||||||
|
gem "sqlite3", group: :sqlite
|
||||||
gem "mysql2", group: :mysql
|
gem "mysql2", group: :mysql
|
||||||
gem "pg", group: :postgres
|
gem "pg", group: :postgres
|
||||||
|
|
||||||
# Auth
|
# Auth
|
||||||
gem "devise"
|
gem "devise", "~> 2.1.0"
|
||||||
gem 'omniauth', "~> 1.1.3"
|
gem 'omniauth', "~> 1.1.1"
|
||||||
gem 'omniauth-google-oauth2'
|
gem 'omniauth-google-oauth2'
|
||||||
gem 'omniauth-twitter'
|
gem 'omniauth-twitter'
|
||||||
gem 'omniauth-github'
|
gem 'omniauth-github'
|
||||||
|
|
||||||
# Extracting information from a git repository
|
# GITLAB patched libs
|
||||||
# Since gollum requires grit we cannot use gitlab-grit gem name any more. Use grit instead
|
gem "grit", git: "https://github.com/gitlabhq/grit.git", ref: '7f35cb98ff17d534a07e3ce6ec3d580f67402837'
|
||||||
gem "grit", '~> 2.5.0', git: 'https://github.com/gitlabhq/grit.git', ref: '42297cdcee16284d2e4eff23d41377f52fc28b9d'
|
gem "omniauth-ldap", git: "https://github.com/gitlabhq/omniauth-ldap.git", ref: 'f038dd852d7bd473a557e385d5d7c2fd5dc1dc2e'
|
||||||
gem 'grit_ext', '~> 0.8.1'
|
gem 'yaml_db', git: "https://github.com/gitlabhq/yaml_db.git", ref: '98e9a5dca43e3fedd3268c76a73af40d1bdf1dfd'
|
||||||
|
gem 'grack', git: "https://github.com/gitlabhq/grack.git", ref: 'ba46f3b0845c6a09d488ae6abdce6ede37e227e8'
|
||||||
|
gem 'grit_ext', git: "https://github.com/gitlabhq/grit_ext.git", ref: '212fd40bea61f3c6a167223768e7295dc32bbc10'
|
||||||
|
|
||||||
# Ruby/Rack Git Smart-HTTP Server Handler
|
# Gitolite client (for work with gitolite-admin repo)
|
||||||
gem 'gitlab-grack', '~> 1.0.0', require: 'grack'
|
gem "gitolite", '1.1.0'
|
||||||
|
|
||||||
# LDAP Auth
|
|
||||||
gem 'gitlab_omniauth-ldap', '1.0.2', require: "omniauth-ldap"
|
|
||||||
|
|
||||||
# Dump db to yml file. Mostly used to migrate from sqlite to mysql
|
|
||||||
gem 'gitlab_yaml_db', '1.0.0', require: "yaml_db"
|
|
||||||
|
|
||||||
# Syntax highlighter
|
# Syntax highlighter
|
||||||
gem "gitlab-pygments.rb", '~> 0.3.2', require: 'pygments.rb'
|
gem "pygments.rb", git: "https://github.com/gitlabhq/pygments.rb.git", ref: '4db80c599067e2d5f23c5c243bf85b8ca0368ad4'
|
||||||
|
|
||||||
# Language detection
|
# Language detection
|
||||||
gem "github-linguist", "~> 2.3.4" , require: "linguist"
|
gem "github-linguist", "~> 2.3.4" , require: "linguist"
|
||||||
|
|
||||||
# API
|
# API
|
||||||
gem "grape", "~> 0.3.1"
|
gem "grape", "~> 0.2.1"
|
||||||
gem "grape-entity", "~> 0.2.0"
|
|
||||||
|
|
||||||
# Format dates and times
|
# Format dates and times
|
||||||
# based on human-friendly examples
|
# based on human-friendly examples
|
||||||
gem "stamp"
|
gem "stamp"
|
||||||
|
|
||||||
# Enumeration fields
|
|
||||||
gem 'enumerize'
|
|
||||||
|
|
||||||
# Pagination
|
# Pagination
|
||||||
gem "kaminari", "~> 0.14.1"
|
gem "kaminari", "~> 0.14.1"
|
||||||
|
|
||||||
# HAML
|
# HAML
|
||||||
gem "haml-rails"
|
gem "haml-rails", "~> 0.3.5"
|
||||||
|
|
||||||
# Files attachments
|
# Files attachments
|
||||||
gem "carrierwave"
|
gem "carrierwave", "~> 0.7.1"
|
||||||
|
|
||||||
# Authorization
|
# Authorization
|
||||||
gem "six"
|
gem "six"
|
||||||
|
@ -75,21 +68,18 @@ gem "redcarpet", "~> 2.2.2"
|
||||||
gem "github-markup", "~> 0.7.4", require: 'github/markup'
|
gem "github-markup", "~> 0.7.4", require: 'github/markup'
|
||||||
|
|
||||||
# Servers
|
# Servers
|
||||||
gem "unicorn"
|
gem "thin", '~> 1.5.0'
|
||||||
|
gem "unicorn", "~> 4.4.0"
|
||||||
# State machine
|
|
||||||
gem "state_machine"
|
|
||||||
|
|
||||||
# Issue tags
|
# Issue tags
|
||||||
gem "acts-as-taggable-on", "2.3.3"
|
gem "acts-as-taggable-on", "2.3.3"
|
||||||
|
|
||||||
# Decorators
|
# Decorators
|
||||||
gem "draper"
|
gem "draper", "~> 0.18.0"
|
||||||
|
|
||||||
# Background jobs
|
# Background jobs
|
||||||
gem 'slim'
|
gem "resque", "~> 1.23.0"
|
||||||
gem 'sinatra', require: nil
|
gem 'resque_mailer'
|
||||||
gem 'sidekiq'
|
|
||||||
|
|
||||||
# HTTP requests
|
# HTTP requests
|
||||||
gem "httparty"
|
gem "httparty"
|
||||||
|
@ -100,20 +90,10 @@ gem "colored"
|
||||||
# GitLab settings
|
# GitLab settings
|
||||||
gem 'settingslogic'
|
gem 'settingslogic'
|
||||||
|
|
||||||
# Wiki
|
|
||||||
# - Use latest master to resolve Gem dependency with Pygemnts
|
|
||||||
# github-linquist needs pygments 0.4.2 but Gollum 2.4.11
|
|
||||||
# requires pygments 0.3.2. The latest master Gollum has been updated
|
|
||||||
# to use pygments 0.4.2. Change this after next Gollum release.
|
|
||||||
gem "gollum", "~> 2.4.0", git: "https://github.com/gollum/gollum.git", ref: "5dcd3c8c8f"
|
|
||||||
|
|
||||||
# Misc
|
# Misc
|
||||||
gem "foreman"
|
gem "foreman"
|
||||||
gem "git"
|
gem "git"
|
||||||
|
|
||||||
# Cache
|
|
||||||
gem "redis-rails"
|
|
||||||
|
|
||||||
group :assets do
|
group :assets do
|
||||||
gem "sass-rails", "~> 3.2.5"
|
gem "sass-rails", "~> 3.2.5"
|
||||||
gem "coffee-rails", "~> 3.2.2"
|
gem "coffee-rails", "~> 3.2.2"
|
||||||
|
@ -121,16 +101,14 @@ group :assets do
|
||||||
gem "therubyracer"
|
gem "therubyracer"
|
||||||
|
|
||||||
gem 'chosen-rails', "0.9.8"
|
gem 'chosen-rails', "0.9.8"
|
||||||
gem 'select2-rails'
|
gem 'jquery-atwho-rails', "0.1.6"
|
||||||
gem 'jquery-atwho-rails', "0.1.7"
|
|
||||||
gem "jquery-rails", "2.1.3"
|
gem "jquery-rails", "2.1.3"
|
||||||
gem "jquery-ui-rails", "2.0.2"
|
gem "jquery-ui-rails", "2.0.2"
|
||||||
gem "modernizr", "2.6.2"
|
gem "modernizr", "2.6.2"
|
||||||
gem "raphael-rails", git: "https://github.com/gitlabhq/raphael-rails.git"
|
gem "raphael-rails", "2.1.0"
|
||||||
gem 'bootstrap-sass', "2.2.1.1"
|
gem 'bootstrap-sass', "2.2.1.1"
|
||||||
gem "font-awesome-sass-rails", "~> 3.0.0"
|
gem "font-awesome-sass-rails", "~> 2.0.0"
|
||||||
gem "gemoji", "~> 1.2.1", require: 'emoji/railtie'
|
gem "gemoji", "~> 1.2.1", require: 'emoji/railtie'
|
||||||
gem "gon"
|
|
||||||
end
|
end
|
||||||
|
|
||||||
group :development do
|
group :development do
|
||||||
|
@ -138,21 +116,9 @@ group :development do
|
||||||
gem "letter_opener"
|
gem "letter_opener"
|
||||||
gem 'quiet_assets', '~> 1.0.1'
|
gem 'quiet_assets', '~> 1.0.1'
|
||||||
gem 'rack-mini-profiler'
|
gem 'rack-mini-profiler'
|
||||||
# Better errors handler
|
|
||||||
gem 'better_errors'
|
|
||||||
gem 'binding_of_caller'
|
|
||||||
|
|
||||||
gem 'rails_best_practices'
|
|
||||||
|
|
||||||
# Docs generator
|
|
||||||
gem "sdoc"
|
|
||||||
|
|
||||||
# thin instead webrick
|
|
||||||
gem 'thin'
|
|
||||||
end
|
end
|
||||||
|
|
||||||
group :development, :test do
|
group :development, :test do
|
||||||
gem 'coveralls', require: false
|
|
||||||
gem 'rails-dev-tweaks'
|
gem 'rails-dev-tweaks'
|
||||||
gem 'spinach-rails'
|
gem 'spinach-rails'
|
||||||
gem "rspec-rails"
|
gem "rspec-rails"
|
||||||
|
@ -173,19 +139,18 @@ group :development, :test do
|
||||||
gem 'rb-inotify', require: linux_only('rb-inotify')
|
gem 'rb-inotify', require: linux_only('rb-inotify')
|
||||||
|
|
||||||
# PhantomJS driver for Capybara
|
# PhantomJS driver for Capybara
|
||||||
gem 'poltergeist', '1.1.0'
|
gem 'poltergeist'
|
||||||
|
|
||||||
gem 'spork', '~> 1.0rc'
|
|
||||||
end
|
end
|
||||||
|
|
||||||
group :test do
|
group :test do
|
||||||
gem "simplecov", require: false
|
gem "simplecov", require: false
|
||||||
gem "shoulda-matchers", "1.3.0"
|
gem "shoulda-matchers", "1.3.0"
|
||||||
gem 'email_spec'
|
gem 'email_spec'
|
||||||
|
gem 'resque_spec'
|
||||||
gem "webmock"
|
gem "webmock"
|
||||||
gem 'test_after_commit'
|
gem 'test_after_commit'
|
||||||
end
|
end
|
||||||
|
|
||||||
group :production do
|
group :production do
|
||||||
gem "gitlab_meta", '5.0'
|
gem "gitlab_meta", '3.1'
|
||||||
end
|
end
|
||||||
|
|
485
Gemfile.lock
|
@ -6,10 +6,18 @@ GIT
|
||||||
activerecord (>= 2.3.0)
|
activerecord (>= 2.3.0)
|
||||||
rake (>= 0.8.7)
|
rake (>= 0.8.7)
|
||||||
|
|
||||||
|
GIT
|
||||||
|
remote: https://github.com/gitlabhq/grack.git
|
||||||
|
revision: ba46f3b0845c6a09d488ae6abdce6ede37e227e8
|
||||||
|
ref: ba46f3b0845c6a09d488ae6abdce6ede37e227e8
|
||||||
|
specs:
|
||||||
|
grack (1.0.0)
|
||||||
|
rack (~> 1.4.1)
|
||||||
|
|
||||||
GIT
|
GIT
|
||||||
remote: https://github.com/gitlabhq/grit.git
|
remote: https://github.com/gitlabhq/grit.git
|
||||||
revision: 42297cdcee16284d2e4eff23d41377f52fc28b9d
|
revision: 7f35cb98ff17d534a07e3ce6ec3d580f67402837
|
||||||
ref: 42297cdcee16284d2e4eff23d41377f52fc28b9d
|
ref: 7f35cb98ff17d534a07e3ce6ec3d580f67402837
|
||||||
specs:
|
specs:
|
||||||
grit (2.5.0)
|
grit (2.5.0)
|
||||||
diff-lcs (~> 1.1)
|
diff-lcs (~> 1.1)
|
||||||
|
@ -17,95 +25,98 @@ GIT
|
||||||
posix-spawn (~> 0.3.6)
|
posix-spawn (~> 0.3.6)
|
||||||
|
|
||||||
GIT
|
GIT
|
||||||
remote: https://github.com/gitlabhq/raphael-rails.git
|
remote: https://github.com/gitlabhq/grit_ext.git
|
||||||
revision: cb2c92a040b9b941a5f1aa1ea866cc26e944fe58
|
revision: 212fd40bea61f3c6a167223768e7295dc32bbc10
|
||||||
|
ref: 212fd40bea61f3c6a167223768e7295dc32bbc10
|
||||||
specs:
|
specs:
|
||||||
raphael-rails (2.1.0)
|
grit_ext (0.6.0)
|
||||||
|
charlock_holmes (~> 0.6.9)
|
||||||
|
|
||||||
GIT
|
GIT
|
||||||
remote: https://github.com/gollum/gollum.git
|
remote: https://github.com/gitlabhq/omniauth-ldap.git
|
||||||
revision: 5dcd3c8c8f68158e43ff79861279088ee56d0ebe
|
revision: f038dd852d7bd473a557e385d5d7c2fd5dc1dc2e
|
||||||
ref: 5dcd3c8c8f
|
ref: f038dd852d7bd473a557e385d5d7c2fd5dc1dc2e
|
||||||
specs:
|
specs:
|
||||||
gollum (2.4.11)
|
omniauth-ldap (1.0.2)
|
||||||
github-markdown (~> 0.5.3)
|
net-ldap (~> 0.2.2)
|
||||||
github-markup (>= 0.7.5, < 1.0.0)
|
omniauth (~> 1.0)
|
||||||
grit (~> 2.5.0)
|
pyu-ruby-sasl (~> 0.0.3.1)
|
||||||
mustache (>= 0.99.4, < 1.0.0)
|
rubyntlm (~> 0.1.1)
|
||||||
nokogiri (~> 1.5.6)
|
|
||||||
pygments.rb (~> 0.4.2)
|
GIT
|
||||||
sanitize (~> 2.0.3)
|
remote: https://github.com/gitlabhq/pygments.rb.git
|
||||||
sinatra (~> 1.3.5)
|
revision: 4db80c599067e2d5f23c5c243bf85b8ca0368ad4
|
||||||
stringex (~> 1.5.1)
|
ref: 4db80c599067e2d5f23c5c243bf85b8ca0368ad4
|
||||||
useragent (~> 0.4.16)
|
specs:
|
||||||
|
pygments.rb (0.3.2)
|
||||||
|
posix-spawn (~> 0.3.6)
|
||||||
|
yajl-ruby (~> 1.1.0)
|
||||||
|
|
||||||
|
GIT
|
||||||
|
remote: https://github.com/gitlabhq/yaml_db.git
|
||||||
|
revision: 98e9a5dca43e3fedd3268c76a73af40d1bdf1dfd
|
||||||
|
ref: 98e9a5dca43e3fedd3268c76a73af40d1bdf1dfd
|
||||||
|
specs:
|
||||||
|
yaml_db (0.2.2)
|
||||||
|
|
||||||
GEM
|
GEM
|
||||||
remote: https://rubygems.org/
|
remote: http://rubygems.org/
|
||||||
specs:
|
specs:
|
||||||
actionmailer (3.2.13)
|
actionmailer (3.2.9)
|
||||||
actionpack (= 3.2.13)
|
actionpack (= 3.2.9)
|
||||||
mail (~> 2.5.3)
|
mail (~> 2.4.4)
|
||||||
actionpack (3.2.13)
|
actionpack (3.2.9)
|
||||||
activemodel (= 3.2.13)
|
activemodel (= 3.2.9)
|
||||||
activesupport (= 3.2.13)
|
activesupport (= 3.2.9)
|
||||||
builder (~> 3.0.0)
|
builder (~> 3.0.0)
|
||||||
erubis (~> 2.7.0)
|
erubis (~> 2.7.0)
|
||||||
journey (~> 1.0.4)
|
journey (~> 1.0.4)
|
||||||
rack (~> 1.4.5)
|
rack (~> 1.4.0)
|
||||||
rack-cache (~> 1.2)
|
rack-cache (~> 1.2)
|
||||||
rack-test (~> 0.6.1)
|
rack-test (~> 0.6.1)
|
||||||
sprockets (~> 2.2.1)
|
sprockets (~> 2.2.1)
|
||||||
activemodel (3.2.13)
|
activemodel (3.2.9)
|
||||||
activesupport (= 3.2.13)
|
activesupport (= 3.2.9)
|
||||||
builder (~> 3.0.0)
|
builder (~> 3.0.0)
|
||||||
activerecord (3.2.13)
|
activerecord (3.2.9)
|
||||||
activemodel (= 3.2.13)
|
activemodel (= 3.2.9)
|
||||||
activesupport (= 3.2.13)
|
activesupport (= 3.2.9)
|
||||||
arel (~> 3.0.2)
|
arel (~> 3.0.2)
|
||||||
tzinfo (~> 0.3.29)
|
tzinfo (~> 0.3.29)
|
||||||
activeresource (3.2.13)
|
activeresource (3.2.9)
|
||||||
activemodel (= 3.2.13)
|
activemodel (= 3.2.9)
|
||||||
activesupport (= 3.2.13)
|
activesupport (= 3.2.9)
|
||||||
activesupport (3.2.13)
|
activesupport (3.2.9)
|
||||||
i18n (= 0.6.1)
|
i18n (~> 0.6)
|
||||||
multi_json (~> 1.0)
|
multi_json (~> 1.0)
|
||||||
acts-as-taggable-on (2.3.3)
|
acts-as-taggable-on (2.3.3)
|
||||||
rails (~> 3.0)
|
rails (~> 3.0)
|
||||||
addressable (2.3.2)
|
addressable (2.3.2)
|
||||||
arel (3.0.2)
|
arel (3.0.2)
|
||||||
awesome_print (1.1.0)
|
awesome_print (1.1.0)
|
||||||
backports (2.6.7)
|
backports (2.6.5)
|
||||||
bcrypt-ruby (3.0.1)
|
bcrypt-ruby (3.0.1)
|
||||||
better_errors (0.3.2)
|
blankslate (3.1.2)
|
||||||
coderay (>= 1.0.0)
|
|
||||||
erubis (>= 2.7.0)
|
|
||||||
binding_of_caller (0.7.1)
|
|
||||||
debug_inspector (>= 0.0.1)
|
|
||||||
bootstrap-sass (2.2.1.1)
|
bootstrap-sass (2.2.1.1)
|
||||||
sass (~> 3.2)
|
sass (~> 3.2)
|
||||||
builder (3.0.4)
|
builder (3.0.4)
|
||||||
capybara (2.0.2)
|
capybara (1.1.3)
|
||||||
mime-types (>= 1.16)
|
mime-types (>= 1.16)
|
||||||
nokogiri (>= 1.3.3)
|
nokogiri (>= 1.3.3)
|
||||||
rack (>= 1.0.0)
|
rack (>= 1.0.0)
|
||||||
rack-test (>= 0.5.4)
|
rack-test (>= 0.5.4)
|
||||||
selenium-webdriver (~> 2.0)
|
selenium-webdriver (~> 2.0)
|
||||||
xpath (~> 1.0.0)
|
xpath (~> 0.1.4)
|
||||||
carrierwave (0.8.0)
|
carrierwave (0.7.1)
|
||||||
activemodel (>= 3.2.0)
|
activemodel (>= 3.2.0)
|
||||||
activesupport (>= 3.2.0)
|
activesupport (>= 3.2.0)
|
||||||
celluloid (0.12.4)
|
|
||||||
facter (>= 1.6.12)
|
|
||||||
timers (>= 1.0.0)
|
|
||||||
charlock_holmes (0.6.9)
|
charlock_holmes (0.6.9)
|
||||||
childprocess (0.3.8)
|
childprocess (0.3.6)
|
||||||
ffi (~> 1.0, >= 1.0.11)
|
ffi (~> 1.0, >= 1.0.6)
|
||||||
chosen-rails (0.9.8)
|
chosen-rails (0.9.8)
|
||||||
railties (~> 3.0)
|
railties (~> 3.0)
|
||||||
thor (~> 0.14)
|
thor (~> 0.14)
|
||||||
code_analyzer (0.3.1)
|
coderay (1.0.8)
|
||||||
sexp_processor
|
|
||||||
coderay (1.0.9)
|
|
||||||
coffee-rails (3.2.2)
|
coffee-rails (3.2.2)
|
||||||
coffee-script (>= 2.2.0)
|
coffee-script (>= 2.2.0)
|
||||||
railties (~> 3.2.0)
|
railties (~> 3.2.0)
|
||||||
|
@ -115,54 +126,41 @@ GEM
|
||||||
coffee-script-source (1.4.0)
|
coffee-script-source (1.4.0)
|
||||||
colored (1.2)
|
colored (1.2)
|
||||||
colorize (0.5.8)
|
colorize (0.5.8)
|
||||||
connection_pool (1.0.0)
|
crack (0.3.1)
|
||||||
coveralls (0.6.2)
|
|
||||||
colorize
|
|
||||||
multi_json (~> 1.3)
|
|
||||||
rest-client
|
|
||||||
simplecov (>= 0.7)
|
|
||||||
thor
|
|
||||||
crack (0.3.2)
|
|
||||||
daemons (1.1.9)
|
daemons (1.1.9)
|
||||||
database_cleaner (0.9.1)
|
database_cleaner (0.9.1)
|
||||||
debug_inspector (0.0.2)
|
devise (2.1.2)
|
||||||
descendants_tracker (0.0.1)
|
|
||||||
devise (2.2.3)
|
|
||||||
bcrypt-ruby (~> 3.0)
|
bcrypt-ruby (~> 3.0)
|
||||||
orm_adapter (~> 0.1)
|
orm_adapter (~> 0.1)
|
||||||
railties (~> 3.1)
|
railties (~> 3.1)
|
||||||
warden (~> 1.2.1)
|
warden (~> 1.2.1)
|
||||||
diff-lcs (1.2.1)
|
diff-lcs (1.1.3)
|
||||||
draper (1.1.0)
|
draper (0.18.0)
|
||||||
actionpack (>= 3.0)
|
actionpack (~> 3.2)
|
||||||
activesupport (>= 3.0)
|
activesupport (~> 3.2)
|
||||||
request_store (~> 1.0.3)
|
|
||||||
email_spec (1.4.0)
|
email_spec (1.4.0)
|
||||||
launchy (~> 2.1)
|
launchy (~> 2.1)
|
||||||
mail (~> 2.2)
|
mail (~> 2.2)
|
||||||
enumerize (0.5.1)
|
|
||||||
activesupport (>= 3.2)
|
|
||||||
erubis (2.7.0)
|
erubis (2.7.0)
|
||||||
escape_utils (0.2.4)
|
escape_utils (0.2.4)
|
||||||
eventmachine (1.0.0)
|
eventmachine (1.0.0)
|
||||||
execjs (1.4.0)
|
execjs (1.4.0)
|
||||||
multi_json (~> 1.0)
|
multi_json (~> 1.0)
|
||||||
facter (1.6.18)
|
|
||||||
factory_girl (4.1.0)
|
factory_girl (4.1.0)
|
||||||
activesupport (>= 3.0.0)
|
activesupport (>= 3.0.0)
|
||||||
factory_girl_rails (4.1.0)
|
factory_girl_rails (4.1.0)
|
||||||
factory_girl (~> 4.1.0)
|
factory_girl (~> 4.1.0)
|
||||||
railties (>= 3.0.0)
|
railties (>= 3.0.0)
|
||||||
faraday (0.8.6)
|
faraday (0.8.4)
|
||||||
multipart-post (~> 1.1)
|
multipart-post (~> 1.1)
|
||||||
faye-websocket (0.4.7)
|
faye-websocket (0.4.6)
|
||||||
eventmachine (>= 0.12.0)
|
eventmachine (>= 0.12.0)
|
||||||
ffaker (1.15.0)
|
ffaker (1.15.0)
|
||||||
ffi (1.4.0)
|
ffi (1.1.5)
|
||||||
font-awesome-sass-rails (3.0.0.1)
|
font-awesome-sass-rails (2.0.0.0)
|
||||||
railties (>= 3.1.1)
|
railties (>= 3.1.1)
|
||||||
sass-rails (>= 3.1.1)
|
sass-rails (>= 3.1.1)
|
||||||
foreman (0.61.0)
|
foreman (0.60.2)
|
||||||
thor (>= 0.13.6)
|
thor (>= 0.13.6)
|
||||||
gemoji (1.2.1)
|
gemoji (1.2.1)
|
||||||
gherkin-ruby (0.2.1)
|
gherkin-ruby (0.2.1)
|
||||||
|
@ -172,112 +170,99 @@ GEM
|
||||||
escape_utils (~> 0.2.3)
|
escape_utils (~> 0.2.3)
|
||||||
mime-types (~> 1.19)
|
mime-types (~> 1.19)
|
||||||
pygments.rb (>= 0.2.13)
|
pygments.rb (>= 0.2.13)
|
||||||
github-markdown (0.5.3)
|
github-markup (0.7.4)
|
||||||
github-markup (0.7.5)
|
gitlab_meta (3.1)
|
||||||
gitlab-grack (1.0.0)
|
gitolite (1.1.0)
|
||||||
rack (~> 1.4.1)
|
gratr19 (~> 0.4.4.1)
|
||||||
gitlab-pygments.rb (0.3.2)
|
grit (~> 2.5.0)
|
||||||
posix-spawn (~> 0.3.6)
|
hashery (~> 1.5.0)
|
||||||
yajl-ruby (~> 1.1.0)
|
grape (0.2.2)
|
||||||
gitlab_meta (5.0)
|
|
||||||
gitlab_omniauth-ldap (1.0.2)
|
|
||||||
net-ldap (~> 0.2.2)
|
|
||||||
omniauth (~> 1.0)
|
|
||||||
pyu-ruby-sasl (~> 0.0.3.1)
|
|
||||||
rubyntlm (~> 0.1.1)
|
|
||||||
gitlab_yaml_db (1.0.0)
|
|
||||||
gon (4.0.2)
|
|
||||||
grape (0.3.2)
|
|
||||||
activesupport
|
activesupport
|
||||||
builder
|
hashie (~> 1.2)
|
||||||
hashie (>= 1.2.0)
|
|
||||||
multi_json (>= 1.3.2)
|
multi_json (>= 1.3.2)
|
||||||
multi_xml (>= 0.5.2)
|
multi_xml
|
||||||
rack
|
rack
|
||||||
rack-accept
|
rack-accept
|
||||||
rack-mount
|
rack-mount
|
||||||
virtus
|
virtus
|
||||||
grape-entity (0.2.0)
|
gratr19 (0.4.4.1)
|
||||||
activesupport
|
|
||||||
multi_json (>= 1.3.2)
|
|
||||||
grit_ext (0.8.1)
|
|
||||||
charlock_holmes (~> 0.6.9)
|
|
||||||
growl (1.0.3)
|
growl (1.0.3)
|
||||||
guard (1.6.2)
|
guard (1.5.4)
|
||||||
listen (>= 0.6.0)
|
listen (>= 0.4.2)
|
||||||
lumberjack (>= 1.0.2)
|
lumberjack (>= 1.0.2)
|
||||||
pry (>= 0.9.10)
|
pry (>= 0.9.10)
|
||||||
terminal-table (>= 1.4.3)
|
|
||||||
thor (>= 0.14.6)
|
thor (>= 0.14.6)
|
||||||
guard-rspec (2.5.1)
|
guard-rspec (2.1.2)
|
||||||
guard (>= 1.1)
|
guard (>= 1.1)
|
||||||
rspec (~> 2.11)
|
rspec (~> 2.11)
|
||||||
guard-spinach (0.0.2)
|
guard-spinach (0.0.2)
|
||||||
guard (>= 1.1)
|
guard (>= 1.1)
|
||||||
spinach
|
spinach
|
||||||
haml (4.0.0)
|
haml (3.1.7)
|
||||||
tilt
|
haml-rails (0.3.5)
|
||||||
haml-rails (0.4)
|
|
||||||
actionpack (>= 3.1, < 4.1)
|
actionpack (>= 3.1, < 4.1)
|
||||||
activesupport (>= 3.1, < 4.1)
|
activesupport (>= 3.1, < 4.1)
|
||||||
haml (>= 3.1, < 4.1)
|
haml (~> 3.1)
|
||||||
railties (>= 3.1, < 4.1)
|
railties (>= 3.1, < 4.1)
|
||||||
|
hashery (1.5.0)
|
||||||
|
blankslate
|
||||||
hashie (1.2.0)
|
hashie (1.2.0)
|
||||||
hike (1.2.1)
|
hike (1.2.1)
|
||||||
http_parser.rb (0.5.3)
|
http_parser.rb (0.5.3)
|
||||||
httparty (0.10.2)
|
httparty (0.9.0)
|
||||||
multi_json (~> 1.0)
|
multi_json (~> 1.0)
|
||||||
multi_xml (>= 0.5.2)
|
multi_xml
|
||||||
httpauth (0.2.0)
|
httpauth (0.2.0)
|
||||||
i18n (0.6.1)
|
i18n (0.6.1)
|
||||||
journey (1.0.4)
|
journey (1.0.4)
|
||||||
jquery-atwho-rails (0.1.7)
|
jquery-atwho-rails (0.1.6)
|
||||||
jquery-rails (2.1.3)
|
jquery-rails (2.1.3)
|
||||||
railties (>= 3.1.0, < 5.0)
|
railties (>= 3.1.0, < 5.0)
|
||||||
thor (~> 0.14)
|
thor (~> 0.14)
|
||||||
jquery-ui-rails (2.0.2)
|
jquery-ui-rails (2.0.2)
|
||||||
jquery-rails
|
jquery-rails
|
||||||
railties (>= 3.1.0)
|
railties (>= 3.1.0)
|
||||||
json (1.7.7)
|
json (1.7.5)
|
||||||
jwt (0.1.5)
|
jwt (0.1.5)
|
||||||
multi_json (>= 1.0)
|
multi_json (>= 1.0)
|
||||||
kaminari (0.14.1)
|
kaminari (0.14.1)
|
||||||
actionpack (>= 3.0.0)
|
actionpack (>= 3.0.0)
|
||||||
activesupport (>= 3.0.0)
|
activesupport (>= 3.0.0)
|
||||||
kgio (2.8.0)
|
kgio (2.7.4)
|
||||||
launchy (2.1.2)
|
launchy (2.1.2)
|
||||||
addressable (~> 2.3)
|
addressable (~> 2.3)
|
||||||
letter_opener (1.0.0)
|
letter_opener (1.0.0)
|
||||||
launchy (>= 2.0.4)
|
launchy (>= 2.0.4)
|
||||||
libv8 (3.11.8.17)
|
libv8 (3.3.10.4)
|
||||||
listen (0.7.3)
|
libwebsocket (0.1.6)
|
||||||
lumberjack (1.0.3)
|
websocket
|
||||||
mail (2.5.3)
|
listen (0.5.3)
|
||||||
|
lumberjack (1.0.2)
|
||||||
|
mail (2.4.4)
|
||||||
i18n (>= 0.4.0)
|
i18n (>= 0.4.0)
|
||||||
mime-types (~> 1.16)
|
mime-types (~> 1.16)
|
||||||
treetop (~> 1.4.8)
|
treetop (~> 1.4.8)
|
||||||
method_source (0.8.1)
|
method_source (0.8.1)
|
||||||
mime-types (1.21)
|
mime-types (1.19)
|
||||||
modernizr (2.6.2)
|
modernizr (2.6.2)
|
||||||
sprockets (~> 2.0)
|
sprockets (~> 2.0)
|
||||||
multi_json (1.7.2)
|
multi_json (1.3.7)
|
||||||
multi_xml (0.5.3)
|
multi_xml (0.5.1)
|
||||||
multipart-post (1.1.5)
|
multipart-post (1.1.5)
|
||||||
mustache (0.99.4)
|
|
||||||
mysql2 (0.3.11)
|
mysql2 (0.3.11)
|
||||||
net-ldap (0.2.2)
|
net-ldap (0.2.2)
|
||||||
nokogiri (1.5.6)
|
nokogiri (1.5.5)
|
||||||
oauth (0.4.7)
|
oauth (0.4.7)
|
||||||
oauth2 (0.8.1)
|
oauth2 (0.8.0)
|
||||||
faraday (~> 0.8)
|
faraday (~> 0.8)
|
||||||
httpauth (~> 0.1)
|
httpauth (~> 0.1)
|
||||||
jwt (~> 0.1.4)
|
jwt (~> 0.1.4)
|
||||||
multi_json (~> 1.0)
|
multi_json (~> 1.0)
|
||||||
rack (~> 1.2)
|
rack (~> 1.2)
|
||||||
omniauth (1.1.3)
|
omniauth (1.1.1)
|
||||||
hashie (~> 1.2)
|
hashie (~> 1.2)
|
||||||
rack
|
rack
|
||||||
omniauth-github (1.1.0)
|
omniauth-github (1.0.3)
|
||||||
omniauth (~> 1.0)
|
omniauth (~> 1.0)
|
||||||
omniauth-oauth2 (~> 1.1)
|
omniauth-oauth2 (~> 1.1)
|
||||||
omniauth-google-oauth2 (0.1.13)
|
omniauth-google-oauth2 (0.1.13)
|
||||||
|
@ -294,23 +279,22 @@ GEM
|
||||||
omniauth-oauth (~> 1.0)
|
omniauth-oauth (~> 1.0)
|
||||||
orm_adapter (0.4.0)
|
orm_adapter (0.4.0)
|
||||||
pg (0.14.1)
|
pg (0.14.1)
|
||||||
poltergeist (1.1.0)
|
poltergeist (1.0.2)
|
||||||
capybara (~> 2.0, >= 2.0.1)
|
capybara (~> 1.1)
|
||||||
|
childprocess (~> 0.3)
|
||||||
faye-websocket (~> 0.4, >= 0.4.4)
|
faye-websocket (~> 0.4, >= 0.4.4)
|
||||||
http_parser.rb (~> 0.5.3)
|
http_parser.rb (~> 0.5.3)
|
||||||
|
multi_json (~> 1.0)
|
||||||
polyglot (0.3.3)
|
polyglot (0.3.3)
|
||||||
posix-spawn (0.3.6)
|
posix-spawn (0.3.6)
|
||||||
pry (0.9.12)
|
pry (0.9.10)
|
||||||
coderay (~> 1.0.5)
|
coderay (~> 1.0.5)
|
||||||
method_source (~> 0.8)
|
method_source (~> 0.8)
|
||||||
slop (~> 3.4)
|
slop (~> 3.3.1)
|
||||||
pygments.rb (0.4.2)
|
|
||||||
posix-spawn (~> 0.3.6)
|
|
||||||
yajl-ruby (~> 1.1.0)
|
|
||||||
pyu-ruby-sasl (0.0.3.3)
|
pyu-ruby-sasl (0.0.3.3)
|
||||||
quiet_assets (1.0.1)
|
quiet_assets (1.0.1)
|
||||||
railties (~> 3.1)
|
railties (~> 3.1)
|
||||||
rack (1.4.5)
|
rack (1.4.1)
|
||||||
rack-accept (0.4.5)
|
rack-accept (0.4.5)
|
||||||
rack (>= 0.4)
|
rack (>= 0.4)
|
||||||
rack-cache (1.2)
|
rack-cache (1.2)
|
||||||
|
@ -319,182 +303,140 @@ GEM
|
||||||
rack (>= 1.1.3)
|
rack (>= 1.1.3)
|
||||||
rack-mount (0.8.3)
|
rack-mount (0.8.3)
|
||||||
rack (>= 1.0.0)
|
rack (>= 1.0.0)
|
||||||
rack-protection (1.4.0)
|
rack-protection (1.2.0)
|
||||||
rack
|
rack
|
||||||
rack-ssl (1.3.3)
|
rack-ssl (1.3.2)
|
||||||
rack
|
rack
|
||||||
rack-test (0.6.2)
|
rack-test (0.6.2)
|
||||||
rack (>= 1.0)
|
rack (>= 1.0)
|
||||||
rails (3.2.13)
|
rails (3.2.9)
|
||||||
actionmailer (= 3.2.13)
|
actionmailer (= 3.2.9)
|
||||||
actionpack (= 3.2.13)
|
actionpack (= 3.2.9)
|
||||||
activerecord (= 3.2.13)
|
activerecord (= 3.2.9)
|
||||||
activeresource (= 3.2.13)
|
activeresource (= 3.2.9)
|
||||||
activesupport (= 3.2.13)
|
activesupport (= 3.2.9)
|
||||||
bundler (~> 1.0)
|
bundler (~> 1.0)
|
||||||
railties (= 3.2.13)
|
railties (= 3.2.9)
|
||||||
rails-dev-tweaks (0.6.1)
|
rails-dev-tweaks (0.6.1)
|
||||||
actionpack (~> 3.1)
|
actionpack (~> 3.1)
|
||||||
railties (~> 3.1)
|
railties (~> 3.1)
|
||||||
rails_best_practices (1.13.4)
|
railties (3.2.9)
|
||||||
activesupport
|
actionpack (= 3.2.9)
|
||||||
awesome_print
|
activesupport (= 3.2.9)
|
||||||
code_analyzer
|
|
||||||
colored
|
|
||||||
erubis
|
|
||||||
i18n
|
|
||||||
ruby-progressbar
|
|
||||||
railties (3.2.13)
|
|
||||||
actionpack (= 3.2.13)
|
|
||||||
activesupport (= 3.2.13)
|
|
||||||
rack-ssl (~> 1.3.2)
|
rack-ssl (~> 1.3.2)
|
||||||
rake (>= 0.8.7)
|
rake (>= 0.8.7)
|
||||||
rdoc (~> 3.4)
|
rdoc (~> 3.4)
|
||||||
thor (>= 0.14.6, < 2.0)
|
thor (>= 0.14.6, < 2.0)
|
||||||
raindrops (0.10.0)
|
raindrops (0.10.0)
|
||||||
rake (10.0.4)
|
rake (10.0.1)
|
||||||
|
raphael-rails (2.1.0)
|
||||||
rb-fsevent (0.9.2)
|
rb-fsevent (0.9.2)
|
||||||
rb-inotify (0.8.8)
|
rb-inotify (0.8.8)
|
||||||
ffi (>= 0.5.0)
|
ffi (>= 0.5.0)
|
||||||
rdoc (3.12.2)
|
rdoc (3.12)
|
||||||
json (~> 1.4)
|
json (~> 1.4)
|
||||||
redcarpet (2.2.2)
|
redcarpet (2.2.2)
|
||||||
redis (3.0.3)
|
redis (3.0.2)
|
||||||
redis-actionpack (3.2.3)
|
|
||||||
actionpack (~> 3.2.3)
|
|
||||||
redis-rack (~> 1.4.0)
|
|
||||||
redis-store (~> 1.1.0)
|
|
||||||
redis-activesupport (3.2.3)
|
|
||||||
activesupport (~> 3.2.3)
|
|
||||||
redis-store (~> 1.1.0)
|
|
||||||
redis-namespace (1.2.1)
|
redis-namespace (1.2.1)
|
||||||
redis (~> 3.0.0)
|
redis (~> 3.0.0)
|
||||||
redis-rack (1.4.2)
|
resque (1.23.0)
|
||||||
rack (~> 1.4.1)
|
multi_json (~> 1.0)
|
||||||
redis-store (~> 1.1.0)
|
redis-namespace (~> 1.0)
|
||||||
redis-rails (3.2.3)
|
sinatra (>= 0.9.2)
|
||||||
redis-actionpack (~> 3.2.3)
|
vegas (~> 0.1.2)
|
||||||
redis-activesupport (~> 3.2.3)
|
resque_mailer (2.1.0)
|
||||||
redis-store (~> 1.1.0)
|
actionmailer (~> 3.0)
|
||||||
redis-store (1.1.3)
|
resque_spec (0.12.5)
|
||||||
redis (>= 2.2.0)
|
resque (>= 1.19.0)
|
||||||
ref (1.0.4)
|
rspec (>= 2.5.0)
|
||||||
request_store (1.0.5)
|
rspec (2.12.0)
|
||||||
rest-client (1.6.7)
|
rspec-core (~> 2.12.0)
|
||||||
mime-types (>= 1.16)
|
rspec-expectations (~> 2.12.0)
|
||||||
rspec (2.13.0)
|
rspec-mocks (~> 2.12.0)
|
||||||
rspec-core (~> 2.13.0)
|
rspec-core (2.12.0)
|
||||||
rspec-expectations (~> 2.13.0)
|
rspec-expectations (2.12.0)
|
||||||
rspec-mocks (~> 2.13.0)
|
diff-lcs (~> 1.1.3)
|
||||||
rspec-core (2.13.1)
|
rspec-mocks (2.12.0)
|
||||||
rspec-expectations (2.13.0)
|
rspec-rails (2.12.0)
|
||||||
diff-lcs (>= 1.1.3, < 2.0)
|
|
||||||
rspec-mocks (2.13.0)
|
|
||||||
rspec-rails (2.13.0)
|
|
||||||
actionpack (>= 3.0)
|
actionpack (>= 3.0)
|
||||||
activesupport (>= 3.0)
|
activesupport (>= 3.0)
|
||||||
railties (>= 3.0)
|
railties (>= 3.0)
|
||||||
rspec-core (~> 2.13.0)
|
rspec-core (~> 2.12.0)
|
||||||
rspec-expectations (~> 2.13.0)
|
rspec-expectations (~> 2.12.0)
|
||||||
rspec-mocks (~> 2.13.0)
|
rspec-mocks (~> 2.12.0)
|
||||||
ruby-progressbar (1.0.2)
|
|
||||||
rubyntlm (0.1.1)
|
rubyntlm (0.1.1)
|
||||||
rubyzip (0.9.9)
|
rubyzip (0.9.9)
|
||||||
sanitize (2.0.3)
|
sass (3.2.3)
|
||||||
nokogiri (>= 1.4.4, < 1.6)
|
sass-rails (3.2.5)
|
||||||
sass (3.2.7)
|
|
||||||
sass-rails (3.2.6)
|
|
||||||
railties (~> 3.2.0)
|
railties (~> 3.2.0)
|
||||||
sass (>= 3.1.10)
|
sass (>= 3.1.10)
|
||||||
tilt (~> 1.3)
|
tilt (~> 1.3)
|
||||||
sdoc (0.3.20)
|
|
||||||
json (>= 1.1.3)
|
|
||||||
rdoc (~> 3.10)
|
|
||||||
seed-fu (2.2.0)
|
seed-fu (2.2.0)
|
||||||
activerecord (~> 3.1)
|
activerecord (~> 3.1)
|
||||||
activesupport (~> 3.1)
|
activesupport (~> 3.1)
|
||||||
select2-rails (3.3.1)
|
selenium-webdriver (2.26.0)
|
||||||
sass-rails (>= 3.2)
|
|
||||||
thor (~> 0.14)
|
|
||||||
selenium-webdriver (2.30.0)
|
|
||||||
childprocess (>= 0.2.5)
|
childprocess (>= 0.2.5)
|
||||||
|
libwebsocket (~> 0.1.3)
|
||||||
multi_json (~> 1.0)
|
multi_json (~> 1.0)
|
||||||
rubyzip
|
rubyzip
|
||||||
websocket (~> 1.0.4)
|
settingslogic (2.0.8)
|
||||||
settingslogic (2.0.9)
|
|
||||||
sexp_processor (4.2.0)
|
|
||||||
shoulda-matchers (1.3.0)
|
shoulda-matchers (1.3.0)
|
||||||
activesupport (>= 3.0.0)
|
activesupport (>= 3.0.0)
|
||||||
sidekiq (2.8.0)
|
|
||||||
celluloid (~> 0.12.0)
|
|
||||||
connection_pool (~> 1.0)
|
|
||||||
multi_json (~> 1)
|
|
||||||
redis (~> 3)
|
|
||||||
redis-namespace
|
|
||||||
simplecov (0.7.1)
|
simplecov (0.7.1)
|
||||||
multi_json (~> 1.0)
|
multi_json (~> 1.0)
|
||||||
simplecov-html (~> 0.7.1)
|
simplecov-html (~> 0.7.1)
|
||||||
simplecov-html (0.7.1)
|
simplecov-html (0.7.1)
|
||||||
sinatra (1.3.5)
|
sinatra (1.3.3)
|
||||||
rack (~> 1.4)
|
rack (~> 1.3, >= 1.3.6)
|
||||||
rack-protection (~> 1.3)
|
rack-protection (~> 1.2)
|
||||||
tilt (~> 1.3, >= 1.3.3)
|
tilt (~> 1.3, >= 1.3.3)
|
||||||
six (0.2.0)
|
six (0.2.0)
|
||||||
slim (1.3.6)
|
slop (3.3.3)
|
||||||
temple (~> 0.5.5)
|
spinach (0.5.2)
|
||||||
tilt (~> 1.3.3)
|
|
||||||
slop (3.4.4)
|
|
||||||
spinach (0.7.0)
|
|
||||||
colorize
|
colorize
|
||||||
gherkin-ruby (~> 0.2.0)
|
gherkin-ruby (~> 0.2.0)
|
||||||
spinach-rails (0.2.0)
|
spinach-rails (0.1.8)
|
||||||
capybara (~> 2.0.0)
|
capybara (~> 1)
|
||||||
railties (>= 3)
|
railties (>= 3)
|
||||||
spinach (>= 0.4)
|
spinach (>= 0.4)
|
||||||
spork (1.0.0rc3)
|
sprockets (2.2.1)
|
||||||
sprockets (2.2.2)
|
|
||||||
hike (~> 1.2)
|
hike (~> 1.2)
|
||||||
multi_json (~> 1.0)
|
multi_json (~> 1.0)
|
||||||
rack (~> 1.0)
|
rack (~> 1.0)
|
||||||
tilt (~> 1.1, != 1.3.0)
|
tilt (~> 1.1, != 1.3.0)
|
||||||
stamp (0.5.0)
|
sqlite3 (1.3.6)
|
||||||
state_machine (1.1.2)
|
stamp (0.3.0)
|
||||||
stringex (1.5.1)
|
|
||||||
temple (0.5.5)
|
|
||||||
terminal-table (1.4.5)
|
|
||||||
test_after_commit (0.0.1)
|
test_after_commit (0.0.1)
|
||||||
therubyracer (0.11.4)
|
therubyracer (0.10.2)
|
||||||
libv8 (~> 3.11.8.12)
|
libv8 (~> 3.3.10)
|
||||||
ref
|
|
||||||
thin (1.5.0)
|
thin (1.5.0)
|
||||||
daemons (>= 1.0.9)
|
daemons (>= 1.0.9)
|
||||||
eventmachine (>= 0.12.6)
|
eventmachine (>= 0.12.6)
|
||||||
rack (>= 1.0.0)
|
rack (>= 1.0.0)
|
||||||
thor (0.18.0)
|
thor (0.16.0)
|
||||||
tilt (1.3.6)
|
tilt (1.3.3)
|
||||||
timers (1.1.0)
|
|
||||||
treetop (1.4.12)
|
treetop (1.4.12)
|
||||||
polyglot
|
polyglot
|
||||||
polyglot (>= 0.3.1)
|
polyglot (>= 0.3.1)
|
||||||
tzinfo (0.3.37)
|
tzinfo (0.3.35)
|
||||||
uglifier (1.3.0)
|
uglifier (1.3.0)
|
||||||
execjs (>= 0.3.0)
|
execjs (>= 0.3.0)
|
||||||
multi_json (~> 1.0, >= 1.0.2)
|
multi_json (~> 1.0, >= 1.0.2)
|
||||||
unicorn (4.6.2)
|
unicorn (4.4.0)
|
||||||
kgio (~> 2.6)
|
kgio (~> 2.6)
|
||||||
rack
|
rack
|
||||||
raindrops (~> 0.7)
|
raindrops (~> 0.7)
|
||||||
useragent (0.4.16)
|
vegas (0.1.11)
|
||||||
virtus (0.5.4)
|
rack (>= 1.0.0)
|
||||||
|
virtus (0.5.2)
|
||||||
backports (~> 2.6.1)
|
backports (~> 2.6.1)
|
||||||
descendants_tracker (~> 0.0.1)
|
|
||||||
warden (1.2.1)
|
warden (1.2.1)
|
||||||
rack (>= 1.0)
|
rack (>= 1.0)
|
||||||
webmock (1.9.0)
|
webmock (1.9.0)
|
||||||
addressable (>= 2.2.7)
|
addressable (>= 2.2.7)
|
||||||
crack (>= 0.1.7)
|
crack (>= 0.1.7)
|
||||||
websocket (1.0.7)
|
websocket (1.0.2)
|
||||||
xpath (1.0.0)
|
xpath (0.1.4)
|
||||||
nokogiri (~> 1.3)
|
nokogiri (~> 1.3)
|
||||||
yajl-ruby (1.1.0)
|
yajl-ruby (1.1.0)
|
||||||
|
|
||||||
|
@ -505,45 +447,36 @@ DEPENDENCIES
|
||||||
acts-as-taggable-on (= 2.3.3)
|
acts-as-taggable-on (= 2.3.3)
|
||||||
annotate!
|
annotate!
|
||||||
awesome_print
|
awesome_print
|
||||||
better_errors
|
|
||||||
binding_of_caller
|
|
||||||
bootstrap-sass (= 2.2.1.1)
|
bootstrap-sass (= 2.2.1.1)
|
||||||
capybara
|
capybara
|
||||||
carrierwave
|
carrierwave (~> 0.7.1)
|
||||||
chosen-rails (= 0.9.8)
|
chosen-rails (= 0.9.8)
|
||||||
coffee-rails (~> 3.2.2)
|
coffee-rails (~> 3.2.2)
|
||||||
colored
|
colored
|
||||||
coveralls
|
|
||||||
database_cleaner
|
database_cleaner
|
||||||
devise
|
devise (~> 2.1.0)
|
||||||
draper
|
draper (~> 0.18.0)
|
||||||
email_spec
|
email_spec
|
||||||
enumerize
|
|
||||||
factory_girl_rails
|
factory_girl_rails
|
||||||
ffaker
|
ffaker
|
||||||
font-awesome-sass-rails (~> 3.0.0)
|
font-awesome-sass-rails (~> 2.0.0)
|
||||||
foreman
|
foreman
|
||||||
gemoji (~> 1.2.1)
|
gemoji (~> 1.2.1)
|
||||||
git
|
git
|
||||||
github-linguist (~> 2.3.4)
|
github-linguist (~> 2.3.4)
|
||||||
github-markup (~> 0.7.4)
|
github-markup (~> 0.7.4)
|
||||||
gitlab-grack (~> 1.0.0)
|
gitlab_meta (= 3.1)
|
||||||
gitlab-pygments.rb (~> 0.3.2)
|
gitolite (= 1.1.0)
|
||||||
gitlab_meta (= 5.0)
|
grack!
|
||||||
gitlab_omniauth-ldap (= 1.0.2)
|
grape (~> 0.2.1)
|
||||||
gitlab_yaml_db (= 1.0.0)
|
grit!
|
||||||
gollum (~> 2.4.0)!
|
grit_ext!
|
||||||
gon
|
|
||||||
grape (~> 0.3.1)
|
|
||||||
grape-entity (~> 0.2.0)
|
|
||||||
grit (~> 2.5.0)!
|
|
||||||
grit_ext (~> 0.8.1)
|
|
||||||
growl
|
growl
|
||||||
guard-rspec
|
guard-rspec
|
||||||
guard-spinach
|
guard-spinach
|
||||||
haml-rails
|
haml-rails (~> 0.3.5)
|
||||||
httparty
|
httparty
|
||||||
jquery-atwho-rails (= 0.1.7)
|
jquery-atwho-rails (= 0.1.6)
|
||||||
jquery-rails (= 2.1.3)
|
jquery-rails (= 2.1.3)
|
||||||
jquery-ui-rails (= 2.0.2)
|
jquery-ui-rails (= 2.0.2)
|
||||||
kaminari (~> 0.14.1)
|
kaminari (~> 0.14.1)
|
||||||
|
@ -551,42 +484,40 @@ DEPENDENCIES
|
||||||
letter_opener
|
letter_opener
|
||||||
modernizr (= 2.6.2)
|
modernizr (= 2.6.2)
|
||||||
mysql2
|
mysql2
|
||||||
omniauth (~> 1.1.3)
|
omniauth (~> 1.1.1)
|
||||||
omniauth-github
|
omniauth-github
|
||||||
omniauth-google-oauth2
|
omniauth-google-oauth2
|
||||||
|
omniauth-ldap!
|
||||||
omniauth-twitter
|
omniauth-twitter
|
||||||
pg
|
pg
|
||||||
poltergeist (= 1.1.0)
|
poltergeist
|
||||||
pry
|
pry
|
||||||
|
pygments.rb!
|
||||||
quiet_assets (~> 1.0.1)
|
quiet_assets (~> 1.0.1)
|
||||||
rack-mini-profiler
|
rack-mini-profiler
|
||||||
rails (= 3.2.13)
|
rails (= 3.2.9)
|
||||||
rails-dev-tweaks
|
rails-dev-tweaks
|
||||||
rails_best_practices
|
raphael-rails (= 2.1.0)
|
||||||
raphael-rails!
|
|
||||||
rb-fsevent
|
rb-fsevent
|
||||||
rb-inotify
|
rb-inotify
|
||||||
redcarpet (~> 2.2.2)
|
redcarpet (~> 2.2.2)
|
||||||
redis-rails
|
resque (~> 1.23.0)
|
||||||
|
resque_mailer
|
||||||
|
resque_spec
|
||||||
rspec-rails
|
rspec-rails
|
||||||
sass-rails (~> 3.2.5)
|
sass-rails (~> 3.2.5)
|
||||||
sdoc
|
|
||||||
seed-fu
|
seed-fu
|
||||||
select2-rails
|
|
||||||
settingslogic
|
settingslogic
|
||||||
shoulda-matchers (= 1.3.0)
|
shoulda-matchers (= 1.3.0)
|
||||||
sidekiq
|
|
||||||
simplecov
|
simplecov
|
||||||
sinatra
|
|
||||||
six
|
six
|
||||||
slim
|
|
||||||
spinach-rails
|
spinach-rails
|
||||||
spork (~> 1.0rc)
|
sqlite3
|
||||||
stamp
|
stamp
|
||||||
state_machine
|
|
||||||
test_after_commit
|
test_after_commit
|
||||||
therubyracer
|
therubyracer
|
||||||
thin
|
thin (~> 1.5.0)
|
||||||
uglifier (~> 1.3.0)
|
uglifier (~> 1.3.0)
|
||||||
unicorn
|
unicorn (~> 4.4.0)
|
||||||
webmock
|
webmock
|
||||||
|
yaml_db!
|
||||||
|
|
4
Procfile
|
@ -1,2 +1,2 @@
|
||||||
web: bundle exec unicorn_rails -p $PORT
|
web: bundle exec rails s -p $PORT
|
||||||
worker: bundle exec sidekiq -q post_receive,mailer,system_hook,project_web_hook,common,default,gitlab_shell
|
worker: bundle exec rake environment resque:work QUEUE=* VVERBOSE=1
|
||||||
|
|
165
README.md
|
@ -1,161 +1,44 @@
|
||||||
## GitLab: self hosted Git management software
|
# Welcome to GitLab [![build status](https://secure.travis-ci.org/gitlabhq/gitlabhq.png)](https://secure.travis-ci.org/gitlabhq/gitlabhq) [![build status](https://secure.travis-ci.org/gitlabhq/grit.png)](https://secure.travis-ci.org/gitlabhq/grit) [![Code Climate](https://codeclimate.com/badge.png)](https://codeclimate.com/github/gitlabhq/gitlabhq)
|
||||||
|
|
||||||
![logo](https://raw.github.com/gitlabhq/gitlabhq/master/public/gitlab_logo.png)
|
GitLab is a free project and repository management application
|
||||||
|
|
||||||
### GitLab allows you to
|
|
||||||
* keep your code secure on your own server
|
|
||||||
* manage repositories, users and access permissions
|
|
||||||
* communicate through issues, line-comments and wiki pages
|
|
||||||
* perform code review with merge requests
|
|
||||||
|
|
||||||
### GitLab is
|
## Application details
|
||||||
|
|
||||||
* powered by Ruby on Rails
|
* based on Ruby on Rails
|
||||||
* completely free and open source (MIT license)
|
* distributed under the MIT License
|
||||||
* used by more than 10.000 organizations to keep their code secure
|
* works with gitolite
|
||||||
|
|
||||||
### Code status
|
## Requirements
|
||||||
|
|
||||||
* [![build status](http://ci.gitlab.org/projects/1/status?ref=master)](http://ci.gitlab.org/projects/1?ref=master) ci.gitlab.org (master branch)
|
* Ubuntu/Debian
|
||||||
|
* ruby 1.9.3+
|
||||||
* [![build status](https://secure.travis-ci.org/gitlabhq/gitlabhq.png)](https://travis-ci.org/gitlabhq/gitlabhq) travis-ci.org (master branch)
|
|
||||||
|
|
||||||
* [![Code Climate](https://codeclimate.com/github/gitlabhq/gitlabhq.png)](https://codeclimate.com/github/gitlabhq/gitlabhq)
|
|
||||||
|
|
||||||
* [![Dependency Status](https://gemnasium.com/gitlabhq/gitlabhq.png)](https://gemnasium.com/gitlabhq/gitlabhq)
|
|
||||||
|
|
||||||
* [![Coverage Status](https://coveralls.io/repos/gitlabhq/gitlabhq/badge.png?branch=master)](https://coveralls.io/r/gitlabhq/gitlabhq)
|
|
||||||
|
|
||||||
### Resources
|
|
||||||
|
|
||||||
* GitLab.org community site: [Homepage](http://gitlab.org) [Screenshots](http://gitlab.org/screenshots/) [Blog](http://blog.gitlab.org/) [Demo](http://demo.gitlabhq.com/users/sign_in)
|
|
||||||
|
|
||||||
* GitLab.com commercial services: [Homepage](http://www.gitlab.com/) [Subscription](http://www.gitlab.com/subscription/) [Consultancy](http://www.gitlab.com/consultancy/) [GitLab Cloud](http://www.gitlab.com/cloud/) [Blog](http://blog.gitlab.com/)
|
|
||||||
|
|
||||||
* GitLab CI: [Readme](https://github.com/gitlabhq/gitlab-ci/blob/master/README.md) of the GitLab open-source continuous integration server
|
|
||||||
|
|
||||||
### Requirements
|
|
||||||
|
|
||||||
* Ubuntu/Debian**
|
|
||||||
* ruby 1.9.3
|
|
||||||
* MySQL
|
* MySQL
|
||||||
* git
|
* git
|
||||||
* gitlab-shell
|
* gitolite
|
||||||
* redis
|
* redis
|
||||||
|
|
||||||
** More details are in the [requirements doc](https://github.com/gitlabhq/gitlabhq/blob/master/doc/install/requirements.md)
|
## Install
|
||||||
|
|
||||||
### Installation
|
Checkout wiki pages for installation information, migration, etc.
|
||||||
|
|
||||||
#### Official production installation
|
## Community
|
||||||
|
|
||||||
Follow the installation guide for production server.
|
[Google Group](https://groups.google.com/group/gitlabhq)
|
||||||
|
|
||||||
* [Installation guide for latest stable release (5.0)](https://github.com/gitlabhq/gitlabhq/blob/5-0-stable/doc/install/installation.md) - **Recommended**
|
## Contacts
|
||||||
|
|
||||||
* [Installation guide for the current master branch (5.1)](https://github.com/gitlabhq/gitlabhq/blob/master/doc/install/installation.md)
|
Twitter:
|
||||||
|
|
||||||
|
* @gitlabhq
|
||||||
|
* @dzaporozhets
|
||||||
|
|
||||||
#### Official development installation
|
Email
|
||||||
|
|
||||||
If you want to contribute, please first read our [Contributing Guidelines](https://github.com/gitlabhq/gitlabhq/blob/master/CONTRIBUTING.md) and then we suggest you to use the Vagrant virtual machine project to get an environment working with all dependencies.
|
* m@gitlabhq.com
|
||||||
|
|
||||||
* [Vagrant virtual machine](https://github.com/gitlabhq/gitlab-vagrant-vm)
|
## Contribute
|
||||||
|
|
||||||
|
[Development Tips](https://github.com/gitlabhq/gitlabhq/blob/master/doc/development.md)
|
||||||
#### Unsupported production installation
|
Want to help - send a pull request.
|
||||||
|
We'll accept good pull requests.
|
||||||
* [GitLab recipes](https://github.com/gitlabhq/gitlab-recipes) for setup on different platforms
|
|
||||||
|
|
||||||
* [Unofficial installation guides](https://github.com/gitlabhq/gitlab-public-wiki/wiki/Unofficial-Installation-Guides)
|
|
||||||
|
|
||||||
* [BitNami one-click installers](http://bitnami.com/stack/gitlab)
|
|
||||||
|
|
||||||
* [TurnKey Linux virtual appliance](http://www.turnkeylinux.org/gitlab)
|
|
||||||
|
|
||||||
|
|
||||||
### New versions and upgrading
|
|
||||||
|
|
||||||
Each month on the 22th a new version is released together with an upgrade guide.
|
|
||||||
|
|
||||||
* [Upgrade guides](https://github.com/gitlabhq/gitlabhq/wiki)
|
|
||||||
|
|
||||||
* [Changelog](https://github.com/gitlabhq/gitlabhq/blob/master/CHANGELOG)
|
|
||||||
|
|
||||||
* [Roadmap](https://github.com/gitlabhq/gitlabhq/blob/master/ROADMAP.md)
|
|
||||||
|
|
||||||
|
|
||||||
### Getting started
|
|
||||||
|
|
||||||
1. The Installation guide contains instructions to download an init script and run that on boot. With the init script you can also start GitLab
|
|
||||||
|
|
||||||
sudo service gitlab start
|
|
||||||
|
|
||||||
or
|
|
||||||
|
|
||||||
sudo /etc/init.d/gitlab restart
|
|
||||||
|
|
||||||
2. Start it with [Foreman](https://github.com/ddollar/foreman) in development mode
|
|
||||||
|
|
||||||
bundle exec foreman start -p 3000
|
|
||||||
|
|
||||||
or start it manually
|
|
||||||
|
|
||||||
bundle exec rails s
|
|
||||||
bundle exec rake sidekiq:start
|
|
||||||
|
|
||||||
### Running the tests
|
|
||||||
|
|
||||||
* Seed the database
|
|
||||||
|
|
||||||
bundle exec rake db:setup RAILS_ENV=test
|
|
||||||
bundle exec rake db:seed_fu RAILS_ENV=test
|
|
||||||
|
|
||||||
* Run all tests
|
|
||||||
|
|
||||||
bundle exec rake gitlab:test
|
|
||||||
|
|
||||||
* Rspec unit and functional tests
|
|
||||||
|
|
||||||
bundle exec rake spec
|
|
||||||
|
|
||||||
* Spinach integration tests
|
|
||||||
|
|
||||||
bundle exec rake spinach
|
|
||||||
|
|
||||||
|
|
||||||
### GitLab interfaces
|
|
||||||
|
|
||||||
* [GitLab API](https://github.com/gitlabhq/gitlabhq/blob/master/doc/api/README.md)
|
|
||||||
|
|
||||||
* [Rake tasks](https://github.com/gitlabhq/gitlabhq/tree/master/doc/raketasks)
|
|
||||||
|
|
||||||
* [Directory structure](https://github.com/gitlabhq/gitlabhq/blob/master/doc/install/structure.md)
|
|
||||||
|
|
||||||
* [Databases](https://github.com/gitlabhq/gitlabhq/blob/master/doc/install/databases.md)
|
|
||||||
|
|
||||||
|
|
||||||
### Getting help
|
|
||||||
|
|
||||||
* [Troubleshooting guide](https://github.com/gitlabhq/gitlab-public-wiki/wiki/Trouble-Shooting-Guide) contains solutions to common problems.
|
|
||||||
|
|
||||||
* [Support forum](https://groups.google.com/forum/#!forum/gitlabhq) is the best place to ask questions. For example you can use it if you have questions about: permission denied errors, invisible repos, can't clone/pull/push or with web hooks that don't fire. Please search for similar issues before posting your own, there's a good chance somebody else had the same issue you have now and had it resolved. There are a lot of helpful GitLab users there who may be able to help you quickly. If your particular issue turns out to be a bug, it will find its way from there to a fix.
|
|
||||||
|
|
||||||
* [Feedback and suggestions forum](http://gitlab.uservoice.com/forums/176466-general) is the place to propose and discuss new features for GitLab.
|
|
||||||
|
|
||||||
* [Support subscription](http://www.gitlab.com/subscription/) connect you to the knowledge of GitLab experts that will resolve your issues and answer your questions.
|
|
||||||
|
|
||||||
* [Consultancy](http://www.gitlab.com/consultancy/) allows you hire GitLab exports for installations, upgrades and customizations.
|
|
||||||
|
|
||||||
* [Contributing guide](https://github.com/gitlabhq/gitlabhq/blob/master/CONTRIBUTING.md) describes how to submit pull requests and issues. Pull requests and issues not in line with the guidelines in this document will be closed without comment.
|
|
||||||
|
|
||||||
|
|
||||||
### Getting in touch
|
|
||||||
|
|
||||||
* [Core team](https://github.com/gitlabhq?tab=members)
|
|
||||||
|
|
||||||
* [Contributors](https://github.com/gitlabhq/gitlabhq/graphs/contributors)
|
|
||||||
|
|
||||||
* [Leader](https://github.com/randx)
|
|
||||||
|
|
||||||
* [Contact page](http://gitlab.org/contact/)
|
|
||||||
|
|
24
ROADMAP.md
|
@ -1,5 +1,25 @@
|
||||||
## GitLab Roadmap
|
## GitLab Roadmap
|
||||||
|
|
||||||
### v5.1 April 22
|
### Common
|
||||||
|
|
||||||
* Not decided yet.
|
* Help page for service tasks like repos import, backup etc
|
||||||
|
* Hide last push widget after following link
|
||||||
|
* Add comment events
|
||||||
|
* gitolite namespaces for projects per user/group. It will allow us same project names for different users
|
||||||
|
|
||||||
|
### Issues
|
||||||
|
|
||||||
|
* labels autocomplete via jquery autocomplete
|
||||||
|
* Import/Export issues
|
||||||
|
* Form: Assign to me link right to the selectbox
|
||||||
|
|
||||||
|
### Merge Request
|
||||||
|
|
||||||
|
* Save code fragments with MR comments
|
||||||
|
|
||||||
|
### Services
|
||||||
|
|
||||||
|
* Campfire integration service
|
||||||
|
* Hipchat integration service
|
||||||
|
* Travis CI integration service
|
||||||
|
* Jenkins CI integration service
|
||||||
|
|
2
VERSION
|
@ -1 +1 @@
|
||||||
5.1.0pre
|
3.1.0
|
||||||
|
|
BIN
app/assets/fonts/korolev-medium-compressed.otf
Normal file
Before Width: | Height: | Size: 8.2 KiB |
BIN
app/assets/images/comment_add.png
Normal file
After Width: | Height: | Size: 781 B |
BIN
app/assets/images/diff_file_add.png
Normal file
After Width: | Height: | Size: 177 B |
BIN
app/assets/images/diff_file_delete.png
Normal file
After Width: | Height: | Size: 295 B |
BIN
app/assets/images/diff_file_info.png
Normal file
After Width: | Height: | Size: 749 B |
BIN
app/assets/images/diff_file_notice.png
Normal file
After Width: | Height: | Size: 302 B |
Before Width: | Height: | Size: 691 B |
BIN
app/assets/images/download.png
Normal file
After Width: | Height: | Size: 674 B |
BIN
app/assets/images/event_filter_comments.png
Normal file
After Width: | Height: | Size: 750 B |
BIN
app/assets/images/event_filter_merged.png
Normal file
After Width: | Height: | Size: 463 B |
BIN
app/assets/images/event_filter_push.png
Normal file
After Width: | Height: | Size: 632 B |
BIN
app/assets/images/event_filter_team.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
app/assets/images/event_mr_merged.png
Normal file
After Width: | Height: | Size: 463 B |
BIN
app/assets/images/event_push.png
Normal file
After Width: | Height: | Size: 632 B |
BIN
app/assets/images/home_icon.PNG
Normal file
After Width: | Height: | Size: 596 B |
BIN
app/assets/images/icon-attachment.png
Normal file
After Width: | Height: | Size: 450 B |
BIN
app/assets/images/list_view_icon.jpg
Normal file
After Width: | Height: | Size: 357 B |
Before Width: | Height: | Size: 3 KiB |
Before Width: | Height: | Size: 4.3 KiB |
BIN
app/assets/images/logo.png
Normal file
After Width: | Height: | Size: 2.9 KiB |
BIN
app/assets/images/logo_basic.png
Normal file
After Width: | Height: | Size: 3.2 KiB |
BIN
app/assets/images/logo_dark.png
Normal file
After Width: | Height: | Size: 2.5 KiB |
BIN
app/assets/images/logo_text.png
Normal file
After Width: | Height: | Size: 4.5 KiB |
BIN
app/assets/images/logo_text_tr.png
Normal file
After Width: | Height: | Size: 3.2 KiB |
BIN
app/assets/images/logo_white.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.5 KiB |
BIN
app/assets/images/service-disabled-gitlab-ci.png
Normal file
After Width: | Height: | Size: 2.1 KiB |
BIN
app/assets/images/service-gitlab-ci.png
Normal file
After Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.2 KiB |
|
@ -10,8 +10,3 @@ $ ->
|
||||||
$('.log-tabs a').click (e) ->
|
$('.log-tabs a').click (e) ->
|
||||||
e.preventDefault()
|
e.preventDefault()
|
||||||
$(this).tab('show')
|
$(this).tab('show')
|
||||||
|
|
||||||
$('.log-bottom').click (e) ->
|
|
||||||
e.preventDefault()
|
|
||||||
visible_log = $(".file_content:visible")
|
|
||||||
visible_log.animate({ scrollTop: visible_log.find('ol').height() }, "fast")
|
|
||||||
|
|
|
@ -1,53 +0,0 @@
|
||||||
@Api =
|
|
||||||
users_path: "/api/:version/users.json"
|
|
||||||
user_path: "/api/:version/users/:id.json"
|
|
||||||
notes_path: "/api/:version/projects/:id/notes.json"
|
|
||||||
|
|
||||||
# Get 20 (depends on api) recent notes
|
|
||||||
# and sort the ascending from oldest to newest
|
|
||||||
notes: (project_id, callback) ->
|
|
||||||
url = Api.buildUrl(Api.notes_path)
|
|
||||||
url = url.replace(':id', project_id)
|
|
||||||
|
|
||||||
$.ajax(
|
|
||||||
url: url,
|
|
||||||
data:
|
|
||||||
private_token: gon.api_token
|
|
||||||
gfm: true
|
|
||||||
recent: true
|
|
||||||
dataType: "json"
|
|
||||||
).done (notes) ->
|
|
||||||
notes.sort (a, b) ->
|
|
||||||
return a.id - b.id
|
|
||||||
callback(notes)
|
|
||||||
|
|
||||||
user: (user_id, callback) ->
|
|
||||||
url = Api.buildUrl(Api.user_path)
|
|
||||||
url = url.replace(':id', user_id)
|
|
||||||
|
|
||||||
$.ajax(
|
|
||||||
url: url
|
|
||||||
data:
|
|
||||||
private_token: gon.api_token
|
|
||||||
dataType: "json"
|
|
||||||
).done (user) ->
|
|
||||||
callback(user)
|
|
||||||
|
|
||||||
# Return users list. Filtered by query
|
|
||||||
# Only active users retrieved
|
|
||||||
users: (query, callback) ->
|
|
||||||
url = Api.buildUrl(Api.users_path)
|
|
||||||
|
|
||||||
$.ajax(
|
|
||||||
url: url
|
|
||||||
data:
|
|
||||||
private_token: gon.api_token
|
|
||||||
search: query
|
|
||||||
per_page: 20
|
|
||||||
active: true
|
|
||||||
dataType: "json"
|
|
||||||
).done (users) ->
|
|
||||||
callback(users)
|
|
||||||
|
|
||||||
buildUrl: (url) ->
|
|
||||||
return url.replace(':version', gon.api_version)
|
|
|
@ -17,7 +17,6 @@
|
||||||
//= require bootstrap
|
//= require bootstrap
|
||||||
//= require modernizr
|
//= require modernizr
|
||||||
//= require chosen-jquery
|
//= require chosen-jquery
|
||||||
//= require select2
|
|
||||||
//= require raphael
|
//= require raphael
|
||||||
//= require g.raphael-min
|
//= require g.raphael-min
|
||||||
//= require g.bar-min
|
//= require g.bar-min
|
||||||
|
|
|
@ -1,5 +0,0 @@
|
||||||
$ ->
|
|
||||||
$("body").on "click", ".js-details-target", ->
|
|
||||||
container = $(@).closest(".js-details-container")
|
|
||||||
|
|
||||||
container.toggleClass("open")
|
|
|
@ -1,13 +0,0 @@
|
||||||
$ ->
|
|
||||||
$("body").on "click", ".js-toggler-target", ->
|
|
||||||
container = $(@).closest(".js-toggler-container")
|
|
||||||
|
|
||||||
container.toggleClass("on")
|
|
||||||
|
|
||||||
$("body").on "click", ".js-toggle-visibility-link", (e) ->
|
|
||||||
$(@).find('i').
|
|
||||||
toggleClass('icon-chevron-down').
|
|
||||||
toggleClass('icon-chevron-up')
|
|
||||||
container = $(".js-toggle-visibility-container")
|
|
||||||
container.toggleClass("hide")
|
|
||||||
e.preventDefault()
|
|
|
@ -1,309 +0,0 @@
|
||||||
class BranchGraph
|
|
||||||
constructor: (@element, @options) ->
|
|
||||||
@preparedCommits = {}
|
|
||||||
@mtime = 0
|
|
||||||
@mspace = 0
|
|
||||||
@parents = {}
|
|
||||||
@colors = ["#000"]
|
|
||||||
@offsetX = 120
|
|
||||||
@offsetY = 20
|
|
||||||
@unitTime = 30
|
|
||||||
@unitSpace = 10
|
|
||||||
@load()
|
|
||||||
|
|
||||||
load: ->
|
|
||||||
$.ajax
|
|
||||||
url: @options.url
|
|
||||||
method: "get"
|
|
||||||
dataType: "json"
|
|
||||||
success: $.proxy((data) ->
|
|
||||||
$(".loading", @element).hide()
|
|
||||||
@prepareData data.days, data.commits
|
|
||||||
@buildGraph()
|
|
||||||
, this)
|
|
||||||
|
|
||||||
prepareData: (@days, @commits) ->
|
|
||||||
@collectParents()
|
|
||||||
|
|
||||||
for c in @commits
|
|
||||||
c.isParent = true if c.id of @parents
|
|
||||||
@preparedCommits[c.id] = c
|
|
||||||
|
|
||||||
@collectColors()
|
|
||||||
|
|
||||||
collectParents: ->
|
|
||||||
for c in @commits
|
|
||||||
@mtime = Math.max(@mtime, c.time)
|
|
||||||
@mspace = Math.max(@mspace, c.space)
|
|
||||||
for p in c.parents
|
|
||||||
@parents[p[0]] = true
|
|
||||||
@mspace = Math.max(@mspace, p[1])
|
|
||||||
|
|
||||||
collectColors: ->
|
|
||||||
k = 0
|
|
||||||
while k < @mspace
|
|
||||||
@colors.push Raphael.getColor(.8)
|
|
||||||
# Skipping a few colors in the spectrum to get more contrast between colors
|
|
||||||
Raphael.getColor()
|
|
||||||
Raphael.getColor()
|
|
||||||
k++
|
|
||||||
|
|
||||||
buildGraph: ->
|
|
||||||
graphHeight = $(@element).height()
|
|
||||||
graphWidth = $(@element).width()
|
|
||||||
ch = Math.max(graphHeight, @offsetY + @unitTime * @mtime + 150)
|
|
||||||
cw = Math.max(graphWidth, @offsetX + @unitSpace * @mspace + 300)
|
|
||||||
@r = r = Raphael(@element.get(0), cw, ch)
|
|
||||||
top = r.set()
|
|
||||||
cuday = 0
|
|
||||||
cumonth = ""
|
|
||||||
barHeight = Math.max(graphHeight, @unitTime * @days.length + 320)
|
|
||||||
|
|
||||||
r.rect(0, 0, 26, barHeight).attr fill: "#222"
|
|
||||||
r.rect(26, 0, 20, barHeight).attr fill: "#444"
|
|
||||||
|
|
||||||
for day, mm in @days
|
|
||||||
if cuday isnt day[0]
|
|
||||||
# Dates
|
|
||||||
r.text(36, @offsetY + @unitTime * mm, day[0])
|
|
||||||
.attr(
|
|
||||||
font: "12px Monaco, monospace"
|
|
||||||
fill: "#DDD"
|
|
||||||
)
|
|
||||||
cuday = day[0]
|
|
||||||
|
|
||||||
if cumonth isnt day[1]
|
|
||||||
# Months
|
|
||||||
r.text(13, @offsetY + @unitTime * mm, day[1])
|
|
||||||
.attr(
|
|
||||||
font: "12px Monaco, monospace"
|
|
||||||
fill: "#EEE"
|
|
||||||
)
|
|
||||||
cumonth = day[1]
|
|
||||||
|
|
||||||
for commit in @commits
|
|
||||||
x = @offsetX + @unitSpace * (@mspace - commit.space)
|
|
||||||
y = @offsetY + @unitTime * commit.time
|
|
||||||
|
|
||||||
@drawDot(x, y, commit)
|
|
||||||
|
|
||||||
@drawLines(x, y, commit)
|
|
||||||
|
|
||||||
@appendLabel(x, y, commit.refs) if commit.refs
|
|
||||||
|
|
||||||
@appendAnchor(top, commit, x, y)
|
|
||||||
|
|
||||||
@markCommit(x, y, commit, graphHeight)
|
|
||||||
|
|
||||||
top.toFront()
|
|
||||||
@bindEvents()
|
|
||||||
|
|
||||||
bindEvents: ->
|
|
||||||
drag = {}
|
|
||||||
element = @element
|
|
||||||
dragger = (event) ->
|
|
||||||
element.scrollLeft drag.sl - (event.clientX - drag.x)
|
|
||||||
element.scrollTop drag.st - (event.clientY - drag.y)
|
|
||||||
|
|
||||||
element.on mousedown: (event) ->
|
|
||||||
drag =
|
|
||||||
x: event.clientX
|
|
||||||
y: event.clientY
|
|
||||||
st: element.scrollTop()
|
|
||||||
sl: element.scrollLeft()
|
|
||||||
$(window).on "mousemove", dragger
|
|
||||||
|
|
||||||
$(window).on
|
|
||||||
mouseup: ->
|
|
||||||
$(window).off "mousemove", dragger
|
|
||||||
keydown: (event) ->
|
|
||||||
# left
|
|
||||||
element.scrollLeft element.scrollLeft() - 50 if event.keyCode is 37
|
|
||||||
# top
|
|
||||||
element.scrollTop element.scrollTop() - 50 if event.keyCode is 38
|
|
||||||
# right
|
|
||||||
element.scrollLeft element.scrollLeft() + 50 if event.keyCode is 39
|
|
||||||
# bottom
|
|
||||||
element.scrollTop element.scrollTop() + 50 if event.keyCode is 40
|
|
||||||
|
|
||||||
appendLabel: (x, y, refs) ->
|
|
||||||
r = @r
|
|
||||||
shortrefs = refs
|
|
||||||
# Truncate if longer than 15 chars
|
|
||||||
shortrefs = shortrefs.substr(0, 15) + "…" if shortrefs.length > 17
|
|
||||||
text = r.text(x + 4, y, shortrefs).attr(
|
|
||||||
"text-anchor": "start"
|
|
||||||
font: "10px Monaco, monospace"
|
|
||||||
fill: "#FFF"
|
|
||||||
title: refs
|
|
||||||
)
|
|
||||||
textbox = text.getBBox()
|
|
||||||
# Create rectangle based on the size of the textbox
|
|
||||||
rect = r.rect(x, y - 7, textbox.width + 5, textbox.height + 5, 4).attr(
|
|
||||||
fill: "#000"
|
|
||||||
"fill-opacity": .5
|
|
||||||
stroke: "none"
|
|
||||||
)
|
|
||||||
triangle = r.path(["M", x - 5, y, "L", x - 15, y - 4, "L", x - 15, y + 4, "Z"]).attr(
|
|
||||||
fill: "#000"
|
|
||||||
"fill-opacity": .5
|
|
||||||
stroke: "none"
|
|
||||||
)
|
|
||||||
|
|
||||||
label = r.set(rect, text)
|
|
||||||
label.transform(["t", -rect.getBBox().width - 15, 0])
|
|
||||||
|
|
||||||
# Set text to front
|
|
||||||
text.toFront()
|
|
||||||
|
|
||||||
appendAnchor: (top, commit, x, y) ->
|
|
||||||
r = @r
|
|
||||||
options = @options
|
|
||||||
anchor = r.circle(x, y, 10).attr(
|
|
||||||
fill: "#000"
|
|
||||||
opacity: 0
|
|
||||||
cursor: "pointer"
|
|
||||||
).click(->
|
|
||||||
window.open options.commit_url.replace("%s", commit.id), "_blank"
|
|
||||||
).hover(->
|
|
||||||
@tooltip = r.commitTooltip(x + 5, y, commit)
|
|
||||||
top.push @tooltip.insertBefore(this)
|
|
||||||
, ->
|
|
||||||
@tooltip and @tooltip.remove() and delete @tooltip
|
|
||||||
)
|
|
||||||
top.push anchor
|
|
||||||
|
|
||||||
drawDot: (x, y, commit) ->
|
|
||||||
r = @r
|
|
||||||
r.circle(x, y, 3).attr(
|
|
||||||
fill: @colors[commit.space]
|
|
||||||
stroke: "none"
|
|
||||||
)
|
|
||||||
r.rect(@offsetX + @unitSpace * @mspace + 10, y - 10, 20, 20).attr(
|
|
||||||
fill: "url(#{commit.author.icon})"
|
|
||||||
stroke: @colors[commit.space]
|
|
||||||
"stroke-width": 2
|
|
||||||
)
|
|
||||||
r.text(@offsetX + @unitSpace * @mspace + 35, y, commit.message.split("\n")[0]).attr(
|
|
||||||
"text-anchor": "start"
|
|
||||||
font: "14px Monaco, monospace"
|
|
||||||
)
|
|
||||||
|
|
||||||
drawLines: (x, y, commit) ->
|
|
||||||
r = @r
|
|
||||||
for parent, i in commit.parents
|
|
||||||
parentCommit = @preparedCommits[parent[0]]
|
|
||||||
parentY = @offsetY + @unitTime * parentCommit.time
|
|
||||||
parentX1 = @offsetX + @unitSpace * (@mspace - parentCommit.space)
|
|
||||||
parentX2 = @offsetX + @unitSpace * (@mspace - parent[1])
|
|
||||||
|
|
||||||
# Set line color
|
|
||||||
if parentCommit.space <= commit.space
|
|
||||||
color = @colors[commit.space]
|
|
||||||
|
|
||||||
else
|
|
||||||
color = @colors[parentCommit.space]
|
|
||||||
|
|
||||||
# Build line shape
|
|
||||||
if parent[1] is commit.space
|
|
||||||
offset = [0, 5]
|
|
||||||
arrow = "l-2,5,4,0,-2,-5,0,5"
|
|
||||||
|
|
||||||
else if parent[1] < commit.space
|
|
||||||
offset = [3, 3]
|
|
||||||
arrow = "l5,0,-2,4,-3,-4,4,2"
|
|
||||||
|
|
||||||
else
|
|
||||||
offset = [-3, 3]
|
|
||||||
arrow = "l-5,0,2,4,3,-4,-4,2"
|
|
||||||
|
|
||||||
# Start point
|
|
||||||
route = ["M", x + offset[0], y + offset[1]]
|
|
||||||
|
|
||||||
# Add arrow if not first parent
|
|
||||||
if i > 0
|
|
||||||
route.push(arrow)
|
|
||||||
|
|
||||||
# Circumvent if overlap
|
|
||||||
if commit.space isnt parentCommit.space or commit.space isnt parent[1]
|
|
||||||
route.push(
|
|
||||||
"L", parentX2, y + 10,
|
|
||||||
"L", parentX2, parentY - 5,
|
|
||||||
)
|
|
||||||
|
|
||||||
# End point
|
|
||||||
route.push("L", parentX1, parentY)
|
|
||||||
|
|
||||||
r
|
|
||||||
.path(route)
|
|
||||||
.attr(
|
|
||||||
stroke: color
|
|
||||||
"stroke-width": 2)
|
|
||||||
|
|
||||||
markCommit: (x, y, commit, graphHeight) ->
|
|
||||||
if commit.id is @options.commit_id
|
|
||||||
r = @r
|
|
||||||
r.path(["M", x + 5, y, "L", x + 15, y + 4, "L", x + 15, y - 4, "Z"]).attr(
|
|
||||||
fill: "#000"
|
|
||||||
"fill-opacity": .5
|
|
||||||
stroke: "none"
|
|
||||||
)
|
|
||||||
# Displayed in the center
|
|
||||||
@element.scrollTop(y - graphHeight / 2)
|
|
||||||
|
|
||||||
Raphael::commitTooltip = (x, y, commit) ->
|
|
||||||
boxWidth = 300
|
|
||||||
boxHeight = 200
|
|
||||||
icon = @image(commit.author.icon, x, y, 20, 20)
|
|
||||||
nameText = @text(x + 25, y + 10, commit.author.name)
|
|
||||||
idText = @text(x, y + 35, commit.id)
|
|
||||||
messageText = @text(x, y + 50, commit.message)
|
|
||||||
textSet = @set(icon, nameText, idText, messageText).attr(
|
|
||||||
"text-anchor": "start"
|
|
||||||
font: "12px Monaco, monospace"
|
|
||||||
)
|
|
||||||
nameText.attr(
|
|
||||||
font: "14px Arial"
|
|
||||||
"font-weight": "bold"
|
|
||||||
)
|
|
||||||
|
|
||||||
idText.attr fill: "#AAA"
|
|
||||||
@textWrap messageText, boxWidth - 50
|
|
||||||
rect = @rect(x - 10, y - 10, boxWidth, 100, 4).attr(
|
|
||||||
fill: "#FFF"
|
|
||||||
stroke: "#000"
|
|
||||||
"stroke-linecap": "round"
|
|
||||||
"stroke-width": 2
|
|
||||||
)
|
|
||||||
tooltip = @set(rect, textSet)
|
|
||||||
rect.attr(
|
|
||||||
height: tooltip.getBBox().height + 10
|
|
||||||
width: tooltip.getBBox().width + 10
|
|
||||||
)
|
|
||||||
|
|
||||||
tooltip.transform ["t", 20, 20]
|
|
||||||
tooltip
|
|
||||||
|
|
||||||
Raphael::textWrap = (t, width) ->
|
|
||||||
content = t.attr("text")
|
|
||||||
abc = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
|
|
||||||
t.attr text: abc
|
|
||||||
letterWidth = t.getBBox().width / abc.length
|
|
||||||
t.attr text: content
|
|
||||||
words = content.split(" ")
|
|
||||||
x = 0
|
|
||||||
s = []
|
|
||||||
|
|
||||||
for word in words
|
|
||||||
if x + (word.length * letterWidth) > width
|
|
||||||
s.push "\n"
|
|
||||||
x = 0
|
|
||||||
x += word.length * letterWidth
|
|
||||||
s.push word + " "
|
|
||||||
|
|
||||||
t.attr text: s.join("")
|
|
||||||
b = t.getBBox()
|
|
||||||
h = Math.abs(b.y2) - Math.abs(b.y) + 1
|
|
||||||
t.attr y: b.y + h
|
|
||||||
|
|
||||||
@BranchGraph = BranchGraph
|
|
|
@ -1,7 +0,0 @@
|
||||||
class CommitFile
|
|
||||||
|
|
||||||
constructor: (file) ->
|
|
||||||
if $('.image', file).length
|
|
||||||
new ImageFile(file)
|
|
||||||
|
|
||||||
this.CommitFile = CommitFile
|
|
|
@ -1,128 +0,0 @@
|
||||||
class ImageFile
|
|
||||||
|
|
||||||
# Width where images must fits in, for 2-up this gets divided by 2
|
|
||||||
@availWidth = 900
|
|
||||||
@viewModes = ['two-up', 'swipe']
|
|
||||||
|
|
||||||
constructor: (@file) ->
|
|
||||||
# Determine if old and new file has same dimensions, if not show 'two-up' view
|
|
||||||
this.requestImageInfo $('.two-up.view .frame.deleted img', @file), (deletedWidth, deletedHeight) =>
|
|
||||||
this.requestImageInfo $('.two-up.view .frame.added img', @file), (width, height) =>
|
|
||||||
if width == deletedWidth && height == deletedHeight
|
|
||||||
this.initViewModes()
|
|
||||||
else
|
|
||||||
this.initView('two-up')
|
|
||||||
|
|
||||||
initViewModes: ->
|
|
||||||
viewMode = ImageFile.viewModes[0]
|
|
||||||
|
|
||||||
$('.view-modes', @file).removeClass 'hide'
|
|
||||||
$('.view-modes-menu', @file).on 'click', 'li', (event) =>
|
|
||||||
unless $(event.currentTarget).hasClass('active')
|
|
||||||
this.activateViewMode(event.currentTarget.className)
|
|
||||||
|
|
||||||
this.activateViewMode(viewMode)
|
|
||||||
|
|
||||||
activateViewMode: (viewMode) ->
|
|
||||||
$('.view-modes-menu li', @file)
|
|
||||||
.removeClass('active')
|
|
||||||
.filter(".#{viewMode}").addClass 'active'
|
|
||||||
$(".view:visible:not(.#{viewMode})", @file).fadeOut 200, =>
|
|
||||||
$(".view.#{viewMode}", @file).fadeIn(200)
|
|
||||||
this.initView viewMode
|
|
||||||
|
|
||||||
initView: (viewMode) ->
|
|
||||||
this.views[viewMode].call(this)
|
|
||||||
|
|
||||||
prepareFrames = (view) ->
|
|
||||||
maxWidth = 0
|
|
||||||
maxHeight = 0
|
|
||||||
$('.frame', view).each (index, frame) =>
|
|
||||||
width = $(frame).width()
|
|
||||||
height = $(frame).height()
|
|
||||||
maxWidth = if width > maxWidth then width else maxWidth
|
|
||||||
maxHeight = if height > maxHeight then height else maxHeight
|
|
||||||
.css
|
|
||||||
width: maxWidth
|
|
||||||
height: maxHeight
|
|
||||||
|
|
||||||
[maxWidth, maxHeight]
|
|
||||||
|
|
||||||
views:
|
|
||||||
'two-up': ->
|
|
||||||
$('.two-up.view .wrap', @file).each (index, wrap) =>
|
|
||||||
$('img', wrap).each ->
|
|
||||||
currentWidth = $(this).width()
|
|
||||||
if currentWidth > ImageFile.availWidth / 2
|
|
||||||
$(this).width ImageFile.availWidth / 2
|
|
||||||
|
|
||||||
this.requestImageInfo $('img', wrap), (width, height) ->
|
|
||||||
$('.image-info .meta-width', wrap).text "#{width}px"
|
|
||||||
$('.image-info .meta-height', wrap).text "#{height}px"
|
|
||||||
$('.image-info', wrap).removeClass('hide')
|
|
||||||
|
|
||||||
'swipe': ->
|
|
||||||
maxWidth = 0
|
|
||||||
maxHeight = 0
|
|
||||||
|
|
||||||
$('.swipe.view', @file).each (index, view) =>
|
|
||||||
|
|
||||||
[maxWidth, maxHeight] = prepareFrames(view)
|
|
||||||
|
|
||||||
$('.swipe-frame', view).css
|
|
||||||
width: maxWidth + 16
|
|
||||||
height: maxHeight + 28
|
|
||||||
|
|
||||||
$('.swipe-wrap', view).css
|
|
||||||
width: maxWidth + 1
|
|
||||||
height: maxHeight + 2
|
|
||||||
|
|
||||||
$('.swipe-bar', view).css
|
|
||||||
left: 0
|
|
||||||
.draggable
|
|
||||||
axis: 'x'
|
|
||||||
containment: 'parent'
|
|
||||||
drag: (event) ->
|
|
||||||
$('.swipe-wrap', view).width (maxWidth + 1) - $(this).position().left
|
|
||||||
stop: (event) ->
|
|
||||||
$('.swipe-wrap', view).width (maxWidth + 1) - $(this).position().left
|
|
||||||
|
|
||||||
'onion-skin': ->
|
|
||||||
maxWidth = 0
|
|
||||||
maxHeight = 0
|
|
||||||
|
|
||||||
dragTrackWidth = $('.drag-track', @file).width() - $('.dragger', @file).width()
|
|
||||||
|
|
||||||
$('.onion-skin.view', @file).each (index, view) =>
|
|
||||||
|
|
||||||
[maxWidth, maxHeight] = prepareFrames(view)
|
|
||||||
|
|
||||||
$('.onion-skin-frame', view).css
|
|
||||||
width: maxWidth + 16
|
|
||||||
height: maxHeight + 28
|
|
||||||
|
|
||||||
$('.swipe-wrap', view).css
|
|
||||||
width: maxWidth + 1
|
|
||||||
height: maxHeight + 2
|
|
||||||
|
|
||||||
$('.dragger', view).css
|
|
||||||
left: dragTrackWidth
|
|
||||||
.draggable
|
|
||||||
axis: 'x'
|
|
||||||
containment: 'parent'
|
|
||||||
drag: (event) ->
|
|
||||||
$('.frame.added', view).css('opacity', $(this).position().left / dragTrackWidth)
|
|
||||||
stop: (event) ->
|
|
||||||
$('.frame.added', view).css('opacity', $(this).position().left / dragTrackWidth)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
requestImageInfo: (img, callback) ->
|
|
||||||
domImg = img.get(0)
|
|
||||||
if domImg.complete
|
|
||||||
callback.call(this, domImg.naturalWidth, domImg.naturalHeight)
|
|
||||||
else
|
|
||||||
img.on 'load', =>
|
|
||||||
callback.call(this, domImg.naturalWidth, domImg.naturalHeight)
|
|
||||||
|
|
||||||
this.ImageFile = ImageFile
|
|
59
app/assets/javascripts/commits.js
Normal file
|
@ -0,0 +1,59 @@
|
||||||
|
var CommitsList = {
|
||||||
|
ref:null,
|
||||||
|
limit:0,
|
||||||
|
offset:0,
|
||||||
|
disable:false,
|
||||||
|
|
||||||
|
init:
|
||||||
|
function(ref, limit) {
|
||||||
|
$(".day-commits-table li.commit").live('click', function(e){
|
||||||
|
if(e.target.nodeName != "A") {
|
||||||
|
location.href = $(this).attr("url");
|
||||||
|
e.stopPropagation();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
this.ref=ref;
|
||||||
|
this.limit=limit;
|
||||||
|
this.offset=limit;
|
||||||
|
this.initLoadMore();
|
||||||
|
$('.loading').show();
|
||||||
|
},
|
||||||
|
|
||||||
|
getOld:
|
||||||
|
function() {
|
||||||
|
$('.loading').show();
|
||||||
|
$.ajax({
|
||||||
|
type: "GET",
|
||||||
|
url: location.href,
|
||||||
|
data: "limit=" + this.limit + "&offset=" + this.offset + "&ref=" + this.ref,
|
||||||
|
complete: function(){ $('.loading').hide()},
|
||||||
|
dataType: "script"});
|
||||||
|
},
|
||||||
|
|
||||||
|
append:
|
||||||
|
function(count, html) {
|
||||||
|
$("#commits_list").append(html);
|
||||||
|
if(count > 0) {
|
||||||
|
this.offset += count;
|
||||||
|
} else {
|
||||||
|
this.disable = true;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
initLoadMore:
|
||||||
|
function() {
|
||||||
|
$(document).endlessScroll({
|
||||||
|
bottomPixels: 400,
|
||||||
|
fireDelay: 1000,
|
||||||
|
fireOnce:true,
|
||||||
|
ceaseFire: function() {
|
||||||
|
return CommitsList.disable;
|
||||||
|
},
|
||||||
|
callback: function(i) {
|
||||||
|
CommitsList.getOld();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,54 +0,0 @@
|
||||||
class CommitsList
|
|
||||||
@data =
|
|
||||||
ref: null
|
|
||||||
limit: 0
|
|
||||||
offset: 0
|
|
||||||
@disable = false
|
|
||||||
|
|
||||||
@showProgress: ->
|
|
||||||
$('.loading').show()
|
|
||||||
|
|
||||||
@hideProgress: ->
|
|
||||||
$('.loading').hide()
|
|
||||||
|
|
||||||
@init: (ref, limit) ->
|
|
||||||
$(".day-commits-table li.commit").live 'click', (event) ->
|
|
||||||
if event.target.nodeName != "A"
|
|
||||||
location.href = $(this).attr("url")
|
|
||||||
e.stopPropagation()
|
|
||||||
return false
|
|
||||||
|
|
||||||
@data.ref = ref
|
|
||||||
@data.limit = limit
|
|
||||||
@data.offset = limit
|
|
||||||
|
|
||||||
this.initLoadMore()
|
|
||||||
this.showProgress();
|
|
||||||
|
|
||||||
@getOld: ->
|
|
||||||
this.showProgress()
|
|
||||||
$.ajax
|
|
||||||
type: "GET"
|
|
||||||
url: location.href
|
|
||||||
data: @data
|
|
||||||
complete: this.hideProgress
|
|
||||||
dataType: "script"
|
|
||||||
|
|
||||||
@append: (count, html) ->
|
|
||||||
$("#commits-list").append(html)
|
|
||||||
if count > 0
|
|
||||||
@data.offset += count
|
|
||||||
else
|
|
||||||
@disable = true
|
|
||||||
|
|
||||||
@initLoadMore: ->
|
|
||||||
$(document).endlessScroll
|
|
||||||
bottomPixels: 400
|
|
||||||
fireDelay: 1000
|
|
||||||
fireOnce: true
|
|
||||||
ceaseFire: =>
|
|
||||||
@disable
|
|
||||||
callback: =>
|
|
||||||
this.getOld()
|
|
||||||
|
|
||||||
this.CommitsList = CommitsList
|
|
|
@ -1,39 +0,0 @@
|
||||||
window.dashboardPage = ->
|
|
||||||
Pager.init 20, true
|
|
||||||
initSidebarTab()
|
|
||||||
$(".event_filter_link").bind "click", (event) ->
|
|
||||||
event.preventDefault()
|
|
||||||
toggleFilter $(this)
|
|
||||||
reloadActivities()
|
|
||||||
|
|
||||||
reloadActivities = ->
|
|
||||||
$(".content_list").html ''
|
|
||||||
Pager.init 20, true
|
|
||||||
|
|
||||||
toggleFilter = (sender) ->
|
|
||||||
sender.parent().toggleClass "inactive"
|
|
||||||
event_filters = $.cookie("event_filter")
|
|
||||||
filter = sender.attr("id").split("_")[0]
|
|
||||||
if event_filters
|
|
||||||
event_filters = event_filters.split(",")
|
|
||||||
else
|
|
||||||
event_filters = new Array()
|
|
||||||
|
|
||||||
index = event_filters.indexOf(filter)
|
|
||||||
if index is -1
|
|
||||||
event_filters.push filter
|
|
||||||
else
|
|
||||||
event_filters.splice index, 1
|
|
||||||
|
|
||||||
$.cookie "event_filter", event_filters.join(",")
|
|
||||||
|
|
||||||
initSidebarTab = ->
|
|
||||||
key = "dashboard_sidebar_filter"
|
|
||||||
|
|
||||||
# store selection in cookie
|
|
||||||
$('.dash-sidebar-tabs a').on 'click', (e) ->
|
|
||||||
$.cookie(key, $(e.target).attr('id'))
|
|
||||||
|
|
||||||
# show tab from cookie
|
|
||||||
sidebar_filter = $.cookie(key)
|
|
||||||
$("#" + sidebar_filter).tab('show') if sidebar_filter
|
|
|
@ -1,7 +0,0 @@
|
||||||
Array.prototype.first = function() {
|
|
||||||
return this[0];
|
|
||||||
}
|
|
||||||
|
|
||||||
Array.prototype.last = function() {
|
|
||||||
return this[this.length-1];
|
|
||||||
}
|
|
|
@ -1,9 +0,0 @@
|
||||||
$.fn.showAndHide = ->
|
|
||||||
$(@).show().
|
|
||||||
delay(3000).
|
|
||||||
fadeOut()
|
|
||||||
|
|
||||||
$.fn.enableButton = ->
|
|
||||||
$(@).removeAttr('disabled').
|
|
||||||
removeClass('disabled')
|
|
||||||
|
|
|
@ -1,38 +1,52 @@
|
||||||
# Creates the variables for setting up GFM auto-completion
|
# Creates the variables for setting up GFM auto-completion
|
||||||
|
|
||||||
window.GitLab ?= {}
|
window.GitLab ?= {}
|
||||||
GitLab.GfmAutoComplete =
|
GitLab.GfmAutoComplete ?= {}
|
||||||
|
|
||||||
# Emoji
|
# Emoji
|
||||||
Emoji:
|
data = []
|
||||||
data: []
|
template = "<li data-value='${insert}'>${name} <img alt='${name}' height='20' src='${image}' width='20' /></li>"
|
||||||
template: '<li data-value="${insert}">${name} <img alt="${name}" height="20" src="${image}" width="20" /></li>'
|
GitLab.GfmAutoComplete.Emoji = {data, template}
|
||||||
|
|
||||||
# Team Members
|
# Team Members
|
||||||
Members:
|
data = []
|
||||||
data: []
|
url = '';
|
||||||
url: ''
|
params = {private_token: '', page: 1}
|
||||||
params:
|
GitLab.GfmAutoComplete.Members = {data, url, params}
|
||||||
private_token: ''
|
|
||||||
template: '<li data-value="${username}">${username} <small>${name}</small></li>'
|
|
||||||
|
|
||||||
# Add GFM auto-completion to all input fields, that accept GFM input.
|
# Add GFM auto-completion to all input fields, that accept GFM input.
|
||||||
setup: ->
|
GitLab.GfmAutoComplete.setup = ->
|
||||||
input = $('.js-gfm-input')
|
input = $('.js-gfm-input')
|
||||||
|
|
||||||
# Emoji
|
# Emoji
|
||||||
input.atWho ':',
|
input.atWho ':',
|
||||||
data: @Emoji.data
|
data: GitLab.GfmAutoComplete.Emoji.data,
|
||||||
tpl: @Emoji.template
|
tpl: GitLab.GfmAutoComplete.Emoji.template
|
||||||
|
|
||||||
# Team Members
|
# Team Members
|
||||||
input.atWho '@',
|
input.atWho '@', (query, callback) ->
|
||||||
tpl: @Members.template
|
(getMoreMembers = ->
|
||||||
callback: (query, callback) =>
|
$.getJSON(GitLab.GfmAutoComplete.Members.url, GitLab.GfmAutoComplete.Members.params)
|
||||||
request_params = $.extend({}, @Members.params, query: query)
|
.success (members) ->
|
||||||
$.getJSON(@Members.url, request_params).done (members) =>
|
# pick the data we need
|
||||||
new_members_data = $.map(members, (m) ->
|
newMembersData = $.map(members, (m) -> m.name )
|
||||||
username: m.username,
|
|
||||||
name: m.name
|
|
||||||
)
|
|
||||||
callback(new_members_data)
|
|
||||||
|
|
||||||
|
# add the new page of data to the rest
|
||||||
|
$.merge(GitLab.GfmAutoComplete.Members.data, newMembersData)
|
||||||
|
|
||||||
|
# show the pop-up with a copy of the current data
|
||||||
|
callback(GitLab.GfmAutoComplete.Members.data[..])
|
||||||
|
|
||||||
|
# are we past the last page?
|
||||||
|
if newMembersData.length is 0
|
||||||
|
# set static data and stop callbacks
|
||||||
|
input.atWho '@',
|
||||||
|
data: GitLab.GfmAutoComplete.Members.data
|
||||||
|
callback: null
|
||||||
|
else
|
||||||
|
# get next page
|
||||||
|
getMoreMembers()
|
||||||
|
|
||||||
|
# so the next request gets the next page
|
||||||
|
GitLab.GfmAutoComplete.Members.params.page += 1
|
||||||
|
).call()
|
||||||
|
|
|
@ -1,3 +1,43 @@
|
||||||
|
function switchToNewIssue(){
|
||||||
|
$(".issues_content").hide("fade", { direction: "left" }, 150, function(){
|
||||||
|
$('select#issue_assignee_id').chosen();
|
||||||
|
$('select#issue_milestone_id').chosen();
|
||||||
|
$("#new_issue_dialog").show("fade", { direction: "right" }, 150);
|
||||||
|
$('.top-tabs .add_new').hide();
|
||||||
|
disableButtonIfEmptyField("#issue_title", ".save-btn");
|
||||||
|
GitLab.GfmAutoComplete.setup();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function switchToEditIssue(){
|
||||||
|
$(".issues_content").hide("fade", { direction: "left" }, 150, function(){
|
||||||
|
$('select#issue_assignee_id').chosen();
|
||||||
|
$('select#issue_milestone_id').chosen();
|
||||||
|
$("#edit_issue_dialog").show("fade", { direction: "right" }, 150);
|
||||||
|
$('.add_new').hide();
|
||||||
|
disableButtonIfEmptyField("#issue_title", ".save-btn");
|
||||||
|
GitLab.GfmAutoComplete.setup();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function switchFromNewIssue(){
|
||||||
|
backToIssues();
|
||||||
|
}
|
||||||
|
|
||||||
|
function switchFromEditIssue(){
|
||||||
|
backToIssues();
|
||||||
|
}
|
||||||
|
|
||||||
|
function backToIssues(){
|
||||||
|
$("#edit_issue_dialog, #new_issue_dialog").hide("fade", { direction: "right" }, 150, function(){
|
||||||
|
$(".issues_content").show("fade", { direction: "left" }, 150, function() {
|
||||||
|
$("#edit_issue_dialog").html("");
|
||||||
|
$("#new_issue_dialog").html("");
|
||||||
|
$('.add_new').show();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
function initIssuesSearch() {
|
function initIssuesSearch() {
|
||||||
var href = $('#issue_search_form').attr('action');
|
var href = $('#issue_search_form').attr('action');
|
||||||
var last_terms = '';
|
var last_terms = '';
|
||||||
|
@ -11,7 +51,7 @@ function initIssuesSearch() {
|
||||||
last_terms = terms;
|
last_terms = terms;
|
||||||
|
|
||||||
if (terms.length >= 2 || terms.length == 0) {
|
if (terms.length >= 2 || terms.length == 0) {
|
||||||
$.get(href, { 'status': status, 'terms': terms, 'milestone_id': milestone_id }, function(response) {
|
$.get(href, { 'f': status, 'terms': terms, 'milestone_id': milestone_id }, function(response) {
|
||||||
$('#issues-table').html(response);
|
$('#issues-table').html(response);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -36,15 +76,23 @@ function issuesPage(){
|
||||||
$(this).closest("form").submit();
|
$(this).closest("form").submit();
|
||||||
});
|
});
|
||||||
|
|
||||||
$('body').on('ajax:success', '.close_issue, .reopen_issue', function(){
|
$("#new_issue_link").click(function(){
|
||||||
|
updateNewIssueURL();
|
||||||
|
});
|
||||||
|
|
||||||
|
$('body').on('ajax:success', '.close_issue, .reopen_issue, #new_issue', function(){
|
||||||
var t = $(this),
|
var t = $(this),
|
||||||
totalIssues,
|
totalIssues,
|
||||||
reopen = t.hasClass('reopen_issue');
|
reopen = t.hasClass('reopen_issue'),
|
||||||
$('.issue_counter').each(function(){
|
newIssue = false;
|
||||||
|
if( this.id == 'new_issue' ){
|
||||||
|
newIssue = true;
|
||||||
|
}
|
||||||
|
$('.issue_counter, #new_issue').each(function(){
|
||||||
var issue = $(this);
|
var issue = $(this);
|
||||||
totalIssues = parseInt( $(this).html(), 10 );
|
totalIssues = parseInt( $(this).html(), 10 );
|
||||||
|
|
||||||
if( reopen && issue.closest('.main_menu').length ){
|
if( newIssue || ( reopen && issue.closest('.main_menu').length ) ){
|
||||||
$(this).html( totalIssues+1 );
|
$(this).html( totalIssues+1 );
|
||||||
}else {
|
}else {
|
||||||
$(this).html( totalIssues-1 );
|
$(this).html( totalIssues-1 );
|
||||||
|
@ -78,3 +126,20 @@ function issuesCheckChanged() {
|
||||||
$('.issues_filters').show();
|
$('.issues_filters').show();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function updateNewIssueURL(){
|
||||||
|
var new_issue_link = $("#new_issue_link");
|
||||||
|
var milestone_id = $("#milestone_id").val();
|
||||||
|
var assignee_id = $("#assignee_id").val();
|
||||||
|
var new_href = "";
|
||||||
|
if(milestone_id){
|
||||||
|
new_href = "issue[milestone_id]=" + milestone_id + "&";
|
||||||
|
}
|
||||||
|
if(assignee_id){
|
||||||
|
new_href = new_href + "issue[assignee_id]=" + assignee_id;
|
||||||
|
}
|
||||||
|
if(new_href.length){
|
||||||
|
new_href = new_issue_link.attr("href") + "?" + new_href;
|
||||||
|
new_issue_link.attr("href", new_href);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
|
@ -1,181 +0,0 @@
|
||||||
/**
|
|
||||||
* Timeago is a jQuery plugin that makes it easy to support automatically
|
|
||||||
* updating fuzzy timestamps (e.g. "4 minutes ago" or "about 1 day ago").
|
|
||||||
*
|
|
||||||
* @name timeago
|
|
||||||
* @version 1.1.0
|
|
||||||
* @requires jQuery v1.2.3+
|
|
||||||
* @author Ryan McGeary
|
|
||||||
* @license MIT License - http://www.opensource.org/licenses/mit-license.php
|
|
||||||
*
|
|
||||||
* For usage and examples, visit:
|
|
||||||
* http://timeago.yarp.com/
|
|
||||||
*
|
|
||||||
* Copyright (c) 2008-2013, Ryan McGeary (ryan -[at]- mcgeary [*dot*] org)
|
|
||||||
*/
|
|
||||||
|
|
||||||
(function (factory) {
|
|
||||||
if (typeof define === 'function' && define.amd) {
|
|
||||||
// AMD. Register as an anonymous module.
|
|
||||||
define(['jquery'], factory);
|
|
||||||
} else {
|
|
||||||
// Browser globals
|
|
||||||
factory(jQuery);
|
|
||||||
}
|
|
||||||
}(function ($) {
|
|
||||||
$.timeago = function(timestamp) {
|
|
||||||
if (timestamp instanceof Date) {
|
|
||||||
return inWords(timestamp);
|
|
||||||
} else if (typeof timestamp === "string") {
|
|
||||||
return inWords($.timeago.parse(timestamp));
|
|
||||||
} else if (typeof timestamp === "number") {
|
|
||||||
return inWords(new Date(timestamp));
|
|
||||||
} else {
|
|
||||||
return inWords($.timeago.datetime(timestamp));
|
|
||||||
}
|
|
||||||
};
|
|
||||||
var $t = $.timeago;
|
|
||||||
|
|
||||||
$.extend($.timeago, {
|
|
||||||
settings: {
|
|
||||||
refreshMillis: 60000,
|
|
||||||
allowFuture: false,
|
|
||||||
strings: {
|
|
||||||
prefixAgo: null,
|
|
||||||
prefixFromNow: null,
|
|
||||||
suffixAgo: "ago",
|
|
||||||
suffixFromNow: "from now",
|
|
||||||
seconds: "less than a minute",
|
|
||||||
minute: "about a minute",
|
|
||||||
minutes: "%d minutes",
|
|
||||||
hour: "about an hour",
|
|
||||||
hours: "about %d hours",
|
|
||||||
day: "a day",
|
|
||||||
days: "%d days",
|
|
||||||
month: "about a month",
|
|
||||||
months: "%d months",
|
|
||||||
year: "about a year",
|
|
||||||
years: "%d years",
|
|
||||||
wordSeparator: " ",
|
|
||||||
numbers: []
|
|
||||||
}
|
|
||||||
},
|
|
||||||
inWords: function(distanceMillis) {
|
|
||||||
var $l = this.settings.strings;
|
|
||||||
var prefix = $l.prefixAgo;
|
|
||||||
var suffix = $l.suffixAgo;
|
|
||||||
if (this.settings.allowFuture) {
|
|
||||||
if (distanceMillis < 0) {
|
|
||||||
prefix = $l.prefixFromNow;
|
|
||||||
suffix = $l.suffixFromNow;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
var seconds = Math.abs(distanceMillis) / 1000;
|
|
||||||
var minutes = seconds / 60;
|
|
||||||
var hours = minutes / 60;
|
|
||||||
var days = hours / 24;
|
|
||||||
var years = days / 365;
|
|
||||||
|
|
||||||
function substitute(stringOrFunction, number) {
|
|
||||||
var string = $.isFunction(stringOrFunction) ? stringOrFunction(number, distanceMillis) : stringOrFunction;
|
|
||||||
var value = ($l.numbers && $l.numbers[number]) || number;
|
|
||||||
return string.replace(/%d/i, value);
|
|
||||||
}
|
|
||||||
|
|
||||||
var words = seconds < 45 && substitute($l.seconds, Math.round(seconds)) ||
|
|
||||||
seconds < 90 && substitute($l.minute, 1) ||
|
|
||||||
minutes < 45 && substitute($l.minutes, Math.round(minutes)) ||
|
|
||||||
minutes < 90 && substitute($l.hour, 1) ||
|
|
||||||
hours < 24 && substitute($l.hours, Math.round(hours)) ||
|
|
||||||
hours < 42 && substitute($l.day, 1) ||
|
|
||||||
days < 30 && substitute($l.days, Math.round(days)) ||
|
|
||||||
days < 45 && substitute($l.month, 1) ||
|
|
||||||
days < 365 && substitute($l.months, Math.round(days / 30)) ||
|
|
||||||
years < 1.5 && substitute($l.year, 1) ||
|
|
||||||
substitute($l.years, Math.round(years));
|
|
||||||
|
|
||||||
var separator = $l.wordSeparator || "";
|
|
||||||
if ($l.wordSeparator === undefined) { separator = " "; }
|
|
||||||
return $.trim([prefix, words, suffix].join(separator));
|
|
||||||
},
|
|
||||||
parse: function(iso8601) {
|
|
||||||
var s = $.trim(iso8601);
|
|
||||||
s = s.replace(/\.\d+/,""); // remove milliseconds
|
|
||||||
s = s.replace(/-/,"/").replace(/-/,"/");
|
|
||||||
s = s.replace(/T/," ").replace(/Z/," UTC");
|
|
||||||
s = s.replace(/([\+\-]\d\d)\:?(\d\d)/," $1$2"); // -04:00 -> -0400
|
|
||||||
return new Date(s);
|
|
||||||
},
|
|
||||||
datetime: function(elem) {
|
|
||||||
var iso8601 = $t.isTime(elem) ? $(elem).attr("datetime") : $(elem).attr("title");
|
|
||||||
return $t.parse(iso8601);
|
|
||||||
},
|
|
||||||
isTime: function(elem) {
|
|
||||||
// jQuery's `is()` doesn't play well with HTML5 in IE
|
|
||||||
return $(elem).get(0).tagName.toLowerCase() === "time"; // $(elem).is("time");
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
// functions that can be called via $(el).timeago('action')
|
|
||||||
// init is default when no action is given
|
|
||||||
// functions are called with context of a single element
|
|
||||||
var functions = {
|
|
||||||
init: function(){
|
|
||||||
var refresh_el = $.proxy(refresh, this);
|
|
||||||
refresh_el();
|
|
||||||
var $s = $t.settings;
|
|
||||||
if ($s.refreshMillis > 0) {
|
|
||||||
setInterval(refresh_el, $s.refreshMillis);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
update: function(time){
|
|
||||||
$(this).data('timeago', { datetime: $t.parse(time) });
|
|
||||||
refresh.apply(this);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
$.fn.timeago = function(action, options) {
|
|
||||||
var fn = action ? functions[action] : functions.init;
|
|
||||||
if(!fn){
|
|
||||||
throw new Error("Unknown function name '"+ action +"' for timeago");
|
|
||||||
}
|
|
||||||
// each over objects here and call the requested function
|
|
||||||
this.each(function(){
|
|
||||||
fn.call(this, options);
|
|
||||||
});
|
|
||||||
return this;
|
|
||||||
};
|
|
||||||
|
|
||||||
function refresh() {
|
|
||||||
var data = prepareData(this);
|
|
||||||
if (!isNaN(data.datetime)) {
|
|
||||||
$(this).text(inWords(data.datetime));
|
|
||||||
}
|
|
||||||
return this;
|
|
||||||
}
|
|
||||||
|
|
||||||
function prepareData(element) {
|
|
||||||
element = $(element);
|
|
||||||
if (!element.data("timeago")) {
|
|
||||||
element.data("timeago", { datetime: $t.datetime(element) });
|
|
||||||
var text = $.trim(element.text());
|
|
||||||
if (text.length > 0 && !($t.isTime(element) && element.attr("title"))) {
|
|
||||||
element.attr("title", text);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return element.data("timeago");
|
|
||||||
}
|
|
||||||
|
|
||||||
function inWords(date) {
|
|
||||||
return $t.inWords(distance(date));
|
|
||||||
}
|
|
||||||
|
|
||||||
function distance(date) {
|
|
||||||
return (new Date().getTime() - date.getTime());
|
|
||||||
}
|
|
||||||
|
|
||||||
// fix for IE6 suckage
|
|
||||||
document.createElement("abbr");
|
|
||||||
document.createElement("time");
|
|
||||||
}));
|
|
|
@ -1,211 +0,0 @@
|
||||||
function md5 (str) {
|
|
||||||
// http://kevin.vanzonneveld.net
|
|
||||||
// + original by: Webtoolkit.info (http://www.webtoolkit.info/)
|
|
||||||
// + namespaced by: Michael White (http://getsprink.com)
|
|
||||||
// + tweaked by: Jack
|
|
||||||
// + improved by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
|
|
||||||
// + input by: Brett Zamir (http://brett-zamir.me)
|
|
||||||
// + bugfixed by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
|
|
||||||
// - depends on: utf8_encode
|
|
||||||
// * example 1: md5('Kevin van Zonneveld');
|
|
||||||
// * returns 1: '6e658d4bfcb59cc13f96c14450ac40b9'
|
|
||||||
var xl;
|
|
||||||
|
|
||||||
var rotateLeft = function (lValue, iShiftBits) {
|
|
||||||
return (lValue << iShiftBits) | (lValue >>> (32 - iShiftBits));
|
|
||||||
};
|
|
||||||
|
|
||||||
var addUnsigned = function (lX, lY) {
|
|
||||||
var lX4, lY4, lX8, lY8, lResult;
|
|
||||||
lX8 = (lX & 0x80000000);
|
|
||||||
lY8 = (lY & 0x80000000);
|
|
||||||
lX4 = (lX & 0x40000000);
|
|
||||||
lY4 = (lY & 0x40000000);
|
|
||||||
lResult = (lX & 0x3FFFFFFF) + (lY & 0x3FFFFFFF);
|
|
||||||
if (lX4 & lY4) {
|
|
||||||
return (lResult ^ 0x80000000 ^ lX8 ^ lY8);
|
|
||||||
}
|
|
||||||
if (lX4 | lY4) {
|
|
||||||
if (lResult & 0x40000000) {
|
|
||||||
return (lResult ^ 0xC0000000 ^ lX8 ^ lY8);
|
|
||||||
} else {
|
|
||||||
return (lResult ^ 0x40000000 ^ lX8 ^ lY8);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
return (lResult ^ lX8 ^ lY8);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
var _F = function (x, y, z) {
|
|
||||||
return (x & y) | ((~x) & z);
|
|
||||||
};
|
|
||||||
var _G = function (x, y, z) {
|
|
||||||
return (x & z) | (y & (~z));
|
|
||||||
};
|
|
||||||
var _H = function (x, y, z) {
|
|
||||||
return (x ^ y ^ z);
|
|
||||||
};
|
|
||||||
var _I = function (x, y, z) {
|
|
||||||
return (y ^ (x | (~z)));
|
|
||||||
};
|
|
||||||
|
|
||||||
var _FF = function (a, b, c, d, x, s, ac) {
|
|
||||||
a = addUnsigned(a, addUnsigned(addUnsigned(_F(b, c, d), x), ac));
|
|
||||||
return addUnsigned(rotateLeft(a, s), b);
|
|
||||||
};
|
|
||||||
|
|
||||||
var _GG = function (a, b, c, d, x, s, ac) {
|
|
||||||
a = addUnsigned(a, addUnsigned(addUnsigned(_G(b, c, d), x), ac));
|
|
||||||
return addUnsigned(rotateLeft(a, s), b);
|
|
||||||
};
|
|
||||||
|
|
||||||
var _HH = function (a, b, c, d, x, s, ac) {
|
|
||||||
a = addUnsigned(a, addUnsigned(addUnsigned(_H(b, c, d), x), ac));
|
|
||||||
return addUnsigned(rotateLeft(a, s), b);
|
|
||||||
};
|
|
||||||
|
|
||||||
var _II = function (a, b, c, d, x, s, ac) {
|
|
||||||
a = addUnsigned(a, addUnsigned(addUnsigned(_I(b, c, d), x), ac));
|
|
||||||
return addUnsigned(rotateLeft(a, s), b);
|
|
||||||
};
|
|
||||||
|
|
||||||
var convertToWordArray = function (str) {
|
|
||||||
var lWordCount;
|
|
||||||
var lMessageLength = str.length;
|
|
||||||
var lNumberOfWords_temp1 = lMessageLength + 8;
|
|
||||||
var lNumberOfWords_temp2 = (lNumberOfWords_temp1 - (lNumberOfWords_temp1 % 64)) / 64;
|
|
||||||
var lNumberOfWords = (lNumberOfWords_temp2 + 1) * 16;
|
|
||||||
var lWordArray = new Array(lNumberOfWords - 1);
|
|
||||||
var lBytePosition = 0;
|
|
||||||
var lByteCount = 0;
|
|
||||||
while (lByteCount < lMessageLength) {
|
|
||||||
lWordCount = (lByteCount - (lByteCount % 4)) / 4;
|
|
||||||
lBytePosition = (lByteCount % 4) * 8;
|
|
||||||
lWordArray[lWordCount] = (lWordArray[lWordCount] | (str.charCodeAt(lByteCount) << lBytePosition));
|
|
||||||
lByteCount++;
|
|
||||||
}
|
|
||||||
lWordCount = (lByteCount - (lByteCount % 4)) / 4;
|
|
||||||
lBytePosition = (lByteCount % 4) * 8;
|
|
||||||
lWordArray[lWordCount] = lWordArray[lWordCount] | (0x80 << lBytePosition);
|
|
||||||
lWordArray[lNumberOfWords - 2] = lMessageLength << 3;
|
|
||||||
lWordArray[lNumberOfWords - 1] = lMessageLength >>> 29;
|
|
||||||
return lWordArray;
|
|
||||||
};
|
|
||||||
|
|
||||||
var wordToHex = function (lValue) {
|
|
||||||
var wordToHexValue = "",
|
|
||||||
wordToHexValue_temp = "",
|
|
||||||
lByte, lCount;
|
|
||||||
for (lCount = 0; lCount <= 3; lCount++) {
|
|
||||||
lByte = (lValue >>> (lCount * 8)) & 255;
|
|
||||||
wordToHexValue_temp = "0" + lByte.toString(16);
|
|
||||||
wordToHexValue = wordToHexValue + wordToHexValue_temp.substr(wordToHexValue_temp.length - 2, 2);
|
|
||||||
}
|
|
||||||
return wordToHexValue;
|
|
||||||
};
|
|
||||||
|
|
||||||
var x = [],
|
|
||||||
k, AA, BB, CC, DD, a, b, c, d, S11 = 7,
|
|
||||||
S12 = 12,
|
|
||||||
S13 = 17,
|
|
||||||
S14 = 22,
|
|
||||||
S21 = 5,
|
|
||||||
S22 = 9,
|
|
||||||
S23 = 14,
|
|
||||||
S24 = 20,
|
|
||||||
S31 = 4,
|
|
||||||
S32 = 11,
|
|
||||||
S33 = 16,
|
|
||||||
S34 = 23,
|
|
||||||
S41 = 6,
|
|
||||||
S42 = 10,
|
|
||||||
S43 = 15,
|
|
||||||
S44 = 21;
|
|
||||||
|
|
||||||
str = this.utf8_encode(str);
|
|
||||||
x = convertToWordArray(str);
|
|
||||||
a = 0x67452301;
|
|
||||||
b = 0xEFCDAB89;
|
|
||||||
c = 0x98BADCFE;
|
|
||||||
d = 0x10325476;
|
|
||||||
|
|
||||||
xl = x.length;
|
|
||||||
for (k = 0; k < xl; k += 16) {
|
|
||||||
AA = a;
|
|
||||||
BB = b;
|
|
||||||
CC = c;
|
|
||||||
DD = d;
|
|
||||||
a = _FF(a, b, c, d, x[k + 0], S11, 0xD76AA478);
|
|
||||||
d = _FF(d, a, b, c, x[k + 1], S12, 0xE8C7B756);
|
|
||||||
c = _FF(c, d, a, b, x[k + 2], S13, 0x242070DB);
|
|
||||||
b = _FF(b, c, d, a, x[k + 3], S14, 0xC1BDCEEE);
|
|
||||||
a = _FF(a, b, c, d, x[k + 4], S11, 0xF57C0FAF);
|
|
||||||
d = _FF(d, a, b, c, x[k + 5], S12, 0x4787C62A);
|
|
||||||
c = _FF(c, d, a, b, x[k + 6], S13, 0xA8304613);
|
|
||||||
b = _FF(b, c, d, a, x[k + 7], S14, 0xFD469501);
|
|
||||||
a = _FF(a, b, c, d, x[k + 8], S11, 0x698098D8);
|
|
||||||
d = _FF(d, a, b, c, x[k + 9], S12, 0x8B44F7AF);
|
|
||||||
c = _FF(c, d, a, b, x[k + 10], S13, 0xFFFF5BB1);
|
|
||||||
b = _FF(b, c, d, a, x[k + 11], S14, 0x895CD7BE);
|
|
||||||
a = _FF(a, b, c, d, x[k + 12], S11, 0x6B901122);
|
|
||||||
d = _FF(d, a, b, c, x[k + 13], S12, 0xFD987193);
|
|
||||||
c = _FF(c, d, a, b, x[k + 14], S13, 0xA679438E);
|
|
||||||
b = _FF(b, c, d, a, x[k + 15], S14, 0x49B40821);
|
|
||||||
a = _GG(a, b, c, d, x[k + 1], S21, 0xF61E2562);
|
|
||||||
d = _GG(d, a, b, c, x[k + 6], S22, 0xC040B340);
|
|
||||||
c = _GG(c, d, a, b, x[k + 11], S23, 0x265E5A51);
|
|
||||||
b = _GG(b, c, d, a, x[k + 0], S24, 0xE9B6C7AA);
|
|
||||||
a = _GG(a, b, c, d, x[k + 5], S21, 0xD62F105D);
|
|
||||||
d = _GG(d, a, b, c, x[k + 10], S22, 0x2441453);
|
|
||||||
c = _GG(c, d, a, b, x[k + 15], S23, 0xD8A1E681);
|
|
||||||
b = _GG(b, c, d, a, x[k + 4], S24, 0xE7D3FBC8);
|
|
||||||
a = _GG(a, b, c, d, x[k + 9], S21, 0x21E1CDE6);
|
|
||||||
d = _GG(d, a, b, c, x[k + 14], S22, 0xC33707D6);
|
|
||||||
c = _GG(c, d, a, b, x[k + 3], S23, 0xF4D50D87);
|
|
||||||
b = _GG(b, c, d, a, x[k + 8], S24, 0x455A14ED);
|
|
||||||
a = _GG(a, b, c, d, x[k + 13], S21, 0xA9E3E905);
|
|
||||||
d = _GG(d, a, b, c, x[k + 2], S22, 0xFCEFA3F8);
|
|
||||||
c = _GG(c, d, a, b, x[k + 7], S23, 0x676F02D9);
|
|
||||||
b = _GG(b, c, d, a, x[k + 12], S24, 0x8D2A4C8A);
|
|
||||||
a = _HH(a, b, c, d, x[k + 5], S31, 0xFFFA3942);
|
|
||||||
d = _HH(d, a, b, c, x[k + 8], S32, 0x8771F681);
|
|
||||||
c = _HH(c, d, a, b, x[k + 11], S33, 0x6D9D6122);
|
|
||||||
b = _HH(b, c, d, a, x[k + 14], S34, 0xFDE5380C);
|
|
||||||
a = _HH(a, b, c, d, x[k + 1], S31, 0xA4BEEA44);
|
|
||||||
d = _HH(d, a, b, c, x[k + 4], S32, 0x4BDECFA9);
|
|
||||||
c = _HH(c, d, a, b, x[k + 7], S33, 0xF6BB4B60);
|
|
||||||
b = _HH(b, c, d, a, x[k + 10], S34, 0xBEBFBC70);
|
|
||||||
a = _HH(a, b, c, d, x[k + 13], S31, 0x289B7EC6);
|
|
||||||
d = _HH(d, a, b, c, x[k + 0], S32, 0xEAA127FA);
|
|
||||||
c = _HH(c, d, a, b, x[k + 3], S33, 0xD4EF3085);
|
|
||||||
b = _HH(b, c, d, a, x[k + 6], S34, 0x4881D05);
|
|
||||||
a = _HH(a, b, c, d, x[k + 9], S31, 0xD9D4D039);
|
|
||||||
d = _HH(d, a, b, c, x[k + 12], S32, 0xE6DB99E5);
|
|
||||||
c = _HH(c, d, a, b, x[k + 15], S33, 0x1FA27CF8);
|
|
||||||
b = _HH(b, c, d, a, x[k + 2], S34, 0xC4AC5665);
|
|
||||||
a = _II(a, b, c, d, x[k + 0], S41, 0xF4292244);
|
|
||||||
d = _II(d, a, b, c, x[k + 7], S42, 0x432AFF97);
|
|
||||||
c = _II(c, d, a, b, x[k + 14], S43, 0xAB9423A7);
|
|
||||||
b = _II(b, c, d, a, x[k + 5], S44, 0xFC93A039);
|
|
||||||
a = _II(a, b, c, d, x[k + 12], S41, 0x655B59C3);
|
|
||||||
d = _II(d, a, b, c, x[k + 3], S42, 0x8F0CCC92);
|
|
||||||
c = _II(c, d, a, b, x[k + 10], S43, 0xFFEFF47D);
|
|
||||||
b = _II(b, c, d, a, x[k + 1], S44, 0x85845DD1);
|
|
||||||
a = _II(a, b, c, d, x[k + 8], S41, 0x6FA87E4F);
|
|
||||||
d = _II(d, a, b, c, x[k + 15], S42, 0xFE2CE6E0);
|
|
||||||
c = _II(c, d, a, b, x[k + 6], S43, 0xA3014314);
|
|
||||||
b = _II(b, c, d, a, x[k + 13], S44, 0x4E0811A1);
|
|
||||||
a = _II(a, b, c, d, x[k + 4], S41, 0xF7537E82);
|
|
||||||
d = _II(d, a, b, c, x[k + 11], S42, 0xBD3AF235);
|
|
||||||
c = _II(c, d, a, b, x[k + 2], S43, 0x2AD7D2BB);
|
|
||||||
b = _II(b, c, d, a, x[k + 9], S44, 0xEB86D391);
|
|
||||||
a = addUnsigned(a, AA);
|
|
||||||
b = addUnsigned(b, BB);
|
|
||||||
c = addUnsigned(c, CC);
|
|
||||||
d = addUnsigned(d, DD);
|
|
||||||
}
|
|
||||||
|
|
||||||
var temp = wordToHex(a) + wordToHex(b) + wordToHex(c) + wordToHex(d);
|
|
||||||
|
|
||||||
return temp.toLowerCase();
|
|
||||||
}
|
|
|
@ -1,70 +0,0 @@
|
||||||
function utf8_encode (argString) {
|
|
||||||
// http://kevin.vanzonneveld.net
|
|
||||||
// + original by: Webtoolkit.info (http://www.webtoolkit.info/)
|
|
||||||
// + improved by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
|
|
||||||
// + improved by: sowberry
|
|
||||||
// + tweaked by: Jack
|
|
||||||
// + bugfixed by: Onno Marsman
|
|
||||||
// + improved by: Yves Sucaet
|
|
||||||
// + bugfixed by: Onno Marsman
|
|
||||||
// + bugfixed by: Ulrich
|
|
||||||
// + bugfixed by: Rafal Kukawski
|
|
||||||
// + improved by: kirilloid
|
|
||||||
// + bugfixed by: kirilloid
|
|
||||||
// * example 1: utf8_encode('Kevin van Zonneveld');
|
|
||||||
// * returns 1: 'Kevin van Zonneveld'
|
|
||||||
|
|
||||||
if (argString === null || typeof argString === "undefined") {
|
|
||||||
return "";
|
|
||||||
}
|
|
||||||
|
|
||||||
var string = (argString + ''); // .replace(/\r\n/g, "\n").replace(/\r/g, "\n");
|
|
||||||
var utftext = '',
|
|
||||||
start, end, stringl = 0;
|
|
||||||
|
|
||||||
start = end = 0;
|
|
||||||
stringl = string.length;
|
|
||||||
for (var n = 0; n < stringl; n++) {
|
|
||||||
var c1 = string.charCodeAt(n);
|
|
||||||
var enc = null;
|
|
||||||
|
|
||||||
if (c1 < 128) {
|
|
||||||
end++;
|
|
||||||
} else if (c1 > 127 && c1 < 2048) {
|
|
||||||
enc = String.fromCharCode(
|
|
||||||
(c1 >> 6) | 192,
|
|
||||||
( c1 & 63) | 128
|
|
||||||
);
|
|
||||||
} else if (c1 & 0xF800 != 0xD800) {
|
|
||||||
enc = String.fromCharCode(
|
|
||||||
(c1 >> 12) | 224,
|
|
||||||
((c1 >> 6) & 63) | 128,
|
|
||||||
( c1 & 63) | 128
|
|
||||||
);
|
|
||||||
} else { // surrogate pairs
|
|
||||||
if (c1 & 0xFC00 != 0xD800) { throw new RangeError("Unmatched trail surrogate at " + n); }
|
|
||||||
var c2 = string.charCodeAt(++n);
|
|
||||||
if (c2 & 0xFC00 != 0xDC00) { throw new RangeError("Unmatched lead surrogate at " + (n-1)); }
|
|
||||||
c1 = ((c1 & 0x3FF) << 10) + (c2 & 0x3FF) + 0x10000;
|
|
||||||
enc = String.fromCharCode(
|
|
||||||
(c1 >> 18) | 240,
|
|
||||||
((c1 >> 12) & 63) | 128,
|
|
||||||
((c1 >> 6) & 63) | 128,
|
|
||||||
( c1 & 63) | 128
|
|
||||||
);
|
|
||||||
}
|
|
||||||
if (enc !== null) {
|
|
||||||
if (end > start) {
|
|
||||||
utftext += string.slice(start, end);
|
|
||||||
}
|
|
||||||
utftext += enc;
|
|
||||||
start = end = n + 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (end > start) {
|
|
||||||
utftext += string.slice(start, stringl);
|
|
||||||
}
|
|
||||||
|
|
||||||
return utftext;
|
|
||||||
}
|
|
|
@ -7,20 +7,6 @@ window.slugify = (text) ->
|
||||||
window.ajaxGet = (url) ->
|
window.ajaxGet = (url) ->
|
||||||
$.ajax({type: "GET", url: url, dataType: "script"})
|
$.ajax({type: "GET", url: url, dataType: "script"})
|
||||||
|
|
||||||
window.showAndHide = (selector) ->
|
|
||||||
|
|
||||||
window.errorMessage = (message) ->
|
|
||||||
ehtml = $("<p>")
|
|
||||||
ehtml.addClass("error_message")
|
|
||||||
ehtml.html(message)
|
|
||||||
ehtml
|
|
||||||
|
|
||||||
window.split = (val) ->
|
|
||||||
return val.split( /,\s*/ )
|
|
||||||
|
|
||||||
window.extractLast = (term) ->
|
|
||||||
return split( term ).pop()
|
|
||||||
|
|
||||||
# Disable button if text field is empty
|
# Disable button if text field is empty
|
||||||
window.disableButtonIfEmptyField = (field_selector, button_selector) ->
|
window.disableButtonIfEmptyField = (field_selector, button_selector) ->
|
||||||
field = $(field_selector)
|
field = $(field_selector)
|
||||||
|
@ -34,22 +20,10 @@ window.disableButtonIfEmptyField = (field_selector, button_selector) ->
|
||||||
else
|
else
|
||||||
closest_submit.enable()
|
closest_submit.enable()
|
||||||
|
|
||||||
window.sanitize = (str) ->
|
|
||||||
return str.replace(/<(?:.|\n)*?>/gm, '')
|
|
||||||
|
|
||||||
window.linkify = (str) ->
|
|
||||||
exp = /(\b(https?|ftp|file):\/\/[-A-Z0-9+&@#\/%?=~_|!:,.;]*[-A-Z0-9+&@#\/%=~_|])/ig
|
|
||||||
return str.replace(exp,"<a href='$1'>$1</a>")
|
|
||||||
|
|
||||||
|
|
||||||
$ ->
|
$ ->
|
||||||
# Click a .one_click_select field, select the contents
|
# Click a .one_click_select field, select the contents
|
||||||
$(".one_click_select").on 'click', -> $(@).select()
|
$(".one_click_select").on 'click', -> $(@).select()
|
||||||
|
|
||||||
# Click a .appear-link, appear-data fadeout
|
|
||||||
$(".appear-link").on 'click', ->
|
|
||||||
$('.appear-data').fadeIn()
|
|
||||||
|
|
||||||
# Initialize chosen selects
|
# Initialize chosen selects
|
||||||
$('select.chosen').chosen()
|
$('select.chosen').chosen()
|
||||||
|
|
||||||
|
@ -59,17 +33,6 @@ $ ->
|
||||||
# Bottom tooltip
|
# Bottom tooltip
|
||||||
$('.has_bottom_tooltip').tooltip(placement: 'bottom')
|
$('.has_bottom_tooltip').tooltip(placement: 'bottom')
|
||||||
|
|
||||||
# Form submitter
|
|
||||||
$('.trigger-submit').on 'change', ->
|
|
||||||
$(@).parents('form').submit()
|
|
||||||
|
|
||||||
$("abbr.timeago").timeago()
|
|
||||||
|
|
||||||
# Flash
|
|
||||||
if (flash = $(".flash-container")).length > 0
|
|
||||||
flash.click -> $(@).fadeOut()
|
|
||||||
flash.show()
|
|
||||||
setTimeout (-> flash.fadeOut()), 3000
|
|
||||||
|
|
||||||
# Disable form buttons while a form is submitting
|
# Disable form buttons while a form is submitting
|
||||||
$('body').on 'ajax:complete, ajax:beforeSend, submit', 'form', (e) ->
|
$('body').on 'ajax:complete, ajax:beforeSend, submit', 'form', (e) ->
|
||||||
|
|
129
app/assets/javascripts/merge_requests.js
Normal file
|
@ -0,0 +1,129 @@
|
||||||
|
var MergeRequest = {
|
||||||
|
diffs_loaded: false,
|
||||||
|
commits_loaded: false,
|
||||||
|
opts: false,
|
||||||
|
|
||||||
|
init:
|
||||||
|
function(opts) {
|
||||||
|
var self = this;
|
||||||
|
self.opts = opts;
|
||||||
|
|
||||||
|
self.initTabs();
|
||||||
|
self.initMergeWidget();
|
||||||
|
|
||||||
|
$(".mr_show_all_commits").bind("click", function() {
|
||||||
|
self.showAllCommits();
|
||||||
|
});
|
||||||
|
|
||||||
|
$(".line_note_link, .line_note_reply_link").live("click", function(e) {
|
||||||
|
var form = $(".per_line_form");
|
||||||
|
$(this).parent().parent().after(form);
|
||||||
|
form.find("#note_line_code").val($(this).attr("line_code"));
|
||||||
|
form.show();
|
||||||
|
return false;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
initMergeWidget:
|
||||||
|
function() {
|
||||||
|
var self = this;
|
||||||
|
self.showState(self.opts.current_state);
|
||||||
|
|
||||||
|
if($(".automerge_widget").length && self.opts.check_enable){
|
||||||
|
$.get(self.opts.url_to_automerge_check, function(data){
|
||||||
|
self.showState(data.state);
|
||||||
|
}, "json");
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
initTabs:
|
||||||
|
function() {
|
||||||
|
$(".mr_nav_tabs a").live("click", function() {
|
||||||
|
$(".mr_nav_tabs a").parent().removeClass("active");
|
||||||
|
$(this).parent().addClass("active");
|
||||||
|
});
|
||||||
|
|
||||||
|
var current_tab;
|
||||||
|
if(this.opts.action == "diffs") {
|
||||||
|
current_tab = $(".mr_nav_tabs .merge-diffs-tab");
|
||||||
|
} else {
|
||||||
|
current_tab = $(".mr_nav_tabs .merge-notes-tab");
|
||||||
|
}
|
||||||
|
current_tab.parent().addClass("active");
|
||||||
|
|
||||||
|
this.initNotesTab();
|
||||||
|
this.initDiffTab();
|
||||||
|
},
|
||||||
|
|
||||||
|
initNotesTab:
|
||||||
|
function() {
|
||||||
|
$(".mr_nav_tabs a.merge-notes-tab").live("click", function(e) {
|
||||||
|
$(".merge-request-diffs").hide();
|
||||||
|
$(".merge_request_notes").show();
|
||||||
|
var mr_path = $(".merge-notes-tab").attr("data-url");
|
||||||
|
history.pushState({ path: mr_path }, '', mr_path);
|
||||||
|
e.preventDefault();
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
initDiffTab:
|
||||||
|
function() {
|
||||||
|
$(".mr_nav_tabs a.merge-diffs-tab").live("click", function(e) {
|
||||||
|
if(!MergeRequest.diffs_loaded) {
|
||||||
|
MergeRequest.loadDiff();
|
||||||
|
}
|
||||||
|
$(".merge_request_notes").hide();
|
||||||
|
$(".merge-request-diffs").show();
|
||||||
|
var mr_diff_path = $(".merge-diffs-tab").attr("data-url");
|
||||||
|
history.pushState({ path: mr_diff_path }, '', mr_diff_path);
|
||||||
|
e.preventDefault();
|
||||||
|
});
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
showState:
|
||||||
|
function(state){
|
||||||
|
$(".automerge_widget").hide();
|
||||||
|
$(".automerge_widget." + state).show();
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
loadDiff:
|
||||||
|
function() {
|
||||||
|
$(".dashboard-loader").show();
|
||||||
|
$.ajax({
|
||||||
|
type: "GET",
|
||||||
|
url: $(".merge-diffs-tab").attr("data-url"),
|
||||||
|
beforeSend: function(){ $('.status').addClass("loading")},
|
||||||
|
complete: function(){
|
||||||
|
MergeRequest.diffs_loaded = true;
|
||||||
|
$(".merge_request_notes").hide();
|
||||||
|
$('.status').removeClass("loading");
|
||||||
|
},
|
||||||
|
dataType: "script"});
|
||||||
|
},
|
||||||
|
|
||||||
|
showAllCommits:
|
||||||
|
function() {
|
||||||
|
$(".first_mr_commits").remove();
|
||||||
|
$(".all_mr_commits").removeClass("hide");
|
||||||
|
},
|
||||||
|
|
||||||
|
already_cannot_be_merged:
|
||||||
|
function(){
|
||||||
|
$(".automerge_widget").hide();
|
||||||
|
$(".merge_in_progress").hide();
|
||||||
|
$(".automerge_widget.already_cannot_be_merged").show();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Filter merge requests
|
||||||
|
*/
|
||||||
|
function merge_requestsPage() {
|
||||||
|
$("#assignee_id").chosen();
|
||||||
|
$("#milestone_id").chosen();
|
||||||
|
$("#milestone_id, #assignee_id").on("change", function(){
|
||||||
|
$(this).closest("form").submit();
|
||||||
|
});
|
||||||
|
}
|
|
@ -1,101 +0,0 @@
|
||||||
#
|
|
||||||
# * Filter merge requests
|
|
||||||
#
|
|
||||||
@merge_requestsPage = ->
|
|
||||||
$('#assignee_id').chosen()
|
|
||||||
$('#milestone_id').chosen()
|
|
||||||
$('#milestone_id, #assignee_id').on 'change', ->
|
|
||||||
$(this).closest('form').submit()
|
|
||||||
|
|
||||||
class MergeRequest
|
|
||||||
|
|
||||||
constructor: (@opts) ->
|
|
||||||
this.$el = $('.merge-request')
|
|
||||||
@diffs_loaded = false
|
|
||||||
@commits_loaded = false
|
|
||||||
|
|
||||||
this.activateTab(@opts.action)
|
|
||||||
|
|
||||||
this.bindEvents()
|
|
||||||
|
|
||||||
this.initMergeWidget()
|
|
||||||
this.$('.show-all-commits').on 'click', =>
|
|
||||||
this.showAllCommits()
|
|
||||||
|
|
||||||
# Local jQuery finder
|
|
||||||
$: (selector) ->
|
|
||||||
this.$el.find(selector)
|
|
||||||
|
|
||||||
initMergeWidget: ->
|
|
||||||
this.showState( @opts.current_status )
|
|
||||||
|
|
||||||
if this.$('.automerge_widget').length and @opts.check_enable
|
|
||||||
$.get @opts.url_to_automerge_check, (data) =>
|
|
||||||
this.showState( data.merge_status )
|
|
||||||
, 'json'
|
|
||||||
|
|
||||||
if @opts.ci_enable
|
|
||||||
$.get @opts.url_to_ci_check, (data) =>
|
|
||||||
this.showCiState data.status
|
|
||||||
, 'json'
|
|
||||||
|
|
||||||
bindEvents: ->
|
|
||||||
this.$('.nav-tabs').on 'click', 'a', (event) =>
|
|
||||||
a = $(event.currentTarget)
|
|
||||||
|
|
||||||
href = a.attr('href')
|
|
||||||
History.replaceState {path: href}, document.title, href
|
|
||||||
|
|
||||||
event.preventDefault()
|
|
||||||
|
|
||||||
this.$('.nav-tabs').on 'click', 'li', (event) =>
|
|
||||||
this.activateTab($(event.currentTarget).data('action'))
|
|
||||||
|
|
||||||
this.$('.accept_merge_request').on 'click', ->
|
|
||||||
$('.automerge_widget.can_be_merged').hide()
|
|
||||||
$('.merge-in-progress').show()
|
|
||||||
|
|
||||||
activateTab: (action) ->
|
|
||||||
this.$('.nav-tabs li').removeClass 'active'
|
|
||||||
this.$('.tab-content').hide()
|
|
||||||
switch action
|
|
||||||
when 'diffs'
|
|
||||||
this.$('.nav-tabs .diffs-tab').addClass 'active'
|
|
||||||
this.loadDiff() unless @diffs_loaded
|
|
||||||
this.$('.diffs').show()
|
|
||||||
else
|
|
||||||
this.$('.nav-tabs .notes-tab').addClass 'active'
|
|
||||||
this.$('.notes').show()
|
|
||||||
|
|
||||||
showState: (state) ->
|
|
||||||
$('.automerge_widget').hide()
|
|
||||||
$('.automerge_widget.' + state).show()
|
|
||||||
|
|
||||||
showCiState: (state) ->
|
|
||||||
$('.ci_widget').hide()
|
|
||||||
$('.ci_widget.ci-' + state).show()
|
|
||||||
|
|
||||||
loadDiff: (event) ->
|
|
||||||
$('.dashboard-loader').show()
|
|
||||||
$.ajax
|
|
||||||
type: 'GET'
|
|
||||||
url: this.$('.nav-tabs .diffs-tab a').attr('href')
|
|
||||||
beforeSend: =>
|
|
||||||
this.$('.status').addClass 'loading'
|
|
||||||
|
|
||||||
complete: =>
|
|
||||||
@diffs_loaded = true
|
|
||||||
this.$('.status').removeClass 'loading'
|
|
||||||
|
|
||||||
dataType: 'script'
|
|
||||||
|
|
||||||
showAllCommits: ->
|
|
||||||
this.$('.first-commits').remove()
|
|
||||||
this.$('.all-commits').removeClass 'hide'
|
|
||||||
|
|
||||||
alreadyOrCannotBeMerged: ->
|
|
||||||
this.$('.automerge_widget').hide()
|
|
||||||
this.$('.merge-in-progress').hide()
|
|
||||||
this.$('.automerge_widget.already_cannot_be_merged').show()
|
|
||||||
|
|
||||||
this.MergeRequest = MergeRequest
|
|
|
@ -1,14 +1,14 @@
|
||||||
$ ->
|
$ ->
|
||||||
$('.milestone-issue-filter li[data-closed]').addClass('hide')
|
$('.milestone-issue-filter tr[data-closed]').addClass('hide')
|
||||||
|
|
||||||
$('.milestone-issue-filter ul.nav li a').click ->
|
$('.milestone-issue-filter ul.nav li a').click ->
|
||||||
$('.milestone-issue-filter li').toggleClass('active')
|
$('.milestone-issue-filter li').toggleClass('active')
|
||||||
$('.milestone-issue-filter li[data-closed]').toggleClass('hide')
|
$('.milestone-issue-filter tr[data-closed]').toggleClass('hide')
|
||||||
false
|
false
|
||||||
|
|
||||||
$('.milestone-merge-requests-filter li[data-closed]').addClass('hide')
|
$('.milestone-merge-requests-filter tr[data-closed]').addClass('hide')
|
||||||
|
|
||||||
$('.milestone-merge-requests-filter ul.nav li a').click ->
|
$('.milestone-merge-requests-filter ul.nav li a').click ->
|
||||||
$('.milestone-merge-requests-filter li').toggleClass('active')
|
$('.milestone-merge-requests-filter li').toggleClass('active')
|
||||||
$('.milestone-merge-requests-filter li[data-closed]').toggleClass('hide')
|
$('.milestone-merge-requests-filter tr[data-closed]').toggleClass('hide')
|
||||||
false
|
false
|
||||||
|
|
|
@ -4,303 +4,76 @@ var NoteList = {
|
||||||
target_params: null,
|
target_params: null,
|
||||||
target_id: 0,
|
target_id: 0,
|
||||||
target_type: null,
|
target_type: null,
|
||||||
|
top_id: 0,
|
||||||
|
bottom_id: 0,
|
||||||
|
loading_more_disabled: false,
|
||||||
|
reversed: false,
|
||||||
|
|
||||||
init: function(tid, tt, path) {
|
init:
|
||||||
NoteList.notes_path = path + ".js";
|
function(tid, tt, path) {
|
||||||
NoteList.target_id = tid;
|
this.notes_path = path + ".js";
|
||||||
NoteList.target_type = tt;
|
this.target_id = tid;
|
||||||
NoteList.target_params = "target_type=" + NoteList.target_type + "&target_id=" + NoteList.target_id;
|
this.target_type = tt;
|
||||||
|
this.reversed = $("#notes-list").is(".reversed");
|
||||||
NoteList.setupMainTargetNoteForm();
|
this.target_params = "target_type=" + this.target_type + "&target_id=" + this.target_id;
|
||||||
|
|
||||||
// get initial set of notes
|
// get initial set of notes
|
||||||
NoteList.getContent();
|
this.getContent();
|
||||||
|
|
||||||
// add a new diff note
|
$("#notes-list, #new-notes-list").on("ajax:success", ".delete-note", function() {
|
||||||
$(document).on("click",
|
$(this).closest('li').fadeOut(function() {
|
||||||
".js-add-diff-note-button",
|
$(this).remove();
|
||||||
NoteList.addDiffNote);
|
|
||||||
|
|
||||||
// reply to diff/discussion notes
|
|
||||||
$(document).on("click",
|
|
||||||
".js-discussion-reply-button",
|
|
||||||
NoteList.replyToDiscussionNote);
|
|
||||||
|
|
||||||
// setup note preview
|
|
||||||
$(document).on("click",
|
|
||||||
".js-note-preview-button",
|
|
||||||
NoteList.previewNote);
|
|
||||||
|
|
||||||
// update the file name when an attachment is selected
|
|
||||||
$(document).on("change",
|
|
||||||
".js-note-attachment-input",
|
|
||||||
NoteList.updateFormAttachment);
|
|
||||||
|
|
||||||
// hide diff note form
|
|
||||||
$(document).on("click",
|
|
||||||
".js-close-discussion-note-form",
|
|
||||||
NoteList.removeDiscussionNoteForm);
|
|
||||||
|
|
||||||
// remove a note (in general)
|
|
||||||
$(document).on("click",
|
|
||||||
".js-note-delete",
|
|
||||||
NoteList.removeNote);
|
|
||||||
|
|
||||||
// reset main target form after submit
|
|
||||||
$(document).on("ajax:complete",
|
|
||||||
".js-main-target-form",
|
|
||||||
NoteList.resetMainTargetForm);
|
|
||||||
|
|
||||||
|
|
||||||
$(document).on("click",
|
|
||||||
".js-choose-note-attachment-button",
|
|
||||||
NoteList.chooseNoteAttachment);
|
|
||||||
|
|
||||||
$(document).on("click",
|
|
||||||
".js-show-outdated-discussion",
|
|
||||||
function(e) { $(this).next('.outdated-discussion').show(); e.preventDefault() });
|
|
||||||
},
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* When clicking on buttons
|
|
||||||
*/
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Called when clicking on the "add a comment" button on the side of a diff line.
|
|
||||||
*
|
|
||||||
* Inserts a temporary row for the form below the line.
|
|
||||||
* Sets up the form and shows it.
|
|
||||||
*/
|
|
||||||
addDiffNote: function(e) {
|
|
||||||
e.preventDefault();
|
|
||||||
|
|
||||||
// find the form
|
|
||||||
var form = $(".js-new-note-form");
|
|
||||||
var row = $(this).closest("tr");
|
|
||||||
var nextRow = row.next();
|
|
||||||
|
|
||||||
// does it already have notes?
|
|
||||||
if (nextRow.is(".notes_holder")) {
|
|
||||||
$.proxy(NoteList.replyToDiscussionNote,
|
|
||||||
nextRow.find(".js-discussion-reply-button")
|
|
||||||
).call();
|
|
||||||
} else {
|
|
||||||
// add a notes row and insert the form
|
|
||||||
row.after('<tr class="notes_holder js-temp-notes-holder"><td class="notes_line" colspan="2"></td><td class="notes_content"></td></tr>');
|
|
||||||
form.clone().appendTo(row.next().find(".notes_content"));
|
|
||||||
|
|
||||||
// show the form
|
|
||||||
NoteList.setupDiscussionNoteForm($(this), row.next().find("form"));
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Called when clicking the "Choose File" button.
|
|
||||||
*
|
|
||||||
* Opesn the file selection dialog.
|
|
||||||
*/
|
|
||||||
chooseNoteAttachment: function() {
|
|
||||||
var form = $(this).closest("form");
|
|
||||||
|
|
||||||
form.find(".js-note-attachment-input").click();
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Shows the note preview.
|
|
||||||
*
|
|
||||||
* Lets the server render GFM into Html and displays it.
|
|
||||||
*
|
|
||||||
* Note: uses the Toggler behavior to toggle preview/edit views/buttons
|
|
||||||
*/
|
|
||||||
previewNote: function(e) {
|
|
||||||
e.preventDefault();
|
|
||||||
|
|
||||||
var form = $(this).closest("form");
|
|
||||||
var preview = form.find('.js-note-preview');
|
|
||||||
var noteText = form.find('.js-note-text').val();
|
|
||||||
|
|
||||||
if(noteText.trim().length === 0) {
|
|
||||||
preview.text('Nothing to preview.');
|
|
||||||
} else {
|
|
||||||
preview.text('Loading...');
|
|
||||||
$.post($(this).data('url'), {note: noteText})
|
|
||||||
.success(function(previewData) {
|
|
||||||
preview.html(previewData);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Called in response to "cancel" on a diff note form.
|
|
||||||
*
|
|
||||||
* Shows the reply button again.
|
|
||||||
* Removes the form and if necessary it's temporary row.
|
|
||||||
*/
|
|
||||||
removeDiscussionNoteForm: function() {
|
|
||||||
var form = $(this).closest("form");
|
|
||||||
var row = form.closest("tr");
|
|
||||||
|
|
||||||
// show the reply button (will only work for replys)
|
|
||||||
form.prev(".js-discussion-reply-button").show();
|
|
||||||
|
|
||||||
if (row.is(".js-temp-notes-holder")) {
|
|
||||||
// remove temporary row for diff lines
|
|
||||||
row.remove();
|
|
||||||
} else {
|
|
||||||
// only remove the form
|
|
||||||
form.remove();
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Called in response to deleting a note of any kind.
|
|
||||||
*
|
|
||||||
* Removes the actual note from view.
|
|
||||||
* Removes the whole discussion if the last note is being removed.
|
|
||||||
*/
|
|
||||||
removeNote: function() {
|
|
||||||
var note = $(this).closest(".note");
|
|
||||||
var notes = note.closest(".notes");
|
|
||||||
|
|
||||||
// check if this is the last note for this line
|
|
||||||
if (notes.find(".note").length === 1) {
|
|
||||||
// for discussions
|
|
||||||
notes.closest(".discussion").remove();
|
|
||||||
|
|
||||||
// for diff lines
|
|
||||||
notes.closest("tr").remove();
|
|
||||||
}
|
|
||||||
|
|
||||||
note.remove();
|
|
||||||
NoteList.updateVotes();
|
NoteList.updateVotes();
|
||||||
},
|
});
|
||||||
|
|
||||||
/**
|
|
||||||
* Called when clicking on the "reply" button for a diff line.
|
|
||||||
*
|
|
||||||
* Shows the note form below the notes.
|
|
||||||
*/
|
|
||||||
replyToDiscussionNote: function() {
|
|
||||||
// find the form
|
|
||||||
var form = $(".js-new-note-form");
|
|
||||||
|
|
||||||
// hide reply button
|
|
||||||
$(this).hide();
|
|
||||||
// insert the form after the button
|
|
||||||
form.clone().insertAfter($(this));
|
|
||||||
|
|
||||||
// show the form
|
|
||||||
NoteList.setupDiscussionNoteForm($(this), $(this).next("form"));
|
|
||||||
},
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Helper for inserting and setting up note forms.
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Called in response to creating a note failing validation.
|
|
||||||
*
|
|
||||||
* Adds the rendered errors to the respective form.
|
|
||||||
* If "discussionId" is null or undefined, the main target form is assumed.
|
|
||||||
*/
|
|
||||||
errorsOnForm: function(errorsHtml, discussionId) {
|
|
||||||
// find the form
|
|
||||||
if (discussionId) {
|
|
||||||
var form = $("form[rel='"+discussionId+"']");
|
|
||||||
} else {
|
|
||||||
var form = $(".js-main-target-form");
|
|
||||||
}
|
|
||||||
|
|
||||||
form.find(".js-errors").remove();
|
|
||||||
form.prepend(errorsHtml);
|
|
||||||
|
|
||||||
form.find(".js-note-text").focus();
|
|
||||||
},
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Shows the diff/discussion form and does some setup on it.
|
|
||||||
*
|
|
||||||
* Sets some hidden fields in the form.
|
|
||||||
*
|
|
||||||
* Note: dataHolder must have the "discussionId", "lineCode", "noteableType"
|
|
||||||
* and "noteableId" data attributes set.
|
|
||||||
*/
|
|
||||||
setupDiscussionNoteForm: function(dataHolder, form) {
|
|
||||||
// setup note target
|
|
||||||
form.attr("rel", dataHolder.data("discussionId"));
|
|
||||||
form.find("#note_commit_id").val(dataHolder.data("commitId"));
|
|
||||||
form.find("#note_line_code").val(dataHolder.data("lineCode"));
|
|
||||||
form.find("#note_noteable_type").val(dataHolder.data("noteableType"));
|
|
||||||
form.find("#note_noteable_id").val(dataHolder.data("noteableId"));
|
|
||||||
|
|
||||||
NoteList.setupNoteForm(form);
|
|
||||||
|
|
||||||
form.find(".js-note-text").focus();
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Shows the main form and does some setup on it.
|
|
||||||
*
|
|
||||||
* Sets some hidden fields in the form.
|
|
||||||
*/
|
|
||||||
setupMainTargetNoteForm: function() {
|
|
||||||
// find the form
|
|
||||||
var form = $(".js-new-note-form");
|
|
||||||
// insert the form after the button
|
|
||||||
form.clone().replaceAll($(".js-main-target-form"));
|
|
||||||
|
|
||||||
form = form.prev("form");
|
|
||||||
|
|
||||||
// show the form
|
|
||||||
NoteList.setupNoteForm(form);
|
|
||||||
|
|
||||||
// fix classes
|
|
||||||
form.removeClass("js-new-note-form");
|
|
||||||
form.addClass("js-main-target-form");
|
|
||||||
|
|
||||||
// remove unnecessary fields and buttons
|
|
||||||
form.find("#note_line_code").remove();
|
|
||||||
form.find(".js-close-discussion-note-form").remove();
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* General note form setup.
|
|
||||||
*
|
|
||||||
* * deactivates the submit button when text is empty
|
|
||||||
* * hides the preview button when text is empty
|
|
||||||
* * setup GFM auto complete
|
|
||||||
* * show the form
|
|
||||||
*/
|
|
||||||
setupNoteForm: function(form) {
|
|
||||||
disableButtonIfEmptyField(form.find(".js-note-text"), form.find(".js-comment-button"));
|
|
||||||
|
|
||||||
form.removeClass("js-new-note-form");
|
|
||||||
|
|
||||||
// setup preview buttons
|
|
||||||
form.find(".js-note-edit-button, .js-note-preview-button")
|
|
||||||
.tooltip({ placement: 'left' });
|
|
||||||
|
|
||||||
previewButton = form.find(".js-note-preview-button");
|
|
||||||
form.find(".js-note-text").on("input", function() {
|
|
||||||
if ($(this).val().trim() !== "") {
|
|
||||||
previewButton.removeClass("turn-off").addClass("turn-on");
|
|
||||||
} else {
|
|
||||||
previewButton.removeClass("turn-on").addClass("turn-off");
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
|
||||||
// remove notify commit author checkbox for non-commit notes
|
$(".note-form-holder").on("ajax:before", function(){
|
||||||
if (form.find("#note_noteable_type").val() !== "Commit") {
|
$(".submit_note").disable();
|
||||||
form.find(".js-notify-commit-author").remove();
|
})
|
||||||
|
|
||||||
|
$(".note-form-holder").on("ajax:complete", function(){
|
||||||
|
$(".submit_note").enable();
|
||||||
|
$('#preview-note').hide();
|
||||||
|
$('#note_note').show();
|
||||||
|
})
|
||||||
|
|
||||||
|
disableButtonIfEmptyField(".note-text", ".submit_note");
|
||||||
|
|
||||||
|
$("#note_attachment").change(function(e){
|
||||||
|
var val = $('.input-file').val();
|
||||||
|
var filename = val.replace(/^.*[\\\/]/, '');
|
||||||
|
$(".file_name").text(filename);
|
||||||
|
});
|
||||||
|
|
||||||
|
if(this.reversed) {
|
||||||
|
var textarea = $(".note-text");
|
||||||
|
$('.note_advanced_opts').hide();
|
||||||
|
textarea.css("height", "40px");
|
||||||
|
textarea.on("focus", function(){
|
||||||
|
$(this).css("height", "80px");
|
||||||
|
$('.note_advanced_opts').show();
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
GitLab.GfmAutoComplete.setup();
|
// Setup note preview
|
||||||
|
$(document).on('click', '#preview-link', function(e) {
|
||||||
|
$('#preview-note').text('Loading...');
|
||||||
|
|
||||||
form.show();
|
$(this).text($(this).text() === "Edit" ? "Preview" : "Edit");
|
||||||
|
|
||||||
|
var note_text = $('#note_note').val();
|
||||||
|
|
||||||
|
if(note_text.trim().length === 0) {
|
||||||
|
$('#preview-note').text('Nothing to preview.');
|
||||||
|
} else {
|
||||||
|
$.post($(this).attr('href'), {note: note_text}).success(function(data) {
|
||||||
|
$('#preview-note').html(data);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
$('#preview-note, #note_note').toggle();
|
||||||
|
e.preventDefault();
|
||||||
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
|
@ -311,92 +84,161 @@ var NoteList = {
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets an initial set of notes.
|
* Gets an inital set of notes.
|
||||||
*/
|
*/
|
||||||
getContent: function() {
|
getContent:
|
||||||
|
function() {
|
||||||
$.ajax({
|
$.ajax({
|
||||||
url: NoteList.notes_path,
|
type: "GET",
|
||||||
data: NoteList.target_params,
|
url: this.notes_path,
|
||||||
complete: function(){ $('.js-notes-busy').removeClass("loading")},
|
data: this.target_params,
|
||||||
beforeSend: function() { $('.js-notes-busy').addClass("loading") },
|
complete: function(){ $('.notes-status').removeClass("loading")},
|
||||||
dataType: "script"
|
beforeSend: function() { $('.notes-status').addClass("loading") },
|
||||||
});
|
dataType: "script"});
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Called in response to getContent().
|
* Called in response to getContent().
|
||||||
* Replaces the content of #notes-list with the given html.
|
* Replaces the content of #notes-list with the given html.
|
||||||
*/
|
*/
|
||||||
setContent: function(newNoteIds, html) {
|
setContent:
|
||||||
|
function(first_id, last_id, html) {
|
||||||
|
this.top_id = first_id;
|
||||||
|
this.bottom_id = last_id;
|
||||||
$("#notes-list").html(html);
|
$("#notes-list").html(html);
|
||||||
|
|
||||||
|
// init infinite scrolling
|
||||||
|
this.initLoadMore();
|
||||||
|
|
||||||
|
// init getting new notes
|
||||||
|
if (this.reversed) {
|
||||||
|
this.initRefreshNew();
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a single common note to #notes-list.
|
* Handle loading more notes when scrolling to the bottom of the page.
|
||||||
|
* The id of the last note in the list is in this.bottom_id.
|
||||||
|
*
|
||||||
|
* Set up refreshing only new notes after all notes have been loaded.
|
||||||
*/
|
*/
|
||||||
appendNewNote: function(id, html) {
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initializes loading more notes when scrolling to the bottom of the page.
|
||||||
|
*/
|
||||||
|
initLoadMore:
|
||||||
|
function() {
|
||||||
|
$(document).endlessScroll({
|
||||||
|
bottomPixels: 400,
|
||||||
|
fireDelay: 1000,
|
||||||
|
fireOnce:true,
|
||||||
|
ceaseFire: function() {
|
||||||
|
return NoteList.loading_more_disabled;
|
||||||
|
},
|
||||||
|
callback: function(i) {
|
||||||
|
NoteList.getMore();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets an additional set of notes.
|
||||||
|
*/
|
||||||
|
getMore:
|
||||||
|
function() {
|
||||||
|
// only load more notes if there are no "new" notes
|
||||||
|
$('.loading').show();
|
||||||
|
$.ajax({
|
||||||
|
type: "GET",
|
||||||
|
url: this.notes_path,
|
||||||
|
data: this.target_params + "&loading_more=1&" + (this.reversed ? "before_id" : "after_id") + "=" + this.bottom_id,
|
||||||
|
complete: function(){ $('.notes-status').removeClass("loading")},
|
||||||
|
beforeSend: function() { $('.notes-status').addClass("loading") },
|
||||||
|
dataType: "script"});
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Called in response to getMore().
|
||||||
|
* Append notes to #notes-list.
|
||||||
|
*/
|
||||||
|
appendMoreNotes:
|
||||||
|
function(id, html) {
|
||||||
|
if(id != this.bottom_id) {
|
||||||
|
this.bottom_id = id;
|
||||||
$("#notes-list").append(html);
|
$("#notes-list").append(html);
|
||||||
NoteList.updateVotes();
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Adds a single discussion note to #notes-list.
|
|
||||||
*
|
|
||||||
* Also removes the corresponding form.
|
|
||||||
*/
|
|
||||||
appendNewDiscussionNote: function(discussionId, diffRowHtml, noteHtml) {
|
|
||||||
var form = $("form[rel='"+discussionId+"']");
|
|
||||||
var row = form.closest("tr");
|
|
||||||
|
|
||||||
// is this the first note of discussion?
|
|
||||||
if (row.is(".js-temp-notes-holder")) {
|
|
||||||
// insert the note and the reply button after the temp row
|
|
||||||
row.after(diffRowHtml);
|
|
||||||
// remove the note (will be added again below)
|
|
||||||
row.next().find(".note").remove();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// append new note to all matching discussions
|
|
||||||
$(".notes[rel='"+discussionId+"']").append(noteHtml);
|
|
||||||
|
|
||||||
// cleanup after successfully creating a diff/discussion note
|
|
||||||
$.proxy(NoteList.removeDiscussionNoteForm, form).call();
|
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Called in response the main target form has been successfully submitted.
|
* Called in response to getMore().
|
||||||
*
|
* Disables loading more notes when scrolling to the bottom of the page.
|
||||||
* Removes any errors.
|
* Initalizes refreshing new notes.
|
||||||
* Resets text and preview.
|
|
||||||
* Resets buttons.
|
|
||||||
*/
|
*/
|
||||||
resetMainTargetForm: function(){
|
finishedLoadingMore:
|
||||||
var form = $(this);
|
function() {
|
||||||
|
this.loading_more_disabled = true;
|
||||||
|
|
||||||
// remove validation errors
|
// from now on only get new notes
|
||||||
form.find(".js-errors").remove();
|
if (!this.reversed) {
|
||||||
|
this.initRefreshNew();
|
||||||
// reset text and preview
|
|
||||||
var previewContainer = form.find(".js-toggler-container.note_text_and_preview");
|
|
||||||
if (previewContainer.is(".on")) {
|
|
||||||
previewContainer.removeClass("on");
|
|
||||||
}
|
}
|
||||||
form.find(".js-note-text").val("").trigger("input");
|
// make sure we are up to date
|
||||||
|
this.updateVotes();
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Handle refreshing and adding of new notes.
|
||||||
|
*
|
||||||
|
* New notes are all notes that are created after the site has been loaded.
|
||||||
|
* The "old" notes are in #notes-list the "new" ones will be in #new-notes-list.
|
||||||
|
* The id of the last "old" note is in this.bottom_id.
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initializes getting new notes every n seconds.
|
||||||
|
*/
|
||||||
|
initRefreshNew:
|
||||||
|
function() {
|
||||||
|
setInterval("NoteList.getNew()", 10000);
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Called after an attachment file has been selected.
|
* Gets the new set of notes.
|
||||||
*
|
|
||||||
* Updates the file name for the selected attachment.
|
|
||||||
*/
|
*/
|
||||||
updateFormAttachment: function() {
|
getNew:
|
||||||
var form = $(this).closest("form");
|
function() {
|
||||||
|
$.ajax({
|
||||||
|
type: "GET",
|
||||||
|
url: this.notes_path,
|
||||||
|
data: this.target_params + "&loading_new=1&after_id=" + (this.reversed ? this.top_id : this.bottom_id),
|
||||||
|
dataType: "script"});
|
||||||
|
},
|
||||||
|
|
||||||
// get only the basename
|
/**
|
||||||
var filename = $(this).val().replace(/^.*[\\\/]/, '');
|
* Called in response to getNew().
|
||||||
|
* Replaces the content of #new-notes-list with the given html.
|
||||||
|
*/
|
||||||
|
replaceNewNotes:
|
||||||
|
function(html) {
|
||||||
|
$("#new-notes-list").html(html);
|
||||||
|
this.updateVotes();
|
||||||
|
},
|
||||||
|
|
||||||
form.find(".js-attachment-filename").text(filename);
|
/**
|
||||||
|
* Adds a single note to #new-notes-list.
|
||||||
|
*/
|
||||||
|
appendNewNote:
|
||||||
|
function(id, html) {
|
||||||
|
if (this.reversed) {
|
||||||
|
$("#new-notes-list").prepend(html);
|
||||||
|
} else {
|
||||||
|
$("#new-notes-list").append(html);
|
||||||
|
}
|
||||||
|
this.updateVotes();
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -407,9 +249,10 @@ var NoteList = {
|
||||||
* Might produce inaccurate results when not all notes have been loaded and a
|
* Might produce inaccurate results when not all notes have been loaded and a
|
||||||
* recalculation is triggered (e.g. when deleting a note).
|
* recalculation is triggered (e.g. when deleting a note).
|
||||||
*/
|
*/
|
||||||
updateVotes: function() {
|
updateVotes:
|
||||||
|
function() {
|
||||||
var votes = $("#votes .votes");
|
var votes = $("#votes .votes");
|
||||||
var notes = $("#notes-list .note .vote");
|
var notes = $("#notes-list, #new-notes-list").find(".note .vote");
|
||||||
|
|
||||||
// only update if there is a vote display
|
// only update if there is a vote display
|
||||||
if (votes.size()) {
|
if (votes.size()) {
|
||||||
|
@ -428,3 +271,45 @@ var NoteList = {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
var PerLineNotes = {
|
||||||
|
init:
|
||||||
|
function() {
|
||||||
|
/**
|
||||||
|
* Called when clicking on the "add note" or "reply" button for a diff line.
|
||||||
|
*
|
||||||
|
* Shows the note form below the line.
|
||||||
|
* Sets some hidden fields in the form.
|
||||||
|
*/
|
||||||
|
$(".diff_file_content").on("click", ".line_note_link, .line_note_reply_link", function(e) {
|
||||||
|
var form = $(".per_line_form");
|
||||||
|
$(this).closest("tr").after(form);
|
||||||
|
form.find("#note_line_code").val($(this).data("lineCode"));
|
||||||
|
form.show();
|
||||||
|
e.preventDefault();
|
||||||
|
});
|
||||||
|
|
||||||
|
disableButtonIfEmptyField(".line-note-text", ".submit_inline_note");
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Called in response to successfully deleting a note on a diff line.
|
||||||
|
*
|
||||||
|
* Removes the actual note from view.
|
||||||
|
* Removes the reply button if the last note for that line has been removed.
|
||||||
|
*/
|
||||||
|
$(".diff_file_content").on("ajax:success", ".delete-note", function() {
|
||||||
|
var trNote = $(this).closest("tr");
|
||||||
|
trNote.fadeOut(function() {
|
||||||
|
$(this).remove();
|
||||||
|
});
|
||||||
|
|
||||||
|
// check if this is the last note for this line
|
||||||
|
// elements must really be removed for this to work reliably
|
||||||
|
var trLine = trNote.prev();
|
||||||
|
var trRpl = trNote.next();
|
||||||
|
if (trLine.is(".line_holder") && trRpl.is(".reply")) {
|
||||||
|
trRpl.fadeOut(function() { $(this).remove(); });
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
49
app/assets/javascripts/pager.js
Normal file
|
@ -0,0 +1,49 @@
|
||||||
|
var Pager = {
|
||||||
|
limit:0,
|
||||||
|
offset:0,
|
||||||
|
disable:false,
|
||||||
|
|
||||||
|
init:
|
||||||
|
function(limit) {
|
||||||
|
this.limit=limit;
|
||||||
|
this.offset=limit;
|
||||||
|
this.initLoadMore();
|
||||||
|
},
|
||||||
|
|
||||||
|
getOld:
|
||||||
|
function() {
|
||||||
|
$('.loading').show();
|
||||||
|
$.ajax({
|
||||||
|
type: "GET",
|
||||||
|
url: location.href,
|
||||||
|
data: "limit=" + this.limit + "&offset=" + this.offset,
|
||||||
|
complete: function(){ $('.loading').hide()},
|
||||||
|
dataType: "script"});
|
||||||
|
},
|
||||||
|
|
||||||
|
append:
|
||||||
|
function(count, html) {
|
||||||
|
$(".content_list").append(html);
|
||||||
|
if(count > 0) {
|
||||||
|
this.offset += count;
|
||||||
|
} else {
|
||||||
|
this.disable = true;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
initLoadMore:
|
||||||
|
function() {
|
||||||
|
$(document).endlessScroll({
|
||||||
|
bottomPixels: 400,
|
||||||
|
fireDelay: 1000,
|
||||||
|
fireOnce:true,
|
||||||
|
ceaseFire: function() {
|
||||||
|
return Pager.disable;
|
||||||
|
},
|
||||||
|
callback: function(i) {
|
||||||
|
$('.loading').show();
|
||||||
|
Pager.getOld();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,42 +0,0 @@
|
||||||
@Pager =
|
|
||||||
limit: 0
|
|
||||||
offset: 0
|
|
||||||
disable: false
|
|
||||||
init: (limit, preload) ->
|
|
||||||
@limit = limit
|
|
||||||
if preload
|
|
||||||
@offset = 0
|
|
||||||
@getOld()
|
|
||||||
else
|
|
||||||
@offset = limit
|
|
||||||
@initLoadMore()
|
|
||||||
|
|
||||||
getOld: ->
|
|
||||||
$(".loading").show()
|
|
||||||
$.ajax
|
|
||||||
type: "GET"
|
|
||||||
url: location.href
|
|
||||||
data: "limit=" + @limit + "&offset=" + @offset
|
|
||||||
complete: ->
|
|
||||||
$(".loading").hide()
|
|
||||||
|
|
||||||
dataType: "script"
|
|
||||||
|
|
||||||
append: (count, html) ->
|
|
||||||
$(".content_list").append html
|
|
||||||
if count > 0
|
|
||||||
@offset += count
|
|
||||||
else
|
|
||||||
@disable = true
|
|
||||||
|
|
||||||
initLoadMore: ->
|
|
||||||
$(document).endlessScroll
|
|
||||||
bottomPixels: 400
|
|
||||||
fireDelay: 1000
|
|
||||||
fireOnce: true
|
|
||||||
ceaseFire: ->
|
|
||||||
Pager.disable
|
|
||||||
|
|
||||||
callback: (i) ->
|
|
||||||
$(".loading").show()
|
|
||||||
Pager.getOld()
|
|
|
@ -8,15 +8,3 @@ $ ->
|
||||||
|
|
||||||
# Go up the hierarchy and show the corresponding submission feedback element
|
# Go up the hierarchy and show the corresponding submission feedback element
|
||||||
$(@).closest('fieldset').find('.update-feedback').show('highlight', {color: '#DFF0D8'}, 500)
|
$(@).closest('fieldset').find('.update-feedback').show('highlight', {color: '#DFF0D8'}, 500)
|
||||||
|
|
||||||
$('.update-username form').on 'ajax:before', ->
|
|
||||||
$('.loading-gif').show()
|
|
||||||
$(this).find('.update-success').hide()
|
|
||||||
$(this).find('.update-failed').hide()
|
|
||||||
|
|
||||||
$('.update-username form').on 'ajax:complete', ->
|
|
||||||
$(this).find('.btn-save').enableButton()
|
|
||||||
$(this).find('.loading-gif').hide()
|
|
||||||
|
|
||||||
$('.update-notifications').on 'ajax:complete', ->
|
|
||||||
$(this).find('.btn-save').enableButton()
|
|
||||||
|
|
|
@ -1,4 +1,8 @@
|
||||||
window.Projects = ->
|
window.Projects = ->
|
||||||
|
$('#project_name').on 'change', ->
|
||||||
|
slug = slugify $(@).val()
|
||||||
|
$('#project_code, #project_path').val slug
|
||||||
|
|
||||||
$('.new_project, .edit_project').on 'ajax:before', ->
|
$('.new_project, .edit_project').on 'ajax:before', ->
|
||||||
$('.project_new_holder, .project_edit_holder').hide()
|
$('.project_new_holder, .project_edit_holder').hide()
|
||||||
$('.save-project-loader').show()
|
$('.save-project-loader').show()
|
||||||
|
@ -19,17 +23,9 @@ $ ->
|
||||||
$('.project-refs-select').on 'change', ->
|
$('.project-refs-select').on 'change', ->
|
||||||
$(@).parents('form').submit()
|
$(@).parents('form').submit()
|
||||||
|
|
||||||
$('#project_issues_enabled').change ->
|
class @GraphNav
|
||||||
if ($(this).is(':checked') == true)
|
@init: ->
|
||||||
$('#project_issues_tracker').removeAttr('disabled')
|
$('.graph svg').css 'position', 'relative'
|
||||||
else
|
$('body').bind 'keyup', (e) ->
|
||||||
$('#project_issues_tracker').attr('disabled', 'disabled')
|
$('.graph svg').animate(left: '+=400') if e.keyCode is 37 # left
|
||||||
|
$('.graph svg').animate(left: '-=400') if e.keyCode is 39 # right
|
||||||
$('#project_issues_tracker').change()
|
|
||||||
|
|
||||||
$('#project_issues_tracker').change ->
|
|
||||||
if ($(this).val() == gon.default_issues_tracker || $(this).is(':disabled'))
|
|
||||||
$('#project_issues_tracker_id').attr('disabled', 'disabled')
|
|
||||||
else
|
|
||||||
$('#project_issues_tracker_id').removeAttr('disabled')
|
|
||||||
|
|
||||||
|
|
|
@ -6,12 +6,17 @@ $ ->
|
||||||
$('span.log_loading:first').removeClass('hide')
|
$('span.log_loading:first').removeClass('hide')
|
||||||
|
|
||||||
$('#tree-slider .tree-item-file-name a, .breadcrumb li > a').live "click", ->
|
$('#tree-slider .tree-item-file-name a, .breadcrumb li > a').live "click", ->
|
||||||
$("#tree-content-holder").hide("slide", { direction: "left" }, 400)
|
$("#tree-content-holder").hide("slide", { direction: "left" }, 150)
|
||||||
|
|
||||||
# Make the entire tree-item row clickable, but not if clicking another link (like a commit message)
|
# Make the entire tree-item row clickable, but not if clicking another link (like a commit message)
|
||||||
$("#tree-slider .tree-item").live 'click', (e) ->
|
$("#tree-slider .tree-item").live 'click', (e) ->
|
||||||
$('.tree-item-file-name a', this).trigger('click') if (e.target.nodeName != "A")
|
$('.tree-item-file-name a', this).trigger('click') if (e.target.nodeName != "A")
|
||||||
|
|
||||||
|
# Show/Hide the loading spinner
|
||||||
|
$('#tree-slider .tree-item-file-name a, .breadcrumb a, .project-refs-form').live
|
||||||
|
"ajax:beforeSend": -> $('.tree_progress').addClass("loading")
|
||||||
|
"ajax:complete": -> $('.tree_progress').removeClass("loading")
|
||||||
|
|
||||||
# Maintain forward/back history while browsing the file tree
|
# Maintain forward/back history while browsing the file tree
|
||||||
((window) ->
|
((window) ->
|
||||||
History = window.History
|
History = window.History
|
||||||
|
@ -23,17 +28,12 @@ $ ->
|
||||||
return false
|
return false
|
||||||
|
|
||||||
$('#tree-slider .tree-item-file-name a, .breadcrumb li > a').live 'click', (e) ->
|
$('#tree-slider .tree-item-file-name a, .breadcrumb li > a').live 'click', (e) ->
|
||||||
History.pushState(null, null, decodeURIComponent($(@).attr('href')))
|
History.pushState(null, null, $(@).attr('href'))
|
||||||
return false
|
return false
|
||||||
|
|
||||||
History.Adapter.bind window, 'statechange', ->
|
History.Adapter.bind window, 'statechange', ->
|
||||||
state = History.getState()
|
state = History.getState()
|
||||||
$.ajax({
|
window.ajaxGet(state.url)
|
||||||
url: state.url,
|
|
||||||
dataType: 'script',
|
|
||||||
beforeSend: -> $('.tree_progress').addClass("loading"),
|
|
||||||
complete: -> $('.tree_progress').removeClass("loading")
|
|
||||||
})
|
|
||||||
)(window)
|
)(window)
|
||||||
|
|
||||||
# See if there are lines selected
|
# See if there are lines selected
|
||||||
|
|
|
@ -1,36 +0,0 @@
|
||||||
$ ->
|
|
||||||
userFormatResult = (user) ->
|
|
||||||
avatar = gon.gravatar_url
|
|
||||||
avatar = avatar.replace('%{hash}', md5(user.email))
|
|
||||||
avatar = avatar.replace('%{size}', '24')
|
|
||||||
|
|
||||||
markup = "<div class='user-result'>"
|
|
||||||
markup += "<div class='user-image'><img class='avatar s24' src='" + avatar + "'></div>"
|
|
||||||
markup += "<div class='user-name'>" + user.name + "</div>"
|
|
||||||
markup += "<div class='user-username'>" + user.username + "</div>"
|
|
||||||
markup += "</div>"
|
|
||||||
markup
|
|
||||||
|
|
||||||
userFormatSelection = (user) ->
|
|
||||||
user.name
|
|
||||||
|
|
||||||
$('.ajax-users-select').select2
|
|
||||||
placeholder: "Search for a user"
|
|
||||||
multiple: $('.ajax-users-select').hasClass('multiselect')
|
|
||||||
minimumInputLength: 0
|
|
||||||
query: (query) ->
|
|
||||||
Api.users query.term, (users) ->
|
|
||||||
data = { results: users }
|
|
||||||
query.callback(data)
|
|
||||||
|
|
||||||
initSelection: (element, callback) ->
|
|
||||||
id = $(element).val()
|
|
||||||
if id isnt ""
|
|
||||||
Api.user(id, callback)
|
|
||||||
|
|
||||||
|
|
||||||
formatResult: userFormatResult
|
|
||||||
formatSelection: userFormatSelection
|
|
||||||
dropdownCssClass: "ajax-users-dropdown"
|
|
||||||
escapeMarkup: (m) -> # we do not want to escape markup since we are displaying html in results
|
|
||||||
m
|
|
|
@ -1,83 +0,0 @@
|
||||||
@Wall =
|
|
||||||
note_ids: []
|
|
||||||
project_id: null
|
|
||||||
|
|
||||||
init: (project_id) ->
|
|
||||||
Wall.project_id = project_id
|
|
||||||
Wall.getContent()
|
|
||||||
Wall.initRefresh()
|
|
||||||
Wall.initForm()
|
|
||||||
|
|
||||||
#
|
|
||||||
# Gets an initial set of notes.
|
|
||||||
#
|
|
||||||
getContent: ->
|
|
||||||
Api.notes Wall.project_id, (notes) ->
|
|
||||||
$.each notes, (i, note) ->
|
|
||||||
# render note if it not present in loaded list
|
|
||||||
# or skip if rendered
|
|
||||||
if $.inArray(note.id, Wall.note_ids) == -1
|
|
||||||
Wall.note_ids.push(note.id)
|
|
||||||
Wall.renderNote(note)
|
|
||||||
Wall.scrollDown()
|
|
||||||
$("abbr.timeago").timeago()
|
|
||||||
|
|
||||||
initRefresh: ->
|
|
||||||
setInterval("Wall.refresh()", 10000)
|
|
||||||
|
|
||||||
refresh: ->
|
|
||||||
Wall.getContent()
|
|
||||||
|
|
||||||
scrollDown: ->
|
|
||||||
notes = $('ul.notes')
|
|
||||||
$('body, html').scrollTop(notes.height())
|
|
||||||
|
|
||||||
initForm: ->
|
|
||||||
form = $('.wall-note-form')
|
|
||||||
form.find("#target_type").val('wall')
|
|
||||||
|
|
||||||
form.on 'ajax:success', ->
|
|
||||||
Wall.refresh()
|
|
||||||
form.find(".js-note-text").val("").trigger("input")
|
|
||||||
|
|
||||||
form.on 'ajax:complete', ->
|
|
||||||
form.find(".js-comment-button").removeAttr('disabled')
|
|
||||||
form.find(".js-comment-button").removeClass('disabled')
|
|
||||||
|
|
||||||
form.on "click", ".js-choose-note-attachment-button", ->
|
|
||||||
form.find(".js-note-attachment-input").click()
|
|
||||||
|
|
||||||
form.on "change", ".js-note-attachment-input", ->
|
|
||||||
filename = $(this).val().replace(/^.*[\\\/]/, '')
|
|
||||||
form.find(".js-attachment-filename").text(filename)
|
|
||||||
|
|
||||||
form.find('.note_text').keydown (e) ->
|
|
||||||
if e.ctrlKey && e.keyCode == 13
|
|
||||||
form.find('.js-comment-button').submit()
|
|
||||||
|
|
||||||
form.show()
|
|
||||||
|
|
||||||
renderNote: (note) ->
|
|
||||||
template = Wall.noteTemplate()
|
|
||||||
template = template.replace('{{author_name}}', note.author.name)
|
|
||||||
template = template.replace('{{created_at}}', note.created_at)
|
|
||||||
template = template.replace('{{text}}', linkify(sanitize(note.body)))
|
|
||||||
|
|
||||||
if note.attachment
|
|
||||||
file = '<i class="icon-paper-clip"/><a href="/files/note/' + note.id + '/' + note.attachment + '">' + note.attachment + '</a>'
|
|
||||||
else
|
|
||||||
file = ''
|
|
||||||
template = template.replace('{{file}}', file)
|
|
||||||
|
|
||||||
|
|
||||||
$('ul.notes').append(template)
|
|
||||||
|
|
||||||
noteTemplate: ->
|
|
||||||
return '<li>
|
|
||||||
<strong class="wall-author">{{author_name}}</strong>
|
|
||||||
<span class="wall-text">
|
|
||||||
{{text}}
|
|
||||||
<span class="wall-file">{{file}}</span>
|
|
||||||
</span>
|
|
||||||
<abbr class="timeago" title="{{created_at}}">{{created_at}}</abbr>
|
|
||||||
</li>'
|
|
11
app/assets/stylesheets/application.css
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
/*
|
||||||
|
* This is a manifest file that'll automatically include all the stylesheets available in this directory
|
||||||
|
* and any sub-directories. You're free to add application-wide styles to this file and they'll appear at
|
||||||
|
* the top of the compiled file, but it's generally better to create a new file per style scope.
|
||||||
|
*= require jquery.ui.all
|
||||||
|
*= require jquery.ui.aristo
|
||||||
|
*= require jquery.atwho
|
||||||
|
*= require chosen
|
||||||
|
*= require_self
|
||||||
|
*= require main
|
||||||
|
*/
|
|
@ -1,57 +0,0 @@
|
||||||
/*
|
|
||||||
* This is a manifest file that'll automatically include all the stylesheets available in this directory
|
|
||||||
* and any sub-directories. You're free to add application-wide styles to this file and they'll appear at
|
|
||||||
* the top of the compiled file, but it's generally better to create a new file per style scope.
|
|
||||||
*= require jquery.ui.gitlab
|
|
||||||
*= require jquery.atwho
|
|
||||||
*= require chosen
|
|
||||||
*= require select2
|
|
||||||
*= require_self
|
|
||||||
*/
|
|
||||||
|
|
||||||
/**
|
|
||||||
* GitLab bootstrap:
|
|
||||||
*/
|
|
||||||
@import "gitlab_bootstrap.scss";
|
|
||||||
|
|
||||||
@import "common.scss";
|
|
||||||
@import "selects.scss";
|
|
||||||
|
|
||||||
@import "sections/header.scss";
|
|
||||||
@import "sections/nav.scss";
|
|
||||||
@import "sections/commits.scss";
|
|
||||||
@import "sections/issues.scss";
|
|
||||||
@import "sections/projects.scss";
|
|
||||||
@import "sections/snippets.scss";
|
|
||||||
@import "sections/votes.scss";
|
|
||||||
@import "sections/merge_requests.scss";
|
|
||||||
@import "sections/graph.scss";
|
|
||||||
@import "sections/events.scss";
|
|
||||||
@import "sections/themes.scss";
|
|
||||||
@import "sections/tree.scss";
|
|
||||||
@import "sections/notes.scss";
|
|
||||||
@import "sections/profile.scss";
|
|
||||||
@import "sections/login.scss";
|
|
||||||
@import "sections/editor.scss";
|
|
||||||
@import "sections/admin.scss";
|
|
||||||
@import "sections/wiki.scss";
|
|
||||||
@import "sections/wall.scss";
|
|
||||||
|
|
||||||
@import "highlight/white.scss";
|
|
||||||
@import "highlight/dark.scss";
|
|
||||||
@import "highlight/solarized_dark.scss";
|
|
||||||
|
|
||||||
/**
|
|
||||||
* UI themes:
|
|
||||||
*/
|
|
||||||
@import "themes/ui_basic.scss";
|
|
||||||
@import "themes/ui_mars.scss";
|
|
||||||
@import "themes/ui_modern.scss";
|
|
||||||
@import "themes/ui_gray.scss";
|
|
||||||
@import "themes/ui_color.scss";
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Styles for JS behaviors.
|
|
||||||
*/
|
|
||||||
@import "behaviors.scss";
|
|
||||||
|
|
|
@ -1,14 +0,0 @@
|
||||||
// Details
|
|
||||||
//--------
|
|
||||||
.js-details-container .content { display: none; }
|
|
||||||
.js-details-container .content.hide { display: block; }
|
|
||||||
.js-details-container.open .content { display: block; }
|
|
||||||
.js-details-container.open .content.hide { display: none; }
|
|
||||||
|
|
||||||
|
|
||||||
// Toggler
|
|
||||||
//--------
|
|
||||||
.js-toggler-container .turn-on { display: inherit; }
|
|
||||||
.js-toggler-container .turn-off { display: none; }
|
|
||||||
.js-toggler-container.on .turn-on { display: none; }
|
|
||||||
.js-toggler-container.on .turn-off { display: inherit; }
|
|
|
@ -1,7 +1,3 @@
|
||||||
html {
|
|
||||||
overflow-y: scroll;
|
|
||||||
}
|
|
||||||
|
|
||||||
/** LAYOUT **/
|
/** LAYOUT **/
|
||||||
|
|
||||||
body {
|
body {
|
||||||
|
@ -17,12 +13,20 @@ body {
|
||||||
margin:0 0;
|
margin:0 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.container .sidebar {
|
||||||
|
width: 200px;
|
||||||
|
height:100%;
|
||||||
|
min-height:450px;
|
||||||
|
float:right;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
.visible_link,
|
.visible_link,
|
||||||
.author_link {
|
.author_link {
|
||||||
color: $link_color;
|
color: $link_color;
|
||||||
}
|
}
|
||||||
|
|
||||||
.help li { color:$style_color; }
|
.help li { color:#111 }
|
||||||
|
|
||||||
.back_link {
|
.back_link {
|
||||||
text-decoration:underline;
|
text-decoration:underline;
|
||||||
|
@ -61,23 +65,28 @@ table a code {
|
||||||
background: url(ajax_loader.gif) no-repeat center center;
|
background: url(ajax_loader.gif) no-repeat center center;
|
||||||
width:40px;
|
width:40px;
|
||||||
height:40px;
|
height:40px;
|
||||||
&.loading-gray {
|
|
||||||
background: url(ajax_loader_gray.gif) no-repeat center center;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/** FLASH message **/
|
/** FLASH message **/
|
||||||
.flash-container {
|
#flash_container {
|
||||||
display: none;
|
height:50px;
|
||||||
.alert {
|
position:fixed;
|
||||||
|
z-index:10001;
|
||||||
|
top:0px;
|
||||||
|
width:100%;
|
||||||
|
margin-bottom:15px;
|
||||||
|
overflow:hidden;
|
||||||
|
background:white;
|
||||||
cursor:pointer;
|
cursor:pointer;
|
||||||
margin: 0;
|
border-bottom:1px solid #ccc;
|
||||||
text-align: center;
|
|
||||||
border-radius: 0;
|
|
||||||
|
|
||||||
span {
|
h4 {
|
||||||
font-size: 14px;
|
color:#666;
|
||||||
}
|
font-size:18px;
|
||||||
|
line-height:38px;
|
||||||
|
padding-top:5px;
|
||||||
|
margin:2px;
|
||||||
|
font-weight:normal;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -85,17 +94,28 @@ table a code {
|
||||||
margin-right:50px
|
margin-right:50px
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.handle:hover {
|
||||||
|
cursor:move;
|
||||||
|
}
|
||||||
|
|
||||||
span.update-author {
|
span.update-author {
|
||||||
display:block;
|
display:block;
|
||||||
|
}
|
||||||
|
span.update-author {
|
||||||
color:#999;
|
color:#999;
|
||||||
font-weight:normal;
|
font-weight:normal;
|
||||||
font-style:italic;
|
font-style:italic;
|
||||||
strong {
|
}
|
||||||
|
span.update-author strong {
|
||||||
font-weight:bold;
|
font-weight:bold;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
|
/** UPDATE ITEM **/
|
||||||
|
span.update-author {
|
||||||
|
display:block;
|
||||||
|
}
|
||||||
|
/** END UPDATE ITEM **/
|
||||||
.dashboard-loader {
|
.dashboard-loader {
|
||||||
float:left;
|
float:left;
|
||||||
margin:10px;
|
margin:10px;
|
||||||
|
@ -111,10 +131,34 @@ span.update-author {
|
||||||
}
|
}
|
||||||
|
|
||||||
.label {
|
.label {
|
||||||
padding: 0px 4px;
|
background-color: #474D57;
|
||||||
font-size: 10px;
|
|
||||||
font-style: normal;
|
&.label-tag {
|
||||||
background-color: $link_color;
|
background: none;
|
||||||
|
border: none;
|
||||||
|
padding:4px 6px;
|
||||||
|
color:#444;
|
||||||
|
text-shadow:0 0 1px #fff;
|
||||||
|
|
||||||
|
&.grouped {
|
||||||
|
float: left;
|
||||||
|
margin-right: 6px;
|
||||||
|
padding: 6px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
&.label-issue {
|
||||||
|
background-color: #eee;
|
||||||
|
border: 1px solid #ccc;
|
||||||
|
padding:4px 6px;
|
||||||
|
color:#444;
|
||||||
|
text-shadow:0 0 1px #fff;
|
||||||
|
|
||||||
|
&.grouped {
|
||||||
|
float: left;
|
||||||
|
margin-right: 6px;
|
||||||
|
padding: 6px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
&.label-success {
|
&.label-success {
|
||||||
background-color: #8D8;
|
background-color: #8D8;
|
||||||
|
@ -173,6 +217,17 @@ ul.breadcrumb {
|
||||||
font-weight:bold;
|
font-weight:bold;
|
||||||
font-size:14px;
|
font-size:14px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.arrow {
|
||||||
|
background: url("images.png") no-repeat -85px -77px;
|
||||||
|
width: 19px;
|
||||||
|
height: 16px;
|
||||||
|
float: left;
|
||||||
|
position: relative;
|
||||||
|
left: -10px;
|
||||||
|
padding:0;
|
||||||
|
margin:0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type=text] {
|
input[type=text] {
|
||||||
|
@ -182,6 +237,10 @@ input[type=text] {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
input.git_clone_url {
|
||||||
|
width:325px;
|
||||||
|
}
|
||||||
|
|
||||||
.merge-request-form-holder {
|
.merge-request-form-holder {
|
||||||
select {
|
select {
|
||||||
width:300px;
|
width:300px;
|
||||||
|
@ -203,6 +262,21 @@ input[type=text] {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/** bordered list **/
|
||||||
|
ul.bordered-list {
|
||||||
|
margin:5px 0px;
|
||||||
|
padding:0px;
|
||||||
|
li {
|
||||||
|
padding: 5px 0;
|
||||||
|
border-bottom: 1px solid #EEE;
|
||||||
|
overflow: hidden;
|
||||||
|
display: block;
|
||||||
|
margin:0px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
ul.bordered-list li:last-child { border:none }
|
||||||
|
|
||||||
.line_holder {
|
.line_holder {
|
||||||
&:hover {
|
&:hover {
|
||||||
td {
|
td {
|
||||||
|
@ -240,6 +314,98 @@ p.time {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.ico {
|
||||||
|
background: url("images.png") no-repeat -85px -77px;
|
||||||
|
width: 19px;
|
||||||
|
height: 16px;
|
||||||
|
float: left;
|
||||||
|
position: relative;
|
||||||
|
margin-right: 10px;
|
||||||
|
top: 8px;
|
||||||
|
|
||||||
|
&.project {
|
||||||
|
background-position: -37px -77px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.activities {
|
||||||
|
background-position:-162px -22px;
|
||||||
|
}
|
||||||
|
&.projects {
|
||||||
|
background-position:-209px -21px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.leftbar {
|
||||||
|
h5, .title {
|
||||||
|
padding:5px 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
h4 {
|
||||||
|
font-size:14px;
|
||||||
|
padding:2px 10px;
|
||||||
|
color:#666;
|
||||||
|
border-bottom:1px solid #f1f1f1;
|
||||||
|
}
|
||||||
|
a:last-child h4 { border:none; }
|
||||||
|
|
||||||
|
a:hover {
|
||||||
|
h4 {
|
||||||
|
color:#111;
|
||||||
|
background:$hover;
|
||||||
|
border-color:#CCC;
|
||||||
|
.ico.project {
|
||||||
|
background-position:-209px -21px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.bottom {
|
||||||
|
padding:10px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.votes {
|
||||||
|
font-size: 13px;
|
||||||
|
line-height: 15px;
|
||||||
|
.progress {
|
||||||
|
height: 4px;
|
||||||
|
margin: 0;
|
||||||
|
.bar {
|
||||||
|
float: left;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
.bar-success {
|
||||||
|
background-color: #468847;
|
||||||
|
@include bg-gradient(#62C462, #51A351);
|
||||||
|
}
|
||||||
|
.bar-danger {
|
||||||
|
background-color: #B94A48;
|
||||||
|
@include bg-gradient(#EE5F5B, #BD362F);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.upvotes {
|
||||||
|
display: inline-block;
|
||||||
|
color: #468847;
|
||||||
|
}
|
||||||
|
.downvotes {
|
||||||
|
display: inline-block;
|
||||||
|
color: #B94A48;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.votes-block {
|
||||||
|
margin: 14px 6px 6px 0;
|
||||||
|
.downvotes {
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.votes-inline {
|
||||||
|
display: inline-block;
|
||||||
|
margin: 0 8px;
|
||||||
|
.progress {
|
||||||
|
display: inline-block;
|
||||||
|
padding: 0 0 2px;
|
||||||
|
width: 45px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/* Fix for readme code (stopped it from being yellow) */
|
/* Fix for readme code (stopped it from being yellow) */
|
||||||
.readme {
|
.readme {
|
||||||
|
@ -252,35 +418,31 @@ p.time {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.search-holder {
|
|
||||||
label, input {
|
|
||||||
height: 30px;
|
|
||||||
padding: 0;
|
|
||||||
font-size: 14px;
|
|
||||||
}
|
|
||||||
label {
|
|
||||||
line-height: 30px;
|
|
||||||
color: #666;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.highlight_word {
|
.highlight_word {
|
||||||
border-bottom: 2px solid #F90;
|
background:#EEDC94;
|
||||||
}
|
}
|
||||||
|
|
||||||
.status_info {
|
.status_info {
|
||||||
font-size:14px;
|
font-size:14px;
|
||||||
padding:5px 15px;
|
padding:5px 15px;
|
||||||
line-height: 26px;
|
line-height:24px;
|
||||||
|
width:60px;
|
||||||
text-align:center;
|
text-align:center;
|
||||||
float: right;
|
float:left;
|
||||||
position: relative;
|
margin-right:20px;
|
||||||
top: -5px;
|
|
||||||
@include border-radius(4px);
|
|
||||||
|
|
||||||
|
&.success {
|
||||||
|
background: #5BB75B;
|
||||||
|
color: white;
|
||||||
|
text-shadow: 0 1px #111;
|
||||||
|
border-color: #9A9;
|
||||||
|
}
|
||||||
&.error {
|
&.error {
|
||||||
background: #DA4E49;
|
background: #DA4E49;
|
||||||
color: #FFF;
|
border-color: #BD362F;
|
||||||
|
color: white;
|
||||||
|
text-shadow: 0 1px #111;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -288,7 +450,7 @@ p.time {
|
||||||
background: #E3E5EA;
|
background: #E3E5EA;
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
margin-top:5px;
|
margin-top:5px;
|
||||||
@include border-radius(5px);
|
border-radius: 5px;
|
||||||
text-shadow: none;
|
text-shadow: none;
|
||||||
color: #999;
|
color: #999;
|
||||||
line-height: 16px;
|
line-height: 16px;
|
||||||
|
@ -299,6 +461,16 @@ p.time {
|
||||||
height: 150px;
|
height: 150px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.gitlab_pagination {
|
||||||
|
span a { color:$link_color; }
|
||||||
|
.prev, .next, .current, .page a {
|
||||||
|
padding:10px;
|
||||||
|
}
|
||||||
|
.current {
|
||||||
|
border-bottom:2px solid $style_color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Fixes alignment on notes.
|
// Fixes alignment on notes.
|
||||||
.new_note {
|
.new_note {
|
||||||
label {
|
label {
|
||||||
|
@ -313,6 +485,10 @@ li.note {
|
||||||
li {
|
li {
|
||||||
border-bottom:none !important;
|
border-bottom:none !important;
|
||||||
}
|
}
|
||||||
|
.file {
|
||||||
|
padding-left:20px;
|
||||||
|
background:url("icon-attachment.png") no-repeat left center;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -358,7 +534,6 @@ li.note {
|
||||||
font-size:48px;
|
font-size:48px;
|
||||||
padding:20px;
|
padding:20px;
|
||||||
text-align:center;
|
text-align:center;
|
||||||
font-weight: normal;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -389,7 +564,7 @@ li.note {
|
||||||
|
|
||||||
|
|
||||||
.supp_diff_link,
|
.supp_diff_link,
|
||||||
.show-all-commits {
|
.mr_show_all_commits {
|
||||||
cursor:pointer;
|
cursor:pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -427,23 +602,6 @@ li.note {
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
background: #FEE;
|
background: #FEE;
|
||||||
padding-left: 20px;
|
padding-left: 20px;
|
||||||
|
|
||||||
&.centered {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.warning_message {
|
|
||||||
border-left: 4px solid #ed9;
|
|
||||||
color: #b90;
|
|
||||||
padding: 10px;
|
|
||||||
margin-bottom: 10px;
|
|
||||||
background: #ffffe6;
|
|
||||||
padding-left: 20px;
|
|
||||||
|
|
||||||
&.centered {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.oauth_select_holder {
|
.oauth_select_holder {
|
||||||
|
@ -483,15 +641,10 @@ pre {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.milestone {
|
.milestone .progress {
|
||||||
&.milestone-closed {
|
|
||||||
background: #eee;
|
|
||||||
}
|
|
||||||
.progress {
|
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
margin-top:4px;
|
margin-top:4px;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
.float-link {
|
.float-link {
|
||||||
float:left;
|
float:left;
|
||||||
|
@ -500,58 +653,3 @@ pre {
|
||||||
margin-right:5px;
|
margin-right:5px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.dashboard-search-filter {
|
|
||||||
padding:5px;
|
|
||||||
|
|
||||||
.search-text-input {
|
|
||||||
float:left;
|
|
||||||
@extend .span2;
|
|
||||||
}
|
|
||||||
.btn {
|
|
||||||
margin-left: 5px;
|
|
||||||
float:left;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
h1.http_status_code {
|
|
||||||
font-size: 56px;
|
|
||||||
line-height: 100px;
|
|
||||||
font-weight: normal;
|
|
||||||
color: #456;
|
|
||||||
}
|
|
||||||
|
|
||||||
.control-group {
|
|
||||||
.controls {
|
|
||||||
span {
|
|
||||||
&.descr {
|
|
||||||
position: relative;
|
|
||||||
top: 2px;
|
|
||||||
left: 5px;
|
|
||||||
color: #666;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
img.emoji {
|
|
||||||
height: 20px;
|
|
||||||
vertical-align: middle;
|
|
||||||
width: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.appear-data {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.label-branch {
|
|
||||||
@include border-radius(4px);
|
|
||||||
padding: 2px 4px;
|
|
||||||
border: none;
|
|
||||||
font-size: 14px;
|
|
||||||
background: #474D57;
|
|
||||||
color: #fff;
|
|
||||||
font-family: $monospace_font;
|
|
||||||
text-shadow: 0 1px 1px #111;
|
|
||||||
font-weight: normal;
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,28 +0,0 @@
|
||||||
/** Override bootstrap variables **/
|
|
||||||
$baseFontSize: 13px !default;
|
|
||||||
$baseLineHeight: 18px !default;
|
|
||||||
|
|
||||||
// BOOTSTRAP
|
|
||||||
@import "bootstrap";
|
|
||||||
@import "bootstrap/responsive-utilities";
|
|
||||||
@import "bootstrap/responsive-1200px-min";
|
|
||||||
|
|
||||||
@import "font-awesome";
|
|
||||||
|
|
||||||
/**
|
|
||||||
* GitLab bootstrap.
|
|
||||||
* Overrides some styles of twitter bootstrap.
|
|
||||||
* Also give some common classes for GitLab app
|
|
||||||
*/
|
|
||||||
@import "gitlab_bootstrap/variables.scss";
|
|
||||||
@import "gitlab_bootstrap/fonts.scss";
|
|
||||||
@import "gitlab_bootstrap/mixins.scss";
|
|
||||||
@import "gitlab_bootstrap/avatar.scss";
|
|
||||||
@import "gitlab_bootstrap/nav.scss";
|
|
||||||
@import "gitlab_bootstrap/common.scss";
|
|
||||||
@import "gitlab_bootstrap/typography.scss";
|
|
||||||
@import "gitlab_bootstrap/buttons.scss";
|
|
||||||
@import "gitlab_bootstrap/blocks.scss";
|
|
||||||
@import "gitlab_bootstrap/files.scss";
|
|
||||||
@import "gitlab_bootstrap/tables.scss";
|
|
||||||
@import "gitlab_bootstrap/lists.scss";
|
|
|
@ -1,8 +0,0 @@
|
||||||
/** AVATARS **/
|
|
||||||
img.avatar { float: left; margin-right: 12px; width: 40px; border: 1px solid #ddd; padding: 1px; }
|
|
||||||
img.avatar.s16 { width: 16px; height: 16px; margin-right: 6px; }
|
|
||||||
img.avatar.s24 { width: 24px; height: 24px; margin-right: 8px; }
|
|
||||||
img.avatar.s32 { width: 32px; height: 32px; margin-right: 10px; }
|
|
||||||
img.avatar.s90 { width: 90px; height: 90px; margin-right: 15px; }
|
|
||||||
img.lil_av { padding-left: 4px; padding-right: 3px; }
|
|
||||||
img.small { width: 80px; }
|
|
|
@ -1,33 +1,23 @@
|
||||||
/**
|
/**
|
||||||
* ===================================
|
* ===================================
|
||||||
* Contain UI block elements:
|
* Contain 3 main UI block elements:
|
||||||
* .ui-box - for any block & widgets
|
* .main_box - for show pages
|
||||||
|
* .ui-box - for simple block & widgets
|
||||||
* ===================================
|
* ===================================
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* UI Block
|
* UI box element
|
||||||
|
* contains top, middle, bottom blocks
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
.ui-box {
|
.main_box {
|
||||||
background: #F9F9F9;
|
@extend .borders;
|
||||||
margin-bottom: 25px;
|
@extend .prepend-top-20;
|
||||||
border: 1px solid #CCC;
|
@extend .append-bottom-20;
|
||||||
@include solid-shade;
|
border-width:1px;
|
||||||
|
@include solid_shade;
|
||||||
|
|
||||||
&.ui-box-show {
|
|
||||||
margin:20px 0;
|
|
||||||
background: #FFF;
|
|
||||||
}
|
|
||||||
|
|
||||||
&.ui-box-danger {
|
|
||||||
.title {
|
|
||||||
@include linear-gradient(#F26E5E, #bd362f);
|
|
||||||
color: #fff;
|
|
||||||
text-shadow: 0 1px 1px #900;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
img { max-width: 100%; }
|
img { max-width: 100%; }
|
||||||
|
|
||||||
|
@ -37,30 +27,21 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.ui-box-head,
|
.top_box_content,
|
||||||
.ui-box-body,
|
.middle_box_content,
|
||||||
.ui-box-bottom {
|
.bottom_box_content {
|
||||||
padding:15px;
|
padding:15px;
|
||||||
word-wrap: break-word;
|
|
||||||
|
|
||||||
.clearfix {
|
pre {
|
||||||
|
background: none !important;
|
||||||
margin:0;
|
margin:0;
|
||||||
|
border:none;
|
||||||
|
padding:0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.ui-box-head {
|
.middle_box_content {
|
||||||
.box-title {
|
border-radius:0;
|
||||||
color: $style_color;
|
|
||||||
font-size: 18px;
|
|
||||||
font-weight: normal;
|
|
||||||
line-height: 28px;
|
|
||||||
}
|
|
||||||
h3 {
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.ui-box-body {
|
|
||||||
border:none;
|
border:none;
|
||||||
font-size:12px;
|
font-size:12px;
|
||||||
background-color:#f5f5f5;
|
background-color:#f5f5f5;
|
||||||
|
@ -68,9 +49,21 @@
|
||||||
border-top:1px solid #eee;
|
border-top:1px solid #eee;
|
||||||
}
|
}
|
||||||
|
|
||||||
.ui-box-bottom {
|
.bottom_box_content {
|
||||||
border-top:1px solid #eee;
|
border-top:1px solid #eee;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Big UI Block for show page content
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
.ui-box {
|
||||||
|
background:#F9F9F9;
|
||||||
|
margin-bottom: 25px;
|
||||||
|
@include round-borders-all(4px);
|
||||||
|
border-color: #CCC;
|
||||||
|
@include solid_shade;
|
||||||
|
|
||||||
&.white {
|
&.white {
|
||||||
background:#fff;
|
background:#fff;
|
||||||
|
@ -80,50 +73,40 @@
|
||||||
margin:0;
|
margin:0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.title {
|
h5, .title {
|
||||||
|
padding: 0 10px;
|
||||||
|
@include round-borders-top(4px);
|
||||||
@include bg-gray-gradient;
|
@include bg-gray-gradient;
|
||||||
border-bottom: 1px solid #CCC;
|
border-bottom: 1px solid #bbb;
|
||||||
color: #456;
|
|
||||||
font-size: 16px;
|
|
||||||
text-shadow: 0 1px 1px #fff;
|
|
||||||
padding: 0px 10px;
|
|
||||||
line-height: 36px;
|
|
||||||
font-size: 14px;
|
|
||||||
font-weight: normal;
|
|
||||||
|
|
||||||
> a {
|
&.small {
|
||||||
text-shadow: 0 1px 1px #fff;
|
line-height: 28px;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height:28px;
|
||||||
|
text-shadow: 0 1px 1px white;
|
||||||
}
|
}
|
||||||
|
|
||||||
form {
|
form {
|
||||||
margin-bottom: 0;
|
padding:9px 0;
|
||||||
margin-top: 0;
|
margin:0px;
|
||||||
}
|
|
||||||
|
|
||||||
.btn {
|
|
||||||
position: relative;
|
|
||||||
top: -2px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav-pills {
|
.nav-pills {
|
||||||
> li {
|
li {
|
||||||
> a {
|
padding:3px 0;
|
||||||
padding: 13px;
|
&.active a { background-color:$style_color; }
|
||||||
margin: 0;
|
a {
|
||||||
font-size: 13px;
|
border-radius:7px;
|
||||||
}
|
|
||||||
&.active {
|
|
||||||
> a {
|
|
||||||
background: #D5D5D5;
|
|
||||||
color: $style_color;
|
|
||||||
@include border-radius(0);
|
|
||||||
border-radius: 0;
|
|
||||||
border-left: 1px solid #CCC;
|
|
||||||
border-right: 1px solid #CCC;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.bottom {
|
||||||
|
@include bg-gray-gradient;
|
||||||
|
@include round-borders-bottom(4px);
|
||||||
|
border-bottom:none;
|
||||||
|
border-top: 1px solid #bbb;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.padded {
|
&.padded {
|
||||||
|
@ -142,7 +125,6 @@
|
||||||
color:#777;
|
color:#777;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.row_title {
|
.row_title {
|
||||||
font-weight:bold;
|
font-weight:bold;
|
||||||
color:#444;
|
color:#444;
|
||||||
|
@ -152,22 +134,20 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.form-holder {
|
li, .wll {
|
||||||
padding-top: 20px;
|
padding:10px;
|
||||||
form {
|
&:first-child {
|
||||||
margin-bottom: 0;
|
@include round-borders-top(4px);
|
||||||
legend {
|
border-top:none;
|
||||||
text-indent: 10px;
|
|
||||||
}
|
|
||||||
.form-actions {
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&:last-child {
|
||||||
|
@include round-borders-bottom(4px);
|
||||||
|
border:none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.tab-pane {
|
.ui-box-body {
|
||||||
.ui-box {
|
padding:10px;
|
||||||
margin: 3px 3px 25px 3px;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,23 +1,20 @@
|
||||||
.btn {
|
.btn {
|
||||||
@include linear-gradient(#f1f1f1, #e1e1e1);
|
@include bg-gradient(#f7f7f7, #d5d5d5);
|
||||||
text-shadow: 0 1px 1px #FFF;
|
border-color:#aaa;
|
||||||
border-color: #BBB;
|
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background: #f1f1f1;
|
@include bg-gray-gradient;
|
||||||
@include linear-gradient(#fAfAfA, #f1f1f1);
|
border-color:#bbb;
|
||||||
border-color: #AAA;
|
|
||||||
color:#333;
|
color:#333;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.btn-primary {
|
&.primary {
|
||||||
background:#2a79A3;
|
background:#2a79A3;
|
||||||
@include linear-gradient(#47A7b7, #2585b5);
|
@include bg-gradient(#47A7b7, #2585b5);
|
||||||
border-color: #2A79A3;
|
border-color: #2A79A3;
|
||||||
color:#fff;
|
color:#fff;
|
||||||
text-shadow: 0 1px 1px #268;
|
text-shadow: 0 1px 1px #268;
|
||||||
&:hover {
|
&:hover {
|
||||||
background: $primary_color;
|
background:$blue_link;
|
||||||
color:#fff;
|
color:#fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -29,11 +26,11 @@
|
||||||
|
|
||||||
&.btn-info {
|
&.btn-info {
|
||||||
background:#5aB9C3;
|
background:#5aB9C3;
|
||||||
border-color: $primary_color;
|
border-color: $blue_link;
|
||||||
color:#fff;
|
color:#fff;
|
||||||
text-shadow: 0 1px 1px #268;
|
text-shadow: 0 1px 1px #268;
|
||||||
&:hover {
|
&:hover {
|
||||||
background: $primary_color;
|
background:$blue_link;
|
||||||
color:#fff;
|
color:#fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -57,18 +54,21 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.btn-create {
|
&.save-btn {
|
||||||
@extend .wide;
|
@extend .wide;
|
||||||
@extend .success;
|
@extend .primary;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.btn-save {
|
&.cancel-btn {
|
||||||
@extend .wide;
|
float:right;
|
||||||
@extend .btn-primary;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
&.btn-close,
|
&.wide {
|
||||||
&.btn-remove {
|
padding-left:30px;
|
||||||
|
padding-right:30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.danger {
|
||||||
@extend .btn-danger;
|
@extend .btn-danger;
|
||||||
border-color: #BD362F;
|
border-color: #BD362F;
|
||||||
|
|
||||||
|
@ -78,13 +78,8 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.btn-cancel {
|
&.danger {
|
||||||
float: right;
|
@extend .btn-danger;
|
||||||
}
|
|
||||||
|
|
||||||
&.wide {
|
|
||||||
padding-left: 20px;
|
|
||||||
padding-right: 20px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
&.small {
|
&.small {
|
||||||
|
@ -96,7 +91,7 @@
|
||||||
background-color:#ccc;
|
background-color:#ccc;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.btn-tiny {
|
&.very_small {
|
||||||
font-size:11px;
|
font-size:11px;
|
||||||
padding:2px 6px;
|
padding:2px 6px;
|
||||||
line-height: 16px;
|
line-height: 16px;
|
||||||
|
|
|
@ -2,7 +2,6 @@
|
||||||
.cgray { color:gray }
|
.cgray { color:gray }
|
||||||
.cred { color:#D12F19 }
|
.cred { color:#D12F19 }
|
||||||
.cgreen { color:#4a2 }
|
.cgreen { color:#4a2 }
|
||||||
.cblue { color:#29A }
|
|
||||||
.cblack { color:#111 }
|
.cblack { color:#111 }
|
||||||
.cdark { color:#444 }
|
.cdark { color:#444 }
|
||||||
.cwhite { color:#fff!important }
|
.cwhite { color:#fff!important }
|
||||||
|
@ -10,6 +9,12 @@
|
||||||
|
|
||||||
/** COMMON CLASSES **/
|
/** COMMON CLASSES **/
|
||||||
.left { float:left }
|
.left { float:left }
|
||||||
|
.right { float:right!important }
|
||||||
|
.width-50p { width:50% }
|
||||||
|
.width-49p { width:49% }
|
||||||
|
.width-30p { width:30% }
|
||||||
|
.width-65p { width:65% }
|
||||||
|
.width-100p { width:100% }
|
||||||
.append-bottom-10 { margin-bottom:10px }
|
.append-bottom-10 { margin-bottom:10px }
|
||||||
.append-bottom-20 { margin-bottom:20px }
|
.append-bottom-20 { margin-bottom:20px }
|
||||||
.prepend-top-10 { margin-top:10px }
|
.prepend-top-10 { margin-top:10px }
|
||||||
|
@ -17,32 +22,62 @@
|
||||||
.padded { padding:20px }
|
.padded { padding:20px }
|
||||||
.ipadded { padding:20px!important }
|
.ipadded { padding:20px!important }
|
||||||
.lborder { border-left:1px solid #eee }
|
.lborder { border-left:1px solid #eee }
|
||||||
|
.no-padding { padding:0 !important; }
|
||||||
|
.underlined { border-bottom: 1px solid #CCC; }
|
||||||
|
.no-borders { border:none; }
|
||||||
|
.vlink { color: $link_color !important; }
|
||||||
.underlined_link { text-decoration: underline; }
|
.underlined_link { text-decoration: underline; }
|
||||||
|
.borders { border: 1px solid #ccc; @include shade; }
|
||||||
.hint { font-style: italic; color: #999; }
|
.hint { font-style: italic; color: #999; }
|
||||||
.light { color: #888 }
|
.light { color: #888 }
|
||||||
.tiny { font-weight: normal }
|
|
||||||
.vtop { vertical-align: top; }
|
|
||||||
|
|
||||||
|
/** PILLS & TABS**/
|
||||||
|
.nav-pills a:hover { background-color:#888; }
|
||||||
|
.nav-pills .active a { background-color: $style_color; }
|
||||||
|
.nav-tabs > li > a, .nav-pills > li > a { color:$style_color; }
|
||||||
|
.nav.nav-tabs {
|
||||||
|
li {
|
||||||
|
> a {
|
||||||
|
padding:8px 20px;
|
||||||
|
margin-right: 7px;
|
||||||
|
line-height: 19px;
|
||||||
|
border-color: #EEE;
|
||||||
|
color:#888;
|
||||||
|
border-bottom: 1px solid #ddd;
|
||||||
|
.badge {
|
||||||
|
background-color: #eee;
|
||||||
|
color:#888;
|
||||||
|
text-shadow:0 1px 1px #fff;
|
||||||
|
}
|
||||||
|
i[class^="icon-"] {
|
||||||
|
line-height:14px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
&.active {
|
||||||
|
> a {
|
||||||
|
border-color: #CCC;
|
||||||
|
border-bottom: 1px solid #fff;
|
||||||
|
color:#333;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/** ALERT MESSAGES **/
|
/** ALERT MESSAGES **/
|
||||||
.alert.alert-disabled {
|
.alert-message { @extend .alert; }
|
||||||
background: #EEE;
|
.alert-messag.success { @extend .alert-success; }
|
||||||
color: #777;
|
.alert-message.error { @extend .alert-error; }
|
||||||
border-color: #DDD;
|
|
||||||
}
|
|
||||||
|
|
||||||
.well { padding: 15px; }
|
/** AVATARS **/
|
||||||
|
img.avatar { float:left; margin-right:12px; width:40px; border:1px solid #ddd; padding:1px; }
|
||||||
|
img.avatar.s16 { width:16px; height:16px; margin-right:6px; }
|
||||||
|
img.avatar.s24 { width:24px; height:24px; margin-right:8px; }
|
||||||
|
img.avatar.s32 { width:32px; height:32px; margin-right:10px; }
|
||||||
|
img.lil_av { padding-left: 4px; padding-right:3px; }
|
||||||
|
img.small { width: 80px; }
|
||||||
|
|
||||||
/** HELPERS **/
|
/** HELPERS **/
|
||||||
.nothing_here_message {
|
.nothing_here_message { text-align:center; padding:20px; color:#777; }
|
||||||
text-align: center;
|
|
||||||
padding: 20px;
|
|
||||||
color: #666;
|
|
||||||
font-weight: normal;
|
|
||||||
font-size: 16px;
|
|
||||||
line-height: 36px;
|
|
||||||
}
|
|
||||||
|
|
||||||
p.slead { color:#456; font-size:16px; margin-bottom: 12px; font-weight: 200; line-height: 24px; }
|
p.slead { color:#456; font-size:16px; margin-bottom: 12px; font-weight: 200; line-height: 24px; }
|
||||||
|
|
||||||
/** FORMS **/
|
/** FORMS **/
|
||||||
|
@ -55,25 +90,4 @@ input[type='search'].search-text-input {
|
||||||
border:1px solid #ccc;
|
border:1px solid #ccc;
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type='text'].danger {
|
|
||||||
background: #F2DEDE!important;
|
|
||||||
border-color: #D66;
|
|
||||||
text-shadow: 0 1px 1px #fff
|
|
||||||
}
|
|
||||||
|
|
||||||
fieldset legend { font-size: 17px; }
|
fieldset legend { font-size: 17px; }
|
||||||
|
|
||||||
/** PAGINATION **/
|
|
||||||
.gitlab_pagination {
|
|
||||||
span a { color: $link_color; }
|
|
||||||
.prev, .next, .current, .page a {
|
|
||||||
padding: 10px;
|
|
||||||
}
|
|
||||||
.current {
|
|
||||||
border-bottom: 2px solid $style_color;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.tab-content {
|
|
||||||
overflow: visible;
|
|
||||||
}
|
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
.file_holder {
|
.file_holder {
|
||||||
border:1px solid #BBB;
|
border:1px solid #BBB;
|
||||||
margin-bottom:1em;
|
margin-bottom:1em;
|
||||||
@include solid-shade;
|
@include solid_shade;
|
||||||
|
|
||||||
.file_title {
|
.file_title {
|
||||||
border-bottom: 1px solid #bbb;
|
border-bottom: 1px solid #bbb;
|
||||||
|
@ -37,6 +37,20 @@
|
||||||
background:#fff;
|
background:#fff;
|
||||||
font-size: 11px;
|
font-size: 11px;
|
||||||
|
|
||||||
|
&.wiki {
|
||||||
|
font-size: 13px;
|
||||||
|
code {
|
||||||
|
padding:0 4px;
|
||||||
|
}
|
||||||
|
padding:20px;
|
||||||
|
h1, h2 {
|
||||||
|
line-height: 46px;
|
||||||
|
}
|
||||||
|
h3, h4 {
|
||||||
|
line-height: 40px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
&.image_file {
|
&.image_file {
|
||||||
background:#eee;
|
background:#eee;
|
||||||
text-align:center;
|
text-align:center;
|
||||||
|
@ -46,11 +60,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.wiki {
|
|
||||||
padding: 20px;
|
|
||||||
font-size: 13px;
|
|
||||||
}
|
|
||||||
|
|
||||||
&.blob_file {
|
&.blob_file {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -133,9 +142,9 @@
|
||||||
table-layout: fixed;
|
table-layout: fixed;
|
||||||
|
|
||||||
pre {
|
pre {
|
||||||
|
background: none;
|
||||||
border: none;
|
border: none;
|
||||||
border-radius: 0;
|
font-family: 'Menlo', 'Liberation Mono', 'Consolas', 'Courier New', 'andale mono','lucida console',monospace;
|
||||||
font-family: $monospace_font;
|
|
||||||
font-size: 12px !important;
|
font-size: 12px !important;
|
||||||
line-height: 16px !important;
|
line-height: 16px !important;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
@ -162,7 +171,6 @@
|
||||||
color: #666;
|
color: #666;
|
||||||
padding: 10px 6px 10px 0;
|
padding: 10px 6px 10px 0;
|
||||||
text-align: right;
|
text-align: right;
|
||||||
background: #EEE;
|
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: #666;
|
color: #666;
|
||||||
|
|
|
@ -1,2 +0,0 @@
|
||||||
/** Typo **/
|
|
||||||
$monospace_font: 'Menlo', 'Liberation Mono', 'Consolas', 'Courier New', 'andale mono', 'lucida console', monospace;
|
|
|
@ -1,36 +1,23 @@
|
||||||
|
/** LISTS **/
|
||||||
|
|
||||||
|
ul {
|
||||||
/**
|
/**
|
||||||
* Well styled list
|
* List li block element #1
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
.well-list {
|
.wll {
|
||||||
margin: 0;
|
|
||||||
list-style: none;
|
|
||||||
li {
|
|
||||||
background-color: #FFF;
|
background-color: #FFF;
|
||||||
padding: 10px;
|
padding: 10px 5px;
|
||||||
min-height: 20px;
|
min-height: 20px;
|
||||||
border-bottom: 1px solid #eee;
|
border-bottom: 1px solid #eee;
|
||||||
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
|
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
|
||||||
|
|
||||||
&.disabled {
|
|
||||||
color: #888;
|
|
||||||
}
|
|
||||||
|
|
||||||
&.smoke { background-color:#f5f5f5; }
|
&.smoke { background-color:#f5f5f5; }
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background:$hover;
|
background:$hover;
|
||||||
border-bottom:1px solid #ADF;
|
border-bottom:1px solid #ADF;
|
||||||
}
|
}
|
||||||
|
&:last-child { border:none }
|
||||||
&:last-child {
|
|
||||||
border-bottom: none;
|
|
||||||
|
|
||||||
&.bottom {
|
|
||||||
background: #f5f5f5;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.author { color: #999; }
|
.author { color: #999; }
|
||||||
|
|
||||||
p {
|
p {
|
||||||
|
@ -42,11 +29,6 @@
|
||||||
top:3px;
|
top:3px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.well-title {
|
|
||||||
font-size: 14px;
|
|
||||||
line-height: 18px;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -57,17 +39,3 @@ ol, ul {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/** light list with border-bottom between li **/
|
|
||||||
ul.bordered-list {
|
|
||||||
margin: 5px 0px;
|
|
||||||
padding: 0px;
|
|
||||||
li {
|
|
||||||
padding: 5px 0;
|
|
||||||
border-bottom: 1px solid #EEE;
|
|
||||||
overflow: hidden;
|
|
||||||
display: block;
|
|
||||||
margin: 0px;
|
|
||||||
&:last-child { border:none }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,88 +0,0 @@
|
||||||
/**
|
|
||||||
* Generic mixins
|
|
||||||
*/
|
|
||||||
@mixin box-shadow($shadow) {
|
|
||||||
-webkit-box-shadow: $shadow;
|
|
||||||
-moz-box-shadow: $shadow;
|
|
||||||
-ms-box-shadow: $shadow;
|
|
||||||
-o-box-shadow: $shadow;
|
|
||||||
box-shadow: $shadow;
|
|
||||||
}
|
|
||||||
|
|
||||||
@mixin border-radius($radius) {
|
|
||||||
-webkit-border-radius: $radius;
|
|
||||||
-moz-border-radius: $radius;
|
|
||||||
-ms-border-radius: $radius;
|
|
||||||
-o-border-radius: $radius;
|
|
||||||
border-radius: $radius;
|
|
||||||
}
|
|
||||||
|
|
||||||
@mixin linear-gradient($from, $to) {
|
|
||||||
background-image: -webkit-gradient(linear, 0 0, 0 100%, from($from), to($to));
|
|
||||||
background-image: -webkit-linear-gradient($from, $to);
|
|
||||||
background-image: -moz-linear-gradient($from, $to);
|
|
||||||
background-image: -o-linear-gradient($from, $to);
|
|
||||||
}
|
|
||||||
|
|
||||||
@mixin transition($transition) {
|
|
||||||
-webkit-transition: $transition;
|
|
||||||
-moz-transition: $transition;
|
|
||||||
-ms-transition: $transition;
|
|
||||||
-o-transition: $transition;
|
|
||||||
transition: $transition;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Prefilled mixins
|
|
||||||
* Mixins with fixed values
|
|
||||||
*/
|
|
||||||
@mixin bg-light-gray-gradient {
|
|
||||||
background: #f1f1f1;
|
|
||||||
background-image: -webkit-gradient(linear, 0 0, 0 30, color-stop(0.066, #f5f5f5), to(#e1e1e1));
|
|
||||||
background-image: -webkit-linear-gradient(#f5f5f5 6.6%, #e1e1e1);
|
|
||||||
background-image: -moz-linear-gradient(#f5f5f5 6.6%, #e1e1e1);
|
|
||||||
background-image: -o-linear-gradient(#f5f5f5 6.6%, #e1e1e1);
|
|
||||||
}
|
|
||||||
|
|
||||||
@mixin bg-gray-gradient {
|
|
||||||
background: #eee;
|
|
||||||
background-image: -webkit-gradient(linear, 0 0, 0 30, color-stop(0.066, #eee), to(#dfdfdf));
|
|
||||||
background-image: -webkit-linear-gradient(#eee 6.6%, #dfdfdf);
|
|
||||||
background-image: -moz-linear-gradient(#eee 6.6%, #dfdfdf);
|
|
||||||
background-image: -o-linear-gradient(#eee 6.6%, #dfdfdf);
|
|
||||||
}
|
|
||||||
|
|
||||||
@mixin bg-dark-gray-gradient {
|
|
||||||
background: #eee;
|
|
||||||
background-image: -webkit-linear-gradient(#e9e9e9, #d7d7d7);
|
|
||||||
background-image: -moz-linear-gradient(#e9e9e9, #d7d7d7);
|
|
||||||
background-image: -o-linear-gradient(#e9e9e9, #d7d7d7);
|
|
||||||
}
|
|
||||||
|
|
||||||
@mixin shade {
|
|
||||||
@include box-shadow(0 0 3px #ddd);
|
|
||||||
}
|
|
||||||
|
|
||||||
@mixin solid-shade {
|
|
||||||
@include box-shadow(0 0 0 3px #f1f1f1);
|
|
||||||
}
|
|
||||||
|
|
||||||
@mixin header-font {
|
|
||||||
color: $style_color;
|
|
||||||
text-shadow: 0 1px 1px #FFF;
|
|
||||||
font-size: 18px;
|
|
||||||
line-height: 40px;
|
|
||||||
font-weight: normal;
|
|
||||||
letter-spacing: -1px;
|
|
||||||
}
|
|
||||||
|
|
||||||
@mixin md-typography {
|
|
||||||
code { padding: 0 4px; }
|
|
||||||
p { font-size: 13px; }
|
|
||||||
h1 { font-size: 26px; line-height: 40px; margin: 10px 0;}
|
|
||||||
h2 { font-size: 22px; line-height: 40px; margin: 10px 0;}
|
|
||||||
h3 { font-size: 18px; line-height: 40px; margin: 10px 0;}
|
|
||||||
h4 { font-size: 16px; line-height: 20px; margin: 10px 0;}
|
|
||||||
h5 { font-size: 14px; line-height: 20px; margin: 10px 0;}
|
|
||||||
h6 { font-size: 12px; line-height: 20px; margin: 10px 0;}
|
|
||||||
}
|
|
|
@ -1,65 +0,0 @@
|
||||||
/**
|
|
||||||
* nav-pills
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
.nav-pills {
|
|
||||||
.active a {
|
|
||||||
background: $primary_color;
|
|
||||||
}
|
|
||||||
|
|
||||||
> li > a {
|
|
||||||
@include border-radius(0);
|
|
||||||
}
|
|
||||||
&.nav-stacked {
|
|
||||||
> li > a {
|
|
||||||
border-left: 4px solid #EEE;
|
|
||||||
padding: 12px;
|
|
||||||
}
|
|
||||||
> .active > a {
|
|
||||||
border-color: #29B;
|
|
||||||
border-radius: 0;
|
|
||||||
background: #F1F1F1;
|
|
||||||
color: $style_color;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav-pills > .active > a > i[class^="icon-"] { background: inherit; }
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* nav-tabs
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
.nav-tabs > li > a, .nav-pills > li > a { color: $style_color; }
|
|
||||||
.nav.nav-tabs {
|
|
||||||
li {
|
|
||||||
> a {
|
|
||||||
padding: 8px 20px;
|
|
||||||
margin-right: 7px;
|
|
||||||
line-height: 20px;
|
|
||||||
border-color: #EEE;
|
|
||||||
color: #888;
|
|
||||||
border-bottom: 1px solid #ddd;
|
|
||||||
.badge {
|
|
||||||
background-color: #eee;
|
|
||||||
color: #888;
|
|
||||||
text-shadow: 0 1px 1px #fff;
|
|
||||||
}
|
|
||||||
i[class^="icon-"] {
|
|
||||||
line-height: 14px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
&.active {
|
|
||||||
> a {
|
|
||||||
border-color: #CCC;
|
|
||||||
border-bottom: 1px solid #fff;
|
|
||||||
color: #333;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
&.nav-small-tabs > li > a { padding: 6px 9px; }
|
|
||||||
}
|
|
|
@ -1,7 +1,7 @@
|
||||||
table {
|
table {
|
||||||
@extend .table;
|
@extend .table;
|
||||||
@extend .table-striped;
|
@extend .table-striped;
|
||||||
@include solid-shade;
|
@include solid_shade;
|
||||||
border:1px solid #bbb;
|
border:1px solid #bbb;
|
||||||
width:100%;
|
width:100%;
|
||||||
|
|
||||||
|
@ -11,12 +11,6 @@ table {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.headless {
|
|
||||||
tr:first-child td{
|
|
||||||
border-top: 1px solid #CCC;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
th {
|
th {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
|
@ -31,7 +25,7 @@ table {
|
||||||
}
|
}
|
||||||
|
|
||||||
th, td {
|
th, td {
|
||||||
padding: 10px;
|
padding: 8px;
|
||||||
line-height: 18px;
|
line-height: 18px;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
|
|
|
@ -21,7 +21,7 @@ h6 {
|
||||||
|
|
||||||
/** CODE **/
|
/** CODE **/
|
||||||
pre {
|
pre {
|
||||||
font-family: $monospace_font;
|
font-family:'Menlo', 'Liberation Mono', 'Consolas', 'Courier New', 'andale mono','lucida console',monospace;
|
||||||
|
|
||||||
&.dark {
|
&.dark {
|
||||||
background: #333;
|
background: #333;
|
||||||
|
@ -38,7 +38,7 @@ a {
|
||||||
color: $link_color;
|
color: $link_color;
|
||||||
&:hover {
|
&:hover {
|
||||||
text-decoration:none;
|
text-decoration:none;
|
||||||
color: $primary_color;
|
color: $blue_link;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.btn {
|
&.btn {
|
||||||
|
@ -77,25 +77,3 @@ a {
|
||||||
a:focus {
|
a:focus {
|
||||||
outline: none;
|
outline: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.monospace {
|
|
||||||
font-family: $monospace_font;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Wiki typography
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
.wiki {
|
|
||||||
@include md-typography;
|
|
||||||
|
|
||||||
font-size: 13px;
|
|
||||||
line-height: 20px;
|
|
||||||
|
|
||||||
.white .highlight pre { background: #f5f5f5; }
|
|
||||||
ul { margin: 0 0 9px 25px !important; }
|
|
||||||
}
|
|
||||||
|
|
||||||
.md {
|
|
||||||
@include md-typography;
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,13 +0,0 @@
|
||||||
/**
|
|
||||||
* General Colors
|
|
||||||
*/
|
|
||||||
$primary_color: #2FA0BB;
|
|
||||||
$link_color: #3A89A3;
|
|
||||||
$style_color: #474D57;
|
|
||||||
$hover: #D9EDF7;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Commit Diff Colors
|
|
||||||
*/
|
|
||||||
$added: #63c363;
|
|
||||||
$deleted: #f77;
|
|
|
@ -1,8 +1,6 @@
|
||||||
.black .highlight {
|
.black .lines .highlight {
|
||||||
pre {
|
background: #333;
|
||||||
background-color: #333;
|
pre { color: #eee; }
|
||||||
color: #eee;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hll { display: block; background-color: darken($hover, 65%) }
|
.hll { display: block; background-color: darken($hover, 65%) }
|
||||||
.c { color: #888888; font-style: italic } /* Comment */
|
.c { color: #888888; font-style: italic } /* Comment */
|
||||||
|
|
|
@ -1,77 +0,0 @@
|
||||||
.solarized-dark .highlight {
|
|
||||||
pre {
|
|
||||||
background-color: #002B36;
|
|
||||||
color: #eee;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hll { background-color: #073642 }
|
|
||||||
.c { color: #586E75 } /* Comment */
|
|
||||||
.err { color: #93A1A1 } /* Error */
|
|
||||||
.g { color: #93A1A1 } /* Generic */
|
|
||||||
.k { color: #859900 } /* Keyword */
|
|
||||||
.l { color: #93A1A1 } /* Literal */
|
|
||||||
.n { color: #93A1A1 } /* Name */
|
|
||||||
.o { color: #859900 } /* Operator */
|
|
||||||
.x { color: #CB4B16 } /* Other */
|
|
||||||
.p { color: #93A1A1 } /* Punctuation */
|
|
||||||
.cm { color: #586E75 } /* Comment.Multiline */
|
|
||||||
.cp { color: #859900 } /* Comment.Preproc */
|
|
||||||
.c1 { color: #586E75 } /* Comment.Single */
|
|
||||||
.cs { color: #859900 } /* Comment.Special */
|
|
||||||
.gd { color: #2AA198 } /* Generic.Deleted */
|
|
||||||
.ge { color: #93A1A1; font-style: italic } /* Generic.Emph */
|
|
||||||
.gr { color: #DC322F } /* Generic.Error */
|
|
||||||
.gh { color: #CB4B16 } /* Generic.Heading */
|
|
||||||
.gi { color: #859900 } /* Generic.Inserted */
|
|
||||||
.go { color: #93A1A1 } /* Generic.Output */
|
|
||||||
.gp { color: #93A1A1 } /* Generic.Prompt */
|
|
||||||
.gs { color: #93A1A1; font-weight: bold } /* Generic.Strong */
|
|
||||||
.gu { color: #CB4B16 } /* Generic.Subheading */
|
|
||||||
.gt { color: #93A1A1 } /* Generic.Traceback */
|
|
||||||
.kc { color: #CB4B16 } /* Keyword.Constant */
|
|
||||||
.kd { color: #268BD2 } /* Keyword.Declaration */
|
|
||||||
.kn { color: #859900 } /* Keyword.Namespace */
|
|
||||||
.kp { color: #859900 } /* Keyword.Pseudo */
|
|
||||||
.kr { color: #268BD2 } /* Keyword.Reserved */
|
|
||||||
.kt { color: #DC322F } /* Keyword.Type */
|
|
||||||
.ld { color: #93A1A1 } /* Literal.Date */
|
|
||||||
.m { color: #2AA198 } /* Literal.Number */
|
|
||||||
.s { color: #2AA198 } /* Literal.String */
|
|
||||||
.na { color: #93A1A1 } /* Name.Attribute */
|
|
||||||
.nb { color: #B58900 } /* Name.Builtin */
|
|
||||||
.nc { color: #268BD2 } /* Name.Class */
|
|
||||||
.no { color: #CB4B16 } /* Name.Constant */
|
|
||||||
.nd { color: #268BD2 } /* Name.Decorator */
|
|
||||||
.ni { color: #CB4B16 } /* Name.Entity */
|
|
||||||
.ne { color: #CB4B16 } /* Name.Exception */
|
|
||||||
.nf { color: #268BD2 } /* Name.Function */
|
|
||||||
.nl { color: #93A1A1 } /* Name.Label */
|
|
||||||
.nn { color: #93A1A1 } /* Name.Namespace */
|
|
||||||
.nx { color: #93A1A1 } /* Name.Other */
|
|
||||||
.py { color: #93A1A1 } /* Name.Property */
|
|
||||||
.nt { color: #268BD2 } /* Name.Tag */
|
|
||||||
.nv { color: #268BD2 } /* Name.Variable */
|
|
||||||
.ow { color: #859900 } /* Operator.Word */
|
|
||||||
.w { color: #93A1A1 } /* Text.Whitespace */
|
|
||||||
.mf { color: #2AA198 } /* Literal.Number.Float */
|
|
||||||
.mh { color: #2AA198 } /* Literal.Number.Hex */
|
|
||||||
.mi { color: #2AA198 } /* Literal.Number.Integer */
|
|
||||||
.mo { color: #2AA198 } /* Literal.Number.Oct */
|
|
||||||
.sb { color: #586E75 } /* Literal.String.Backtick */
|
|
||||||
.sc { color: #2AA198 } /* Literal.String.Char */
|
|
||||||
.sd { color: #93A1A1 } /* Literal.String.Doc */
|
|
||||||
.s2 { color: #2AA198 } /* Literal.String.Double */
|
|
||||||
.se { color: #CB4B16 } /* Literal.String.Escape */
|
|
||||||
.sh { color: #93A1A1 } /* Literal.String.Heredoc */
|
|
||||||
.si { color: #2AA198 } /* Literal.String.Interpol */
|
|
||||||
.sx { color: #2AA198 } /* Literal.String.Other */
|
|
||||||
.sr { color: #DC322F } /* Literal.String.Regex */
|
|
||||||
.s1 { color: #2AA198 } /* Literal.String.Single */
|
|
||||||
.ss { color: #2AA198 } /* Literal.String.Symbol */
|
|
||||||
.bp { color: #268BD2 } /* Name.Builtin.Pseudo */
|
|
||||||
.vc { color: #268BD2 } /* Name.Variable.Class */
|
|
||||||
.vg { color: #268BD2 } /* Name.Variable.Global */
|
|
||||||
.vi { color: #268BD2 } /* Name.Variable.Instance */
|
|
||||||
.il { color: #2AA198 } /* Literal.Number.Integer.Long */
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
.white .highlight {
|
.white .lines .highlight {
|
||||||
pre {
|
background: white;
|
||||||
background-color: #fff;
|
pre { color: #333; }
|
||||||
color: #333;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hll { display: block; background-color: $hover }
|
.hll { display: block; background-color: $hover }
|
||||||
.c { color: #888888; font-style: italic } /* Comment */
|
.c { color: #888888; font-style: italic } /* Comment */
|
||||||
|
@ -65,5 +63,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.shadow {
|
.shadow {
|
||||||
@include box-shadow(0 5px 15px #000);
|
-webkit-box-shadow:0 5px 15px #000;
|
||||||
|
-moz-box-shadow:0 5px 15px #000;
|
||||||
|
box-shadow:0 5px 15px #000;
|
||||||
}
|
}
|
||||||
|
|
257
app/assets/stylesheets/jquery.ui.gitlab.css
vendored
|
@ -1,257 +0,0 @@
|
||||||
/* Interaction Cues
|
|
||||||
----------------------------------*/
|
|
||||||
.ui-state-disabled { cursor: default !important; }
|
|
||||||
|
|
||||||
|
|
||||||
/* Icons
|
|
||||||
----------------------------------*/
|
|
||||||
|
|
||||||
/* states and images */
|
|
||||||
.ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }
|
|
||||||
|
|
||||||
|
|
||||||
/* Misc visuals
|
|
||||||
----------------------------------*/
|
|
||||||
|
|
||||||
/* Overlays */
|
|
||||||
.ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* jQuery UI CSS Framework 1.8.7
|
|
||||||
*
|
|
||||||
* Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
|
|
||||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
||||||
* http://jquery.org/license
|
|
||||||
*
|
|
||||||
* http://docs.jquery.com/UI/Theming/API
|
|
||||||
*
|
|
||||||
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ctl=themeroller
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
/* Component containers
|
|
||||||
----------------------------------*/
|
|
||||||
.ui-widget { font-family: Arial,sans-serif; font-size: 1.1em; }
|
|
||||||
.ui-widget .ui-widget { font-size: 1em; }
|
|
||||||
.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Arial,sans-serif; font-size: 1em; }
|
|
||||||
.ui-widget-content { border: 1px solid #CCC; background: #ffffff; color: #4F4F4F; }
|
|
||||||
.ui-widget-content a { color: #4F4F4F; }
|
|
||||||
.ui-widget-header { border: 1px solid #B6B6B6; color: #4F4F4F; font-weight: bold; }
|
|
||||||
.ui-widget-header {
|
|
||||||
background: #ededed url(bg_fallback.png) 0 0 repeat-x; /* Old browsers */
|
|
||||||
background: -moz-linear-gradient(top, #ededed 0%, #c4c4c4 100%); /* FF3.6+ */
|
|
||||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ededed), color-stop(100%,#c4c4c4)); /* Chrome,Safari4+ */
|
|
||||||
background: -webkit-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* Chrome10+,Safari5.1+ */
|
|
||||||
background: -o-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* Opera11.10+ */
|
|
||||||
background: -ms-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* IE10+ */
|
|
||||||
background: linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* W3C */
|
|
||||||
}
|
|
||||||
.ui-widget-header a { color: #4F4F4F; }
|
|
||||||
|
|
||||||
/* Interaction states
|
|
||||||
----------------------------------*/
|
|
||||||
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: 1px solid #B6B6B6; font-weight: normal; color: #4F4F4F; }
|
|
||||||
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
|
|
||||||
background: #ededed url(bg_fallback.png) 0 0 repeat-x; /* Old browsers */
|
|
||||||
background: -moz-linear-gradient(top, #ededed 0%, #c4c4c4 100%); /* FF3.6+ */
|
|
||||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ededed), color-stop(100%,#c4c4c4)); /* Chrome,Safari4+ */
|
|
||||||
background: -webkit-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* Chrome10+,Safari5.1+ */
|
|
||||||
background: -o-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* Opera11.10+ */
|
|
||||||
background: -ms-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* IE10+ */
|
|
||||||
background: linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* W3C */
|
|
||||||
-webkit-box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset;
|
|
||||||
-moz-box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset;
|
|
||||||
box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset;
|
|
||||||
}
|
|
||||||
.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #4F4F4F; text-decoration: none; }
|
|
||||||
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus { border: 1px solid #9D9D9D; font-weight: normal; color: #313131; }
|
|
||||||
.ui-state-hover a, .ui-state-hover a:hover { color: #313131; text-decoration: none; }
|
|
||||||
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
|
|
||||||
outline: none;
|
|
||||||
color: #1c4257; border: 1px solid #7096ab;
|
|
||||||
background: #ededed url(bg_fallback.png) 0 -50px repeat-x; /* Old browsers */
|
|
||||||
background: -moz-linear-gradient(top, #b9e0f5 0%, #92bdd6 100%); /* FF3.6+ */
|
|
||||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#b9e0f5), color-stop(100%,#92bdd6)); /* Chrome,Safari4+ */
|
|
||||||
background: -webkit-linear-gradient(top, #b9e0f5 0%,#92bdd6 100%); /* Chrome10+,Safari5.1+ */
|
|
||||||
background: -o-linear-gradient(top, #b9e0f5 0%,#92bdd6 100%); /* Opera11.10+ */
|
|
||||||
background: -ms-linear-gradient(top, #b9e0f5 0%,#92bdd6 100%); /* IE10+ */
|
|
||||||
background: linear-gradient(top, #b9e0f5 0%,#92bdd6 100%); /* W3C */
|
|
||||||
-webkit-box-shadow: none;
|
|
||||||
-moz-box-shadow: none;
|
|
||||||
box-shadow: none;
|
|
||||||
}
|
|
||||||
.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #313131; text-decoration: none; }
|
|
||||||
.ui-widget :active { outline: none; }
|
|
||||||
|
|
||||||
/* Interaction Cues
|
|
||||||
----------------------------------*/
|
|
||||||
.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight { border: 1px solid #d2dbf4; background: #f4f8fd; color: #0d2054; -moz-border-radius: 0 !important; -webkit-border-radius: 0 !important; border-radius: 0 !important; }
|
|
||||||
.ui-state-highlight a, .ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a { color: #363636; }
|
|
||||||
.ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error { border: 1px solid #e2d0d0; background: #fcf0f0; color: #280b0b; -moz-border-radius: 0 !important; -webkit-border-radius: 0 !important; border-radius: 0 !important; }
|
|
||||||
.ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a { color: #cd0a0a; }
|
|
||||||
.ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text { color: #cd0a0a; }
|
|
||||||
.ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary { font-weight: bold; }
|
|
||||||
.ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; }
|
|
||||||
.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; }
|
|
||||||
|
|
||||||
/* Icons
|
|
||||||
----------------------------------*/
|
|
||||||
|
|
||||||
/* states and images */
|
|
||||||
.ui-icon { width: 16px; height: 16px; background-image: url(ui-icons_222222_256x240.png); }
|
|
||||||
.ui-widget-content .ui-icon {background-image: url(ui-icons_222222_256x240.png); }
|
|
||||||
.ui-widget-header .ui-icon {background-image: url(ui-icons_222222_256x240.png); }
|
|
||||||
.ui-state-default .ui-icon { background-image: url(ui-icons_454545_256x240.png); }
|
|
||||||
.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(ui-icons_454545_256x240.png); }
|
|
||||||
.ui-state-active .ui-icon {background-image: url(ui-icons_454545_256x240.png); }
|
|
||||||
.ui-state-highlight .ui-icon {background-image: url(ui-icons_454545_256x240.png); }
|
|
||||||
.ui-state-error .ui-icon, .ui-state-error-text .ui-icon { background: url(icon_sprite.png) -16px 0 no-repeat !important; }
|
|
||||||
.ui-state-highlight .ui-icon, .ui-state-error .ui-icon { margin-top: -1px; }
|
|
||||||
|
|
||||||
|
|
||||||
/* Misc visuals
|
|
||||||
----------------------------------*/
|
|
||||||
|
|
||||||
/* Overlays */
|
|
||||||
.ui-widget-overlay { background: #262b33; opacity: .70;filter:Alpha(Opacity=70); }
|
|
||||||
.ui-widget-shadow { margin: -8px 0 0 -8px; padding: 8px; background: #000000; opacity: .30;filter:Alpha(Opacity=30); -moz-border-radius: 8px; -webkit-border-radius: 8px; border-radius: 8px; }
|
|
||||||
/*
|
|
||||||
* jQuery UI Selectable 1.8.7
|
|
||||||
*
|
|
||||||
* Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
|
|
||||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
||||||
* http://jquery.org/license
|
|
||||||
*
|
|
||||||
* http://docs.jquery.com/UI/Selectable#theming
|
|
||||||
*/
|
|
||||||
.ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; }
|
|
||||||
/*
|
|
||||||
* jQuery UI Autocomplete 1.8.7
|
|
||||||
*
|
|
||||||
* Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
|
|
||||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
||||||
* http://jquery.org/license
|
|
||||||
*
|
|
||||||
* http://docs.jquery.com/UI/Autocomplete#theming
|
|
||||||
*/
|
|
||||||
.ui-autocomplete {
|
|
||||||
position: absolute; cursor: default; z-index: 3;
|
|
||||||
-moz-border-radius: 0;
|
|
||||||
-webkit-border-radius: 0;
|
|
||||||
border-radius: 0;
|
|
||||||
-moz-box-shadow: 0 1px 5px rgba(0,0,0,0.3);
|
|
||||||
-webkit-box-shadow: 0 1px 5px rgba(0,0,0,0.3);
|
|
||||||
box-shadow: 0 1px 5px rgba(0,0,0,0.3);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* workarounds */
|
|
||||||
* html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */
|
|
||||||
|
|
||||||
/*
|
|
||||||
* jQuery UI Menu 1.8.7
|
|
||||||
*
|
|
||||||
* Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
|
|
||||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
||||||
* http://jquery.org/license
|
|
||||||
*
|
|
||||||
* http://docs.jquery.com/UI/Menu#theming
|
|
||||||
*/
|
|
||||||
.ui-menu {
|
|
||||||
list-style:none;
|
|
||||||
padding: 1px;
|
|
||||||
margin: 0;
|
|
||||||
display:block;
|
|
||||||
float: left;
|
|
||||||
}
|
|
||||||
.ui-menu .ui-menu {
|
|
||||||
margin-top: -3px;
|
|
||||||
}
|
|
||||||
.ui-menu .ui-menu-item {
|
|
||||||
margin:0;
|
|
||||||
padding: 0;
|
|
||||||
zoom: 1;
|
|
||||||
float: left;
|
|
||||||
clear: left;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
.ui-menu .ui-menu-item a {
|
|
||||||
text-decoration:none;
|
|
||||||
display:block;
|
|
||||||
padding:.2em .4em;
|
|
||||||
line-height:1.5;
|
|
||||||
zoom:1;
|
|
||||||
color: #666;
|
|
||||||
font-size: 13px;
|
|
||||||
}
|
|
||||||
.ui-menu .ui-menu-item a.ui-state-hover,
|
|
||||||
.ui-menu .ui-menu-item a.ui-state-active {
|
|
||||||
font-weight: normal;
|
|
||||||
margin: -1px;
|
|
||||||
background: #D9EDF7;
|
|
||||||
color: #3A89A3;
|
|
||||||
text-shadow: 0px 1px 1px #fff;
|
|
||||||
border: none;
|
|
||||||
border: 1px solid #ADE;
|
|
||||||
cursor: pointer;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* jQuery UI Datepicker 1.8.7
|
|
||||||
*
|
|
||||||
* Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
|
|
||||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
||||||
* http://jquery.org/license
|
|
||||||
*
|
|
||||||
* http://docs.jquery.com/UI/Datepicker#theming
|
|
||||||
*/
|
|
||||||
.ui-datepicker {
|
|
||||||
width: 17em;
|
|
||||||
padding: 0;
|
|
||||||
display: none;
|
|
||||||
border-color: #DDDDDD;
|
|
||||||
border: none;
|
|
||||||
box-shadow: none;
|
|
||||||
}
|
|
||||||
.ui-datepicker .ui-datepicker-header {
|
|
||||||
position:relative;
|
|
||||||
padding:.35em 0;
|
|
||||||
border: none;
|
|
||||||
border-bottom: 1px solid #B6B6B6;
|
|
||||||
-moz-border-radius: 0;
|
|
||||||
-webkit-border-radius: 0;
|
|
||||||
border-radius: 0;
|
|
||||||
margin-bottom: 10px;
|
|
||||||
border: 1px solid #bbb;
|
|
||||||
-webkit-box-shadow: 0 0 0 3px #F1F1F1;
|
|
||||||
-moz-box-shadow: 0 0 0 3px #f1f1f1;
|
|
||||||
-ms-box-shadow: 0 0 0 3px #f1f1f1;
|
|
||||||
-o-box-shadow: 0 0 0 3px #f1f1f1;
|
|
||||||
box-shadow: 0 0 0 3px #F1F1F1;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 6px; width: 1.8em; height: 1.8em; }
|
|
||||||
.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { border: 1px none; }
|
|
||||||
.ui-datepicker .ui-datepicker-prev { left:2px; }
|
|
||||||
.ui-datepicker .ui-datepicker-next { right:2px; }
|
|
||||||
.ui-datepicker .ui-datepicker-prev span { background-position: 0px -32px !important; }
|
|
||||||
.ui-datepicker .ui-datepicker-next span { background-position: -16px -32px !important; }
|
|
||||||
.ui-datepicker .ui-datepicker-prev-hover span { background-position: 0px -48px !important; }
|
|
||||||
.ui-datepicker .ui-datepicker-next-hover span { background-position: -16px -48px !important; }
|
|
||||||
.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span { display: block; position: absolute; left: 50%; margin-left: -8px; top: 50%; margin-top: -8px; background: url(icon_sprite.png) no-repeat; }
|
|
||||||
.ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; font-size: 12px; text-shadow: 0 1px 0 rgba(255,255,255,0.6); }
|
|
||||||
.ui-datepicker .ui-datepicker-title select { font-size:1em; margin:1px 0; }
|
|
||||||
.ui-datepicker select.ui-datepicker-month-year {width: 100%;}
|
|
||||||
.ui-datepicker select.ui-datepicker-month,
|
|
||||||
.ui-datepicker select.ui-datepicker-year { width: 49%;}
|
|
||||||
.ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; }
|
|
||||||
.ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0; }
|
|
||||||
.ui-datepicker td { border: 0; padding: 1px; line-height: 24px; background-color: #FFF!important; }
|
|
||||||
.ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; }
|
|
||||||
.ui-datepicker .ui-datepicker-buttonpane { background-image: none; margin: .7em 0 0 0; padding:0 .2em; border-left: 0; border-right: 0; border-bottom: 0; }
|
|
||||||
.ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; }
|
|
||||||
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; }
|
|
||||||
.ui-datepicker table .ui-state-highlight { border-color: #ADE; }
|
|
||||||
.ui-datepicker-calendar .ui-state-default { background: transparent; border-color: #FFF; }
|
|
||||||
.ui-datepicker-calendar .ui-state-active { background: #D9EDF7; border-color: #ADE; color: #3A89A3; font-weight: bold; text-shadow: 0 1px 1px #fff; }
|
|
204
app/assets/stylesheets/main.scss
Normal file
|
@ -0,0 +1,204 @@
|
||||||
|
/** Override bootstrap variables **/
|
||||||
|
$baseFontSize: 13px !default;
|
||||||
|
$baseLineHeight: 18px !default;
|
||||||
|
|
||||||
|
@import "bootstrap";
|
||||||
|
@import "bootstrap-responsive";
|
||||||
|
@import 'font-awesome';
|
||||||
|
|
||||||
|
/** GitLab colors **/
|
||||||
|
$link_color: #3A89A3;
|
||||||
|
$blue_link: #2FA0BB;
|
||||||
|
$style_color: #474D57;
|
||||||
|
$hover: #D9EDF7;
|
||||||
|
$hover_border: #ADF;
|
||||||
|
|
||||||
|
/** GitLab Fonts **/
|
||||||
|
@font-face { font-family: Korolev; src: font-url('korolev-medium-compressed.otf'); }
|
||||||
|
$monospace: 'Menlo', 'Liberation Mono', 'Consolas', 'Courier New', 'andale mono', 'lucida console', monospace;
|
||||||
|
|
||||||
|
/** MIXINS **/
|
||||||
|
@mixin shade {
|
||||||
|
-moz-box-shadow: 0 0 3px #ddd;
|
||||||
|
-webkit-box-shadow: 0 0 3px #ddd;
|
||||||
|
box-shadow: 0 0 3px #ddd;
|
||||||
|
}
|
||||||
|
|
||||||
|
@mixin solid_shade {
|
||||||
|
-moz-box-shadow: 0 0 0 3px #f1f1f1;
|
||||||
|
-webkit-box-shadow: 0 0 0 3px #f1f1f1;
|
||||||
|
box-shadow: 0 0 0 3px #f1f1f1;
|
||||||
|
}
|
||||||
|
|
||||||
|
@mixin border-radius($radius) {
|
||||||
|
-moz-border-radius: $radius;
|
||||||
|
-webkit-border-radius: $radius;
|
||||||
|
border-radius: $radius;
|
||||||
|
}
|
||||||
|
|
||||||
|
@mixin round-borders-bottom($radius) {
|
||||||
|
border-top: 1px solid #eaeaea;
|
||||||
|
-moz-border-radius-bottomright: $radius;
|
||||||
|
-moz-border-radius-bottomleft: $radius;
|
||||||
|
border-bottom-right-radius: $radius;
|
||||||
|
border-bottom-left-radius: $radius;
|
||||||
|
-webkit-border-bottom-left-radius: $radius;
|
||||||
|
-webkit-border-bottom-right-radius: $radius;
|
||||||
|
}
|
||||||
|
|
||||||
|
@mixin round-borders-top($radius) {
|
||||||
|
border-top: 1px solid #eaeaea;
|
||||||
|
-moz-border-radius-topright: $radius;
|
||||||
|
-moz-border-radius-topleft: $radius;
|
||||||
|
border-top-right-radius: $radius;
|
||||||
|
border-top-left-radius: $radius;
|
||||||
|
-webkit-border-top-left-radius: $radius;
|
||||||
|
-webkit-border-top-right-radius: $radius;
|
||||||
|
}
|
||||||
|
|
||||||
|
@mixin round-borders-all($radius) {
|
||||||
|
border: 1px solid #eaeaea;
|
||||||
|
-moz-border-radius: $radius;
|
||||||
|
-webkit-border-radius: $radius;
|
||||||
|
border-radius: $radius;
|
||||||
|
}
|
||||||
|
|
||||||
|
@mixin bg-gradient($from, $to) {
|
||||||
|
background-image: -webkit-gradient(linear, 0 0, 0 100%, from($from), to($to));
|
||||||
|
background-image: -webkit-linear-gradient($from, $to);
|
||||||
|
background-image: -moz-linear-gradient($from, $to);
|
||||||
|
background-image: -o-linear-gradient($from, $to);
|
||||||
|
}
|
||||||
|
|
||||||
|
@mixin bg-light-gray-gradient {
|
||||||
|
background:#f1f1f1;
|
||||||
|
background-image: -webkit-gradient(linear, 0 0, 0 30, color-stop(0.066, #f5f5f5), to(#e1e1e1));
|
||||||
|
background-image: -webkit-linear-gradient(#f5f5f5 6.6%, #e1e1e1);
|
||||||
|
background-image: -moz-linear-gradient(#f5f5f5 6.6%, #e1e1e1);
|
||||||
|
background-image: -o-linear-gradient(#f5f5f5 6.6%, #e1e1e1);
|
||||||
|
}
|
||||||
|
|
||||||
|
@mixin bg-gray-gradient {
|
||||||
|
background:#eee;
|
||||||
|
background-image: -webkit-gradient(linear, 0 0, 0 30, color-stop(0.066, #eee), to(#dfdfdf));
|
||||||
|
background-image: -webkit-linear-gradient(#eee 6.6%, #dfdfdf);
|
||||||
|
background-image: -moz-linear-gradient(#eee 6.6%, #dfdfdf);
|
||||||
|
background-image: -o-linear-gradient(#eee 6.6%, #dfdfdf);
|
||||||
|
}
|
||||||
|
|
||||||
|
@mixin bg-dark-gray-gradient {
|
||||||
|
background:#eee;
|
||||||
|
background-image: -webkit-linear-gradient(#e9e9e9, #d7d7d7);
|
||||||
|
background-image: -moz-linear-gradient(#e9e9e9, #d7d7d7);
|
||||||
|
background-image: -o-linear-gradient(#e9e9e9, #d7d7d7);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Header of application.
|
||||||
|
* Contain application logo, search panel, profile icon
|
||||||
|
*/
|
||||||
|
@import "sections/header.scss";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Navigation menu of application.
|
||||||
|
* Panel with links to pages depends on project, profile or admin area
|
||||||
|
*/
|
||||||
|
@import "sections/nav.scss";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This file represent some UI that can be changed
|
||||||
|
* during web app restyle or theme select.
|
||||||
|
*
|
||||||
|
* Next items should be placed there
|
||||||
|
* - link, button colors
|
||||||
|
* - header restyles
|
||||||
|
* - main menu restyles
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@import "themes/ui_basic.scss";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* UI themes:
|
||||||
|
*/
|
||||||
|
@import "themes/ui_mars.scss";
|
||||||
|
@import "themes/ui_modern.scss";
|
||||||
|
@import "themes/ui_gray.scss";
|
||||||
|
@import "themes/ui_color.scss";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* GitLab bootstrap.
|
||||||
|
* Overrides some styles of twitter bootstrap.
|
||||||
|
* Also give some common classes for GitLab app
|
||||||
|
*/
|
||||||
|
@import "gitlab_bootstrap/common.scss";
|
||||||
|
@import "gitlab_bootstrap/typography.scss";
|
||||||
|
@import "gitlab_bootstrap/buttons.scss";
|
||||||
|
@import "gitlab_bootstrap/blocks.scss";
|
||||||
|
@import "gitlab_bootstrap/files.scss";
|
||||||
|
@import "gitlab_bootstrap/tables.scss";
|
||||||
|
@import "gitlab_bootstrap/lists.scss";
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Most of application styles placed here.
|
||||||
|
* This file represent common UI that should not be changed between themes
|
||||||
|
* or project restyling like form width or user avatar class or commit title
|
||||||
|
*
|
||||||
|
* TODO: clean it
|
||||||
|
*/
|
||||||
|
@import "common.scss";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Styles related to specific part of app
|
||||||
|
*/
|
||||||
|
@import "sections/commits.scss";
|
||||||
|
@import "sections/issues.scss";
|
||||||
|
@import "sections/projects.scss";
|
||||||
|
@import "sections/merge_requests.scss";
|
||||||
|
@import "sections/graph.scss";
|
||||||
|
@import "sections/events.scss";
|
||||||
|
@import "sections/themes.scss";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This scss file redefine chozen selectbox styles for
|
||||||
|
* project Branch/Tag select element
|
||||||
|
*/
|
||||||
|
@import "ref_select.scss";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Code (files list) styles. Browsing project files there
|
||||||
|
*/
|
||||||
|
@import "sections/tree.scss";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This file represent notes(comments) styles
|
||||||
|
*/
|
||||||
|
@import "sections/notes.scss";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This file represent profile styles
|
||||||
|
*/
|
||||||
|
@import "sections/profile.scss";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Devise styles
|
||||||
|
*/
|
||||||
|
@import "sections/login.scss";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* CODE HIGHTLIGHT BASE
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@import "highlight/white.scss";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* CODE HIGHTLIGHT DARK schema
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@import "highlight/dark.scss";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* File Editor styles
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@import "sections/editor.scss";
|
|
@ -1,18 +1,3 @@
|
||||||
.ajax-users-select {
|
|
||||||
width: 400px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.user-result {
|
|
||||||
.user-image {
|
|
||||||
float: left;
|
|
||||||
}
|
|
||||||
.user-name {
|
|
||||||
}
|
|
||||||
.user-username {
|
|
||||||
color: #999;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Branch/tag selector **/
|
/** Branch/tag selector **/
|
||||||
.project-refs-form {
|
.project-refs-form {
|
||||||
margin:0;
|
margin:0;
|
||||||
|
@ -48,7 +33,9 @@
|
||||||
.chzn-container {
|
.chzn-container {
|
||||||
.chzn-search {
|
.chzn-search {
|
||||||
input:focus {
|
input:focus {
|
||||||
@include box-shadow(none);
|
-webkit-box-shadow: none;
|
||||||
|
-moz-box-shadow: none;
|
||||||
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -56,7 +43,7 @@
|
||||||
margin:7px 0;
|
margin:7px 0;
|
||||||
min-width: 200px;
|
min-width: 200px;
|
||||||
border: 1px solid #bbb;
|
border: 1px solid #bbb;
|
||||||
@include border-radius(0);
|
border-radius:0;
|
||||||
|
|
||||||
.chzn-results {
|
.chzn-results {
|
||||||
margin-top: 5px;
|
margin-top: 5px;
|
||||||
|
@ -68,7 +55,7 @@
|
||||||
padding: 8px;
|
padding: 8px;
|
||||||
}
|
}
|
||||||
.active-result {
|
.active-result {
|
||||||
@include border-radius(0);
|
border-radius: 0;
|
||||||
|
|
||||||
&.highlighted {
|
&.highlighted {
|
||||||
background: $hover;
|
background: $hover;
|
||||||
|
@ -103,26 +90,3 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Select2 styling **/
|
|
||||||
.select2-container .select2-choice {
|
|
||||||
background: #f1f1f1;
|
|
||||||
background-image: -webkit-gradient(linear, 0 0, 0 30, color-stop(0.066, whitesmoke), to(#e1e1e1));
|
|
||||||
background-image: -webkit-linear-gradient(whitesmoke 6.6%, #e1e1e1);
|
|
||||||
background-image: -moz-linear-gradient(whitesmoke 6.6%, #e1e1e1);
|
|
||||||
background-image: -o-linear-gradient(whitesmoke 6.6%, #e1e1e1);
|
|
||||||
}
|
|
||||||
|
|
||||||
.select2-container .select2-choice div {
|
|
||||||
border: none;
|
|
||||||
background: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.select2-drop {
|
|
||||||
padding-top: 8px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.select2-no-results, .select2-searching {
|
|
||||||
padding: 7px;
|
|
||||||
color: #666;
|
|
||||||
}
|
|
|
@ -1,5 +0,0 @@
|
||||||
.admin-filter form {
|
|
||||||
label { width: 110px; }
|
|
||||||
.controls { margin-left: 130px; }
|
|
||||||
.form-actions { padding-left: 130px; background: #fff }
|
|
||||||
}
|
|
|
@ -1,60 +1,115 @@
|
||||||
/**
|
.commit-box {
|
||||||
* Commit file
|
@extend .main_box;
|
||||||
*/
|
|
||||||
.commit-committer-link,
|
.commit-head {
|
||||||
.commit-author-link {
|
@extend .top_box_content;
|
||||||
font-size: 13px;
|
|
||||||
color: #555;
|
.commit-title {
|
||||||
|
line-height: 26px;
|
||||||
|
margin:0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.commit-description {
|
||||||
|
font-size: 14px;
|
||||||
|
border: none;
|
||||||
|
background-color: white;
|
||||||
|
padding-top:10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.browse-button {
|
||||||
|
@extend .btn;
|
||||||
|
@extend .btn-small;
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.commit-info {
|
||||||
|
@extend .middle_box_content;
|
||||||
|
@extend .clearfix;
|
||||||
|
|
||||||
|
.sha-block {
|
||||||
|
text-align:right;
|
||||||
|
&:first-child {
|
||||||
|
padding-bottom:6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
border-bottom: 1px solid #aaa;
|
||||||
|
margin-left: 9px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&.merge-commit .sha-block {
|
||||||
|
clear: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
.committer {
|
||||||
|
padding-left: 32px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.author a,
|
||||||
|
.committer a {
|
||||||
|
font-size:14px;
|
||||||
|
line-height:22px;
|
||||||
|
text-shadow:0 1px 1px #fff;
|
||||||
|
color:#777;
|
||||||
&:hover {
|
&:hover {
|
||||||
color: #999;
|
color: #999;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.file {
|
.avatar {
|
||||||
|
margin-right: 10px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* COMMIT SHOw
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
.diff_file {
|
||||||
border:1px solid #CCC;
|
border:1px solid #CCC;
|
||||||
margin-bottom:1em;
|
margin-bottom:1em;
|
||||||
|
|
||||||
.header {
|
.diff_file_header {
|
||||||
@extend .clearfix;
|
@extend .clearfix;
|
||||||
padding: 5px 5px 5px 10px;
|
padding: 5px 5px 5px 10px;
|
||||||
color: #555;
|
color: #555;
|
||||||
border-bottom:1px solid #CCC;
|
border-bottom:1px solid #CCC;
|
||||||
background: #eee;
|
background: #eee;
|
||||||
// TODO Replace with linear-gradient mixin
|
|
||||||
background-image: -webkit-gradient(linear, 0 0, 0 30, color-stop(0.066, #eee), to(#dfdfdf));
|
background-image: -webkit-gradient(linear, 0 0, 0 30, color-stop(0.066, #eee), to(#dfdfdf));
|
||||||
background-image: -webkit-linear-gradient(#eee 6.6%, #dfdfdf);
|
background-image: -webkit-linear-gradient(#eee 6.6%, #dfdfdf);
|
||||||
background-image: -moz-linear-gradient(#eee 6.6%, #dfdfdf);
|
background-image: -moz-linear-gradient(#eee 6.6%, #dfdfdf);
|
||||||
background-image: -o-linear-gradient(#eee 6.6%, #dfdfdf);
|
background-image: -o-linear-gradient(#eee 6.6%, #dfdfdf);
|
||||||
|
|
||||||
a{
|
|
||||||
color: $style_color;
|
|
||||||
}
|
|
||||||
|
|
||||||
> span {
|
> span {
|
||||||
font-family: $monospace_font;
|
font-family: $monospace;
|
||||||
font-size:14px;
|
font-size:14px;
|
||||||
line-height: 30px;
|
line-height: 30px;
|
||||||
}
|
}
|
||||||
|
|
||||||
a.view-file{
|
a.view-commit{
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
.commit-short-id{
|
.commit-short-id{
|
||||||
font-family: $monospace_font;
|
font-family: $monospace;
|
||||||
font-size: smaller;
|
font-size: smaller;
|
||||||
}
|
}
|
||||||
|
|
||||||
.file-mode{
|
.file-mode{
|
||||||
font-family: $monospace_font;
|
font-family: $monospace;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.content {
|
.diff_file_content {
|
||||||
overflow:auto;
|
overflow:auto;
|
||||||
overflow-y:hidden;
|
overflow-y:hidden;
|
||||||
background: #FFF;
|
background:#fff;
|
||||||
color:#333;
|
color:#333;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
|
font-family: $monospace;
|
||||||
.old{
|
.old{
|
||||||
span.idiff{
|
span.idiff{
|
||||||
background-color:#FAA;
|
background-color:#FAA;
|
||||||
|
@ -67,15 +122,59 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
table {
|
table {
|
||||||
font-family: $monospace_font;
|
td {
|
||||||
|
line-height:18px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.diff_file_content_image {
|
||||||
|
background:#eee;
|
||||||
|
text-align:center;
|
||||||
|
.image {
|
||||||
|
display: inline-block;
|
||||||
|
margin:50px;
|
||||||
|
max-width:400px;
|
||||||
|
|
||||||
|
img{
|
||||||
|
background: url('trans_bg.gif');
|
||||||
|
}
|
||||||
|
|
||||||
|
&.diff_removed {
|
||||||
|
img{
|
||||||
|
border: 1px solid #C00;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&.diff_added {
|
||||||
|
img{
|
||||||
|
border: 1px solid #0C0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.image-info{
|
||||||
|
margin: 5px 0 0 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&.img_compared {
|
||||||
|
.image {
|
||||||
|
max-width:300px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.diff_file_content{
|
||||||
|
table {
|
||||||
border:none;
|
border:none;
|
||||||
margin:0px;
|
margin:0px;
|
||||||
padding:0px;
|
padding:0px;
|
||||||
|
tr {
|
||||||
td {
|
td {
|
||||||
line-height: 18px;
|
|
||||||
font-size:12px;
|
font-size:12px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
.old_line, .new_line {
|
.old_line, .new_line {
|
||||||
margin:0px;
|
margin:0px;
|
||||||
padding:0px;
|
padding:0px;
|
||||||
|
@ -88,7 +187,9 @@
|
||||||
min-width:35px;
|
min-width:35px;
|
||||||
max-width:35px;
|
max-width:35px;
|
||||||
width:35px;
|
width:35px;
|
||||||
@include user-select(none);
|
moz-user-select: none;
|
||||||
|
-khtml-user-select: none;
|
||||||
|
user-select: none;
|
||||||
a {
|
a {
|
||||||
float:left;
|
float:left;
|
||||||
width:35px;
|
width:35px;
|
||||||
|
@ -100,9 +201,8 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.line_content {
|
.line_content {
|
||||||
display: block;
|
|
||||||
white-space:pre;
|
white-space:pre;
|
||||||
height: 18px;
|
height:14px;
|
||||||
margin:0px;
|
margin:0px;
|
||||||
padding:0px;
|
padding:0px;
|
||||||
border:none;
|
border:none;
|
||||||
|
@ -118,226 +218,20 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.image {
|
|
||||||
background: #ddd;
|
|
||||||
text-align: center;
|
|
||||||
padding: 30px;
|
|
||||||
.wrap{
|
|
||||||
display: inline-block;
|
|
||||||
}
|
|
||||||
|
|
||||||
.frame {
|
|
||||||
display: inline-block;
|
|
||||||
background-color: #fff;
|
|
||||||
line-height: 0;
|
|
||||||
img{
|
|
||||||
border: 1px solid #FFF;
|
|
||||||
background: url('trans_bg.gif');
|
|
||||||
}
|
|
||||||
&.deleted {
|
|
||||||
border: 1px solid $deleted;
|
|
||||||
}
|
|
||||||
|
|
||||||
&.added {
|
|
||||||
border: 1px solid $added;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.image-info{
|
|
||||||
font-size: 12px;
|
|
||||||
margin: 5px 0 0 0;
|
|
||||||
color: grey;
|
|
||||||
}
|
|
||||||
|
|
||||||
.view.swipe{
|
|
||||||
position: relative;
|
|
||||||
|
|
||||||
.swipe-frame{
|
|
||||||
display: block;
|
|
||||||
margin: auto;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
.swipe-wrap{
|
|
||||||
overflow: hidden;
|
|
||||||
border-left: 1px solid #999;
|
|
||||||
position: absolute;
|
|
||||||
display: block;
|
|
||||||
top: 13px;
|
|
||||||
right: 7px;
|
|
||||||
}
|
|
||||||
.frame{
|
|
||||||
top: 0;
|
|
||||||
right: 0;
|
|
||||||
position: absolute;
|
|
||||||
&.deleted{
|
|
||||||
margin: 0;
|
|
||||||
display: block;
|
|
||||||
top: 13px;
|
|
||||||
right: 7px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.swipe-bar{
|
|
||||||
display: block;
|
|
||||||
height: 100%;
|
|
||||||
width: 15px;
|
|
||||||
z-index: 100;
|
|
||||||
position: absolute;
|
|
||||||
cursor: pointer;
|
|
||||||
&:hover{
|
|
||||||
.top-handle{
|
|
||||||
background-position: -15px 3px;
|
|
||||||
}
|
|
||||||
.bottom-handle{
|
|
||||||
background-position: -15px -11px;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
.top-handle{
|
|
||||||
display: block;
|
|
||||||
height: 14px;
|
|
||||||
width: 15px;
|
|
||||||
position: absolute;
|
|
||||||
top: 0px;
|
|
||||||
background: url('swipemode_sprites.gif') 0 3px no-repeat;
|
|
||||||
}
|
|
||||||
.bottom-handle{
|
|
||||||
display: block;
|
|
||||||
height: 14px;
|
|
||||||
width: 15px;
|
|
||||||
position: absolute;
|
|
||||||
bottom: 0px;
|
|
||||||
background: url('swipemode_sprites.gif') 0 -11px no-repeat;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} //.view.swipe
|
|
||||||
.view.onion-skin{
|
|
||||||
.onion-skin-frame{
|
|
||||||
display: block;
|
|
||||||
margin: auto;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
.frame.added, .frame.deleted {
|
|
||||||
position: absolute;
|
|
||||||
display: block;
|
|
||||||
top: 0px;
|
|
||||||
left: 0px;
|
|
||||||
}
|
|
||||||
.controls{
|
|
||||||
display: block;
|
|
||||||
height: 14px;
|
|
||||||
width: 300px;
|
|
||||||
z-index: 100;
|
|
||||||
position: absolute;
|
|
||||||
bottom: 0px;
|
|
||||||
left: 50%;
|
|
||||||
margin-left: -150px;
|
|
||||||
|
|
||||||
.drag-track{
|
|
||||||
display: block;
|
|
||||||
position: absolute;
|
|
||||||
left: 12px;
|
|
||||||
height: 10px;
|
|
||||||
width: 276px;
|
|
||||||
background: url('onion_skin_sprites.gif') -4px -20px repeat-x;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dragger {
|
|
||||||
display: block;
|
|
||||||
position: absolute;
|
|
||||||
left: 0px;
|
|
||||||
top: 0px;
|
|
||||||
height: 14px;
|
|
||||||
width: 14px;
|
|
||||||
background: url('onion_skin_sprites.gif') 0px -34px repeat-x;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.transparent {
|
|
||||||
display: block;
|
|
||||||
position: absolute;
|
|
||||||
top: 2px;
|
|
||||||
right: 0px;
|
|
||||||
height: 10px;
|
|
||||||
width: 10px;
|
|
||||||
background: url('onion_skin_sprites.gif') -2px 0px no-repeat;
|
|
||||||
}
|
|
||||||
|
|
||||||
.opaque {
|
|
||||||
display: block;
|
|
||||||
position: absolute;
|
|
||||||
top: 2px;
|
|
||||||
left: 0px;
|
|
||||||
height: 10px;
|
|
||||||
width: 10px;
|
|
||||||
background: url('onion_skin_sprites.gif') -2px -10px no-repeat;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} //.view.onion-skin
|
|
||||||
}
|
|
||||||
.view-modes{
|
|
||||||
|
|
||||||
padding: 10px;
|
|
||||||
text-align: center;
|
|
||||||
|
|
||||||
background-image: -webkit-gradient(linear, 0 0, 0 30, color-stop(0.066, #eee), to(#dfdfdf));
|
|
||||||
background-image: -webkit-linear-gradient(#eee 6.6%, #dfdfdf);
|
|
||||||
background-image: -moz-linear-gradient(#eee 6.6%, #dfdfdf);
|
|
||||||
background-image: -o-linear-gradient(#eee 6.6%, #dfdfdf);
|
|
||||||
|
|
||||||
ul, li{
|
|
||||||
list-style: none;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
display: inline-block;
|
|
||||||
}
|
|
||||||
|
|
||||||
li{
|
|
||||||
color: grey;
|
|
||||||
border-left: 1px solid #c1c1c1;
|
|
||||||
padding: 0 12px 0 16px;
|
|
||||||
cursor: pointer;
|
|
||||||
&:first-child{
|
|
||||||
border-left: none;
|
|
||||||
}
|
|
||||||
&:hover{
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
&.active{
|
|
||||||
&:hover{
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
cursor: default;
|
|
||||||
color: #333;
|
|
||||||
}
|
|
||||||
&.disabled{
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/** COMMIT BLOCK **/
|
/** COMMIT BLOCK **/
|
||||||
.commit-title{
|
.commit-title{display: block;}
|
||||||
display: block;
|
.commit-title{margin-bottom: 10px}
|
||||||
}
|
.commit-author, .commit-committer{display: block;color: #999; font-weight: normal; font-style: italic;}
|
||||||
.commit-title{
|
.commit-author strong, .commit-committer strong{font-weight: bold; font-style: normal;}
|
||||||
margin-bottom: 10px;
|
|
||||||
}
|
|
||||||
.commit-author, .commit-committer{
|
|
||||||
display: block;
|
|
||||||
color: #999;
|
|
||||||
font-weight: normal;
|
|
||||||
font-style: italic;
|
|
||||||
}
|
|
||||||
.commit-author strong, .commit-committer strong{
|
|
||||||
font-weight: bold;
|
|
||||||
font-style: normal;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/** COMMIT ROW **/
|
||||||
* COMMIT ROW
|
|
||||||
*/
|
|
||||||
.commit {
|
.commit {
|
||||||
|
@extend .wll;
|
||||||
|
|
||||||
.browse_code_link_holder {
|
.browse_code_link_holder {
|
||||||
|
@extend .span2;
|
||||||
float:right;
|
float:right;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -360,10 +254,18 @@
|
||||||
float:left;
|
float:left;
|
||||||
@extend .lined;
|
@extend .lined;
|
||||||
min-width:65px;
|
min-width:65px;
|
||||||
font-family: $monospace_font;
|
font-family: $monospace;
|
||||||
|
}
|
||||||
|
|
||||||
|
.commit-author-name {
|
||||||
|
color: #777;
|
||||||
|
&:hover {
|
||||||
|
color: #999;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.diff_file_header a,
|
||||||
.file-stats a {
|
.file-stats a {
|
||||||
color: $style_color;
|
color: $style_color;
|
||||||
}
|
}
|
||||||
|
@ -392,30 +294,11 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.label_commit {
|
.label_commit {
|
||||||
@include border-radius(4px);
|
@include round-borders-all(4px);
|
||||||
padding:2px 4px;
|
padding:2px 4px;
|
||||||
|
border:none;
|
||||||
font-size:13px;
|
font-size:13px;
|
||||||
background: #474D57;
|
background: #474D57;
|
||||||
color:#fff;
|
color:#fff;
|
||||||
font-family: $monospace_font;
|
font-family: $monospace;
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
.commits-compare-switch{
|
|
||||||
background: url("switch_icon.png") no-repeat center center;
|
|
||||||
width: 16px;
|
|
||||||
height: 18px;
|
|
||||||
text-indent: -9999px;
|
|
||||||
float: left;
|
|
||||||
margin-right: 9px;
|
|
||||||
border: 1px solid #DDD;
|
|
||||||
@include border-radius(4px);
|
|
||||||
padding: 4px;
|
|
||||||
background-color: #EEE;
|
|
||||||
}
|
|
||||||
|
|
||||||
.commit-description {
|
|
||||||
background: none;
|
|
||||||
border: none;
|
|
||||||
margin: 0;
|
|
||||||
}
|
}
|
||||||
|
|