Commit Graph

1337 Commits

Author SHA1 Message Date
Piotr Sarnacki
a56e4a39c3 Fix sorting on the left sidebar 2015-12-08 10:18:07 +01:00
Piotr Sarnacki
e1a334678d Fix handling default_branch from pusher
Pusher payloads don't have all of the information that is available in
API V3, so we need to do some normalizing.
2015-12-08 10:18:07 +01:00
Piotr Sarnacki
9b4d5c5b4e Remove obsolete pusher handling code from store
Removed code was checking if we should handle a pusher event, ie. if the
event is associated with the user, or if we already have a record
associated with the event. We don't need the check now, because we no
longer use the common channel.
2015-12-08 10:18:07 +01:00
Piotr Sarnacki
b31831d535 Set repo as default serializer only on repo serializer, not v3 2015-12-08 10:18:07 +01:00
Piotr Sarnacki
b8b1459cf5 Don't error out if there's no hash in extractRelationship for V3 2015-12-08 10:18:07 +01:00
Piotr Sarnacki
69dd90b76b Model#typeKey -> Model#modelName 2015-12-08 10:18:06 +01:00
Piotr Sarnacki
a732a18e59 Fix key for repo relationship for V3 API 2015-12-08 10:18:06 +01:00
Piotr Sarnacki
c3fd0d8e98 Fix loading record by slug
In a repo route we need to find record by slug there is no easy way to
do it with a public finders API, so we need to use adapter and
serializers directly. The problem is that the old way of doing this
didn't use the normalizePayload function and also it didn't add included
records properly. New code properly normalizes response and adds all of
the embedded records that were extracted from the response.
2015-12-08 10:18:06 +01:00
Piotr Sarnacki
7ae4d6aa7d Fix handling branches
This commit fixes handling of branches when using both V3 and V2. The
changes include:

  * proper definition of relationships that reflect V3 structure, so for
    example build belongs to a branch
  * setting up inverse records for some of the relationships. without
    doing that Ember Data can handle relationships in a surprising way,
    for example if the same record is referenced in 2 places in a
    belongsTo relationship, Ember Data will remove one of the references
    without proper inverse definitions
  * we need to add id when extracting branch as a relationship. Ember
    Data expects all of the relationships to have an id
  * lastly, we need to mimic the structure of the V3 API in V2 payloads,
    so for a build payload I'm now creating a branch record
2015-12-08 10:18:06 +01:00
Piotr Sarnacki
147ab06fcf Fix references in V3 payloads
V3 API doesn't return any of the records more than 2 times. If a record
is already included in the response any other occurences will be
represented as a reference, ie. a hash with just an @href. Ember Data
doesn't play nice with such references as it needs an id to identify a
record.

The code in this commit traverses payloads from V3 API and adds an id to
each of the references that are present.

For example a following payload:

    {
      "@href": "/build/1",
      "@type": "build"
      "id": 1,
      "state": "passed",
      "branch": {
        "@href": "/repo/1/branch/master",
        "name": "master",
        "lastBuild": {
          "@href": "/build/1"
        }
      }
    }

Will be changed to:

    {
      "@href": "/build/1",
      "@type": "build"
      "id": 1,
      "state": "passed",
      "branch": {
        "@href": "/repo/1/branch/master",
        "name": "master",
        "lastBuild": {
          "@href": "/build/1",
          "id": 1
        }
      }
    }

In this case an "id" field was added to "branch.lastBuild" field.
2015-12-08 10:18:06 +01:00
Piotr Sarnacki
e84cf89cf7 app/serializers/repo.coffee -> app/serializers/repo.js 2015-12-08 10:18:05 +01:00
Piotr Sarnacki
e161717f73 Simplify pusher handling in store 2015-12-08 10:18:05 +01:00
Piotr Sarnacki
d7400c0567 Remove console.log 2015-12-08 10:18:05 +01:00
Piotr Sarnacki
81898e422f Fix pusher to work with new ember-data
This commit just fixes things to the point where pusher updates are
applied to the store properly. This still lacks a business logic fixes,
so for example we won't update lastBuild's field, because there's no
such information from pusher.
2015-12-08 10:18:05 +01:00
Piotr Sarnacki
7187d2ef45 Disable dashboard test for now 2015-12-08 10:18:05 +01:00
Piotr Sarnacki
d636369daa Fix sidebar repos list
We need this list to update with pusher, so filtering is better than
using store.query.
2015-12-08 10:18:05 +01:00
Piotr Sarnacki
35f95739c7 Attribute mappings in serializers should use underscore notation 2015-12-08 10:18:04 +01:00
Piotr Sarnacki
dbd83c8643 Use job_ids as a key for jobs relationship for build 2015-12-08 10:18:04 +01:00
Piotr Sarnacki
ca633bdf7b Don't add commit data to included array in build serializer
We already do it in an abstracted way (ie. for all relationships) in v2
fallback serializer.
2015-12-08 10:18:04 +01:00
Piotr Sarnacki
ad4d06cb25 No need to add repo to the list of attributes now 2015-12-08 10:18:04 +01:00
Piotr Sarnacki
39a579c9db Fix handling relationships for V2 API
* we should look for both embedded relationship and relationship key,
  so in cases like for commit, when there's a full commit data on
  "commit" property, and only id at "commit_id", we will use commit data
* we can't add @type to V2 fallback, because in other places we chack
  for @type to distinguish V2 and V3 payloads
* there's no need to include a record in "included" if there's only a
  type and an id there
2015-12-08 10:18:04 +01:00
Piotr Sarnacki
34e53c1034 Fix job route's use of job.build relationship
build is an async relationship now, so job.get('build') returns a
promise.
2015-12-08 10:18:04 +01:00
Piotr Sarnacki
e4623d981b Fix including to-many relationships for V3 payloads 2015-12-08 10:18:04 +01:00
Piotr Sarnacki
c50c01f8ea Properly include relationships for V2 payloads 2015-12-08 10:18:04 +01:00
Piotr Sarnacki
a2bd6d827d Convert build serializer to javascript 2015-12-08 10:18:03 +01:00
Piotr Sarnacki
74a9a1603e Update serializers to work with jobs endpoint response 2015-12-08 10:18:03 +01:00
Piotr Sarnacki
d59e402314 Include repositoryId as an attribute on build
For some reason (probably some problem with one of the serializers) we
sometimes lack an id attribute for a promise that we get for a repo
relationship on build. Because of that doing `build.get('repo.id')` may
sometimes return undefined. A temporary workaround is to make sure that
we always can access the `repository_id` property.
2015-12-08 10:18:03 +01:00
Piotr Sarnacki
3946077c96 Use V2FallbackSerializer for jobs 2015-12-08 10:18:03 +01:00
Piotr Sarnacki
c40e413f35 Don't throw error if broadcastArray is undefined 2015-12-08 10:18:03 +01:00
Piotr Sarnacki
ab0b0cbebc Use storage service instead of Travis.storage 2015-12-08 10:18:03 +01:00
Piotr Sarnacki
1843d8cb54 Remove unused settings/index controller 2015-12-08 10:18:03 +01:00
Piotr Sarnacki
6ee956367c Observe repos.firstObject on reposController
Since we change repos property on reposController, we can't set observer
on repos, because as soon as it's changed, we loose the observer.
Instead, we should observe only on reposController, which is not going
to change.
2015-12-08 10:18:02 +01:00
Piotr Sarnacki
8de314e943 Sort repos in repos-list component, not in controller 2015-12-08 10:18:02 +01:00
Piotr Sarnacki
47439657a1 Use lastBuild from defaultBranch on repository
One thing that is not standard here is a serializer for branch, which
uses @href as id. At this point branches don't have ids and ember-data
needs one, so using @href is the easiest way.
2015-12-08 10:18:02 +01:00
Piotr Sarnacki
d9cff6e8b4 Create adapters and serializers working with v3 and v2 APIs
This commit adds adapters and serializers for v3, but also a fallback
serializer for v2, which allows to handle v2 and v3 payloads at the same
time. This is needed, because when we use v3 endpoint for one of the
models (in this case repo), we can also get embedded records of other
types (like branch or build).
2015-12-08 10:18:02 +01:00
Piotr Sarnacki
5cf1cbba6b Move ajax and auth into services 2015-12-08 10:18:02 +01:00
Piotr Sarnacki
d677307006 Remove some more deprecations 2015-12-08 10:17:32 +01:00
Piotr Sarnacki
63ddf332a8 Properly call error callback in ajax utility 2015-12-07 13:35:25 +01:00
Piotr Sarnacki
69ac8e1a00 Revert "Change signature in $.ajax's error callback"
This reverts commit 60a77742c0.

We don't use $.ajax...
2015-12-07 10:05:19 +01:00
Piotr Sarnacki
60a77742c0 Change signature in $.ajax's error callback
Error callback in $.ajax has different signature than success callback
2015-12-07 09:39:39 +01:00
Lisa P
60116154c7 fix flash messages width 2015-12-04 16:02:03 +01:00
Lisa P
efe80caa37 clean up icons and other assets 2015-12-04 11:44:24 +01:00
Lisa P
2e45aae5f9 update flexbox in footer 2015-12-04 11:44:24 +01:00
Lisa P
174e7b2bc1 update docs and blog links to use https 2015-12-04 11:44:24 +01:00
Lisa P
86a6cf5c05 refactor some icons 2015-12-04 11:44:24 +01:00
Lisa P
5a8024fd42 change settings icon on profile page 2015-12-04 11:44:23 +01:00
Lisa P
e0629a1571 change to new icons for key and fingerprint 2015-12-04 11:44:23 +01:00
Piotr Sarnacki
3827b6b4d8 Add debug info on ajax errors 2015-12-04 11:23:53 +01:00
Lisa P
61e445381c Merge branch 'master' of github.com:travis-ci/travis-web 2015-12-03 12:32:59 +01:00
Lisa P
d78ec1a438 fix commit link in build header 2015-12-03 12:32:48 +01:00
Piotr Sarnacki
b2ec5ab110 Merge pull request #415 from travis-ci/sol-infrastructure-conductor
Tweaking solarce's title
2015-12-03 12:03:12 +01:00
Lisa P
e86de3d068 fix tab arrow in FF 2015-12-03 11:50:07 +01:00
Lisa P
88b7af156d add scale icon 2015-12-03 11:22:29 +01:00
Brandon Burton
5ece740957 Tweaking solarce's title
**Infrastructure Conductor** =D
2015-12-02 10:16:38 -08:00
Lisa P
e4658e8023 fix tests and stuff 2015-12-02 17:34:46 +01:00
Lisa P
728f428c1f fix notices 2015-12-02 16:42:54 +01:00
Lisa P
9cb7c6c836 tweak elapsed time 2015-12-02 16:28:14 +01:00
Lisa P
576409ba1e add elapsed time 2015-12-02 16:13:28 +01:00
Lisa P
9baadcfd9e try two-line /builds
fix white ghosting on api icon

check requests for existing branch

tweak cc icon

tweak settings fields

try hover over settigns menu
2015-12-02 16:13:26 +01:00
Lisa P
0b1bd7d090 style caches
some cache tweaks

add title attributes to settings interaction elements
2015-12-02 16:13:21 +01:00
Lisa P
495c3b50f8 style requests
some spacing tweaks

implement Justine's feedback
2015-12-02 16:13:18 +01:00
Lisa P
3fa79819dd change template for build history
new icon vor show more btn
2015-12-02 16:13:15 +01:00
Lisa P
85f61c5155 style pullrequests 2015-12-02 16:13:14 +01:00
Lisa P
336479a2be jobs list styles
align animating icons

bring back color in sidebar tiles

change settings hover color

new help icon for allowed failures and settings help

fix svgs for firefox

also for remove log

also for help icon

fix coloring issues, use flexbox footer
2015-12-02 16:13:10 +01:00
Lisa P
fe36e018ce start flexboxify job list
implement Justine\'s feedback

remove regenerate key popup styles

add new icons, refactor request-icon component

use correct property name
2015-12-02 16:11:25 +01:00
Lisa P
fd885304f6 remove old build header styles
delete old job styles

cleanup templates and prepare for jobs list
2015-12-02 16:11:21 +01:00
Lisa P
a6e6cb0418 make adjustment to logs to take up less space on mobile 2015-12-02 16:11:20 +01:00
Lisa P
c7212174fb style settings button
hover states for repo tool buttons

style log buttons

dont forget the small arrow iconå
2015-12-02 16:11:17 +01:00
Lisa P
1ba9548ad0 first iteration build header styles
build header styles 2nd iteration

make job header use component too

cleanup templates and markup for repo page

styles for the repo header

rewrite styles for repo header, cleanup tabs
2015-12-02 16:11:14 +01:00
Lisa P
0176f9fb0c remove unused color variables
remove old icons
2015-12-02 16:11:10 +01:00
Lisa P
613e1dac80 make component for build header 2015-12-02 16:11:09 +01:00
Lisa P
f117c939dd rewrite markup for buildheader
fill in status icons
2015-12-02 16:11:05 +01:00
Henrik Hodne
465ddc81f6 Fix Xcode typo on landing page 2015-12-02 07:36:21 +01:00
Lisa P
f9d5e94d41 change _config to config 2015-12-01 12:09:07 +01:00
Lisa P
b482922dd7 also check for dist in GCE notice 2015-12-01 11:38:50 +01:00
Lisa P
00304798a6 add notice for gce builds 2015-11-27 16:55:01 +01:00
Lisa P
6771e53da6 fix width in plans 2015-11-24 12:06:02 +01:00
carlad
36a28290ec fix typo ulimited to unlimited 2015-11-24 11:38:20 +01:00
Lisa P
fbe9eb2fc4 fix safari flexbox issues for plans and logo 2015-11-23 13:01:18 +01:00
Lisa P
787b2fa4d1 fix button alignment bug 2015-11-23 12:47:57 +01:00
Lisa P
466588d1d6 remove flexbox on small screens because it causes too much troubl eon safari 2015-11-23 11:36:44 +01:00
Lisa P
362ff8d73a add a bit more spacing on feature list 2015-11-23 10:42:09 +01:00
Lisa P
41f69029a4 set favicon to default after logout 2015-11-23 10:38:32 +01:00
Lisa P
a604463c9d change nav change logic 2015-11-23 10:26:39 +01:00
Lisa P
af6e1ec69a remove another declaration of topbar color 2015-11-23 09:49:36 +01:00
Lisa P
6784f6f708 Merge pull request #407 from travis-ci/lp-pro-landingpage
pro landing page
2015-11-23 09:24:54 +01:00
Lisa P
d299f330ff align plan number 2015-11-23 09:11:58 +01:00
Lisa P
9b3440be1f change image path 2015-11-23 09:08:24 +01:00
Lisa P
4bbb90ce02 add logos and paths 2015-11-23 08:59:02 +01:00
Lisa P
3f2fb06791 update josh and flex-flow of team 2015-11-20 17:21:02 +01:00
Lisa P
193eccb179 fix typo on plans page 2015-11-20 16:35:12 +01:00
Lisa P
9acb4a2476 hot pink fixes (with flexbox) pt3 2015-11-20 14:00:19 +01:00
Lisa P
335b7a1302 hot pink fixes pt2 2015-11-20 13:39:51 +01:00
Lisa P
4d69e32534 hot pink fixes pt1 2015-11-20 13:21:58 +01:00
Lisa P
2eaf1e9c4d change nav for pro signed in 2015-11-19 18:01:39 +01:00
Lisa P
983ccd5e0a change team page route 2015-11-19 17:38:27 +01:00
Lisa P
b4ccfa5110 update team flags 2015-11-16 17:26:21 +01:00
Lisa P
834ab67ac2 add ga tracking to pro landing and pricing buttons 2015-11-16 14:58:34 +01:00
Lisa P
cfcd65c0b1 fill in missing links on pro pages 2015-11-16 13:00:47 +01:00
Lisa P
ff6455bab7 add osx_image to keys-map 2015-11-13 13:13:40 +01:00
Lisa P
6e8e48ab96 redirect to landing page after signout 2015-11-13 12:41:39 +01:00
Lisa P
46a3af254a change plans route on .org 2015-11-12 13:10:33 +01:00
Lisa P
b5ef87fd32 also remove obsolete files 2015-11-11 18:59:01 +01:00
Lisa P
7b04ae16ce rearrange some css files 2015-11-11 18:57:02 +01:00
Lisa P
701acecc56 change pro navigation and landing page redirects 2015-11-11 18:18:58 +01:00
Lisa P
88fd47002f add team pics 2015-11-11 17:17:07 +01:00
Lisa P
dfb303a0a3 add finaly styles to logo page 2015-11-11 16:58:20 +01:00
Lisa P
b23aaa8b02 add more logo page content 2015-11-11 13:13:36 +01:00
Lisa P
11b66b26a0 add logo page 2015-11-09 20:07:57 +01:00
Lisa P
d5ac31b557 redirect plans page to landing age if on .org 2015-11-09 19:51:32 +01:00
Lisa P
2299494da8 tweak cta display on pro pages 2015-11-09 17:00:55 +01:00
Lisa P
2fac9ba462 teak team member styles 2015-11-09 16:50:58 +01:00
Lisa P
f898636a25 make team members a component 2015-11-09 16:36:15 +01:00
Lisa P
7d1dce76ee fix z-index of jobs:hover 2015-11-04 11:34:27 +01:00
Lisa P
e2122050df more tweaks 2015-11-04 11:29:13 +01:00
Lisa P
f7599e98c3 tweak landing page colors 2015-11-04 11:17:04 +01:00
Lisa P
813998be35 add files for team page 2015-10-29 18:26:41 +01:00
Lisa P
d16b655d1c change pricing pathname to plans 2015-10-29 18:18:10 +01:00
Lisa P
0f6230fddc fix link-to in branches template 2015-10-29 17:56:29 +01:00
Lisa P
e247ab35b4 responsive tweaks 2015-10-29 17:43:51 +01:00
Lisa P
6a8911b36e second iteration pricing styles 2015-10-29 16:58:04 +01:00
Lisa P
8f7ec796af first iteration pricing styles 2015-10-28 18:30:04 +01:00
Lisa P
701c683bff write markup for pricing page 2015-10-28 17:01:08 +01:00
Lisa P
72879709f0 fix broadcasts overlay by removing z-index on the wrong state 2015-10-28 13:35:08 +01:00
Lisa P
fbd7305252 fix branches sorting order 2015-10-28 13:21:23 +01:00
Lisa P
46836812f4 refactor new link styles to mixin 2015-10-28 12:56:19 +01:00
Lisa P
cd82f30f8c change some markup bits 2015-10-28 12:39:21 +01:00
Lisa P
b35e24868a tweak responsive behaviour 2015-10-27 18:08:33 +01:00
Lisa P
8719b1a772 some spacing things 2015-10-27 17:17:37 +01:00
Lisa P
e80f399e83 add icon for pinned tabs in Safari 2015-10-27 14:46:21 +01:00
Lisa P
fda6e7f6f9 more styling for .com landing page 2015-10-27 14:42:14 +01:00
Lisa P
e47ec2f581 add some flexbox action 2015-10-26 18:13:38 +01:00
Lisa P
1620db18c9 add and use a lot of icons 2015-10-26 18:00:53 +01:00
Lisa P
811ab63f1e start styling pro landing page 2015-10-26 15:23:36 +01:00
Lisa P
b350414ae6 prepare markup for pro landing page 2015-10-26 15:23:36 +01:00
Lisa P
625e23228a put eye svg into component 2015-10-26 15:22:13 +01:00
Lisa P
512450b7ce tweak icon iris and toolip 2015-10-26 13:48:34 +01:00
Lisa P
8c911fcc2c add eye icon and tooltip to profile token toggle 2015-10-26 12:34:57 +01:00
Lisa P
5f00526700 add toggle functionality to profile token 2015-10-23 17:52:15 +02:00
Lisa P
def57c603b provide fallback for owner page is payload is empty 2015-10-23 17:15:22 +02:00
Lisa P
64a580f299 rewrite icon template logic 2015-10-23 12:17:26 +02:00
Lisa P
68cee22a76 refactor logic change 2015-10-23 11:53:57 +02:00
Lisa P
e1f5086877 also apply new logic to update method 2015-10-22 21:41:29 +02:00
Hiro Asari
52cbf7a130 Merge pull request #404 from HPI-BP2015H/smalltalk
Smalltalk support
2015-10-22 11:30:18 -04:00
Lisa P
d1f3ee2c6f Merge pull request #401 from travis-ci/lp-broadcasts
Broadcasts
2015-10-22 17:29:29 +02:00
Lisa P
aad5530d2e change tower icon color logic 2015-10-22 17:06:12 +02:00
Lisa P
380204bb44 fix svg overflow in firefox 2015-10-22 15:55:53 +02:00
Lisa P
68537ca3a5 fix button alignment, tweak broadcast 2015-10-22 15:50:42 +02:00
Steffen Kötte
1d6cf2fbea Smalltalk support 2015-10-22 12:09:06 +02:00
Lisa P
1545dbd9d1 animate transmission waves 2015-10-21 18:39:54 +02:00
Lisa P
02f986fe72 change fade animation and properly clean timeout 2015-10-21 17:47:44 +02:00
Lisa P
5c99abfafc add hover colors and rewrite tower as component 2015-10-21 16:55:44 +02:00
Lisa P
36147b36a0 fix topbar navigation (again) 2015-10-21 10:27:29 +02:00
Lisa P
99e3864acd make broadcasts icon change color 2015-10-21 10:27:29 +02:00
Lisa P
8bf917984c make broadcasts list update itself after element is removed 2015-10-21 10:27:29 +02:00
Lisa P
14faf23d0b bring back status icons 2015-10-21 10:27:29 +02:00
Lisa P
9fa7e408cd make seen broadcasts work with localstorage 2015-10-21 10:27:29 +02:00
Lisa P
558f6e64c0 remove some things 2015-10-21 10:27:28 +02:00
Lisa P
fa0d533059 try some things 2015-10-21 10:27:28 +02:00
Lisa P
10a747d2ac filter out expired broadcasts 2015-10-21 10:27:28 +02:00
Lisa P
1bbceeaf13 rewrite topbar to fix in broadcasts, plus some cleanup 2015-10-21 10:27:28 +02:00
Lisa P
bb544f8a7d only show tower when logged in 2015-10-21 10:26:30 +02:00
Lisa P
9c403da804 style broadcasts and toggle them 2015-10-21 10:26:30 +02:00
Lisa P
f33161f95e start working on broadcasts 2015-10-21 10:26:30 +02:00
Jonne Haß
16a8d356fc Add crystal language key 2015-10-21 00:44:13 +02:00
carlad
02e2f84209 remove link to stack overflow in help menu 2015-10-19 18:11:35 +02:00
Konstantin Haase
718bf96a87 owner page: fix API query to eager load repositories for all owners, not just organizations 2015-10-15 09:09:34 +02:00
Lisa P
9052ec133c fix test 2015-10-14 15:27:45 +02:00
Lisa P
a5c3cf69f2 fix branches after api cleanup 2015-10-14 14:57:39 +02:00
Lisa P
2e39139da3 fix dashbaord after api cleanup, change some interaction elements 2015-10-14 14:57:39 +02:00
Lisa P
860e89dd86 fix owner page after api cleanup 2015-10-14 14:57:39 +02:00
Lisa P
7d6dd75bdf remove logic again because api takes care of it now 2015-10-14 14:57:39 +02:00
Lisa P
e80c022874 remove wrong sorting param 2015-10-14 14:57:39 +02:00
Lisa P
ebc7c5a1ed use different query more logic 2015-10-14 14:57:38 +02:00
Lisa P
8f61f49826 query for more branches if first call is not last page 2015-10-14 14:57:38 +02:00
Lisa P
3306e5a7e6 Merge pull request #398 from travis-ci/fix-404
Fix 404
2015-10-13 13:02:30 +02:00
Lisa P
3c2fbc067e make give 404 a matchable route and redirect from owner if necessary 2015-10-13 12:38:22 +02:00
Lisa P
7f57466484 set limit in branch query to 100 2015-10-09 14:52:09 +02:00
Lisa P
f9ac2e6a76 remove spacing on build list 2015-10-08 15:34:36 +02:00
Lisa P
1ba4cf25d0 filter for push and api builds on branches 2015-10-08 15:28:17 +02:00
Lisa P
e646edbc0e Merge branch 'master' into fix-404 2015-10-07 19:07:06 +02:00
Lisa P
1d71f943ca really fix build tile links 2015-10-07 18:01:31 +02:00
Lisa P
24032d4040 fix status coloring on owner page 2015-10-07 17:37:53 +02:00
Lisa P
b7215bbeaf fix sync button trigger icon on profile page 2015-10-07 17:34:09 +02:00
Lisa P
4da602c632 fix build tile links 2015-10-07 17:29:17 +02:00
Lisa P
a9c39ceab6 update icons for running builds in sidebar 2015-10-07 15:28:06 +02:00
Lisa P
c0917d2128 rearrange job filtering in sidebar 2015-10-06 21:40:44 +02:00
Lisa P
0d94c1b786 try to get redirect to 404 working 2015-10-06 21:07:24 +02:00
Lisa P
2b84d5228b smarter filtering for default branch 2015-10-06 17:21:56 +02:00
Lisa P
fedc6acec1 take out dropup on build tiles and use title attribtue instead 2015-10-06 00:54:08 +02:00
Lisa P
fbb30d120c fix owner page query 2015-10-05 23:31:59 +02:00
Lisa P
4ed60c5fbb change owner query and comment out transition 2015-10-05 22:50:09 +02:00
Lisa P
12ac35a123 fix double link in build tiles, better error message for owner 2015-10-05 22:44:29 +02:00
Lisa P
f41a6d0e34 Merge pull request #395 from Ladsgroup/master
Change Rst ro RST
2015-10-05 19:59:29 +02:00
Lisa P
942a48996a position dropups on buildTiles differently 2015-10-05 18:10:28 +02:00
Lisa P
e4e29ff418 add component for landing page builds + styles 2015-10-05 17:26:45 +02:00
Lisa P
a6ca21f03d remove some deprecation errors 2015-10-02 14:49:10 +02:00
Lisa P
27cb6035a3 fixed weird spacing and responsive behaviour with flexbox 2015-10-02 13:35:59 +02:00
Lisa P
d07afa8b6f also remove trigger build from branches without builds 2015-09-30 18:27:39 +02:00
Lisa P
4687957514 fix mobile for owner page 2015-09-29 18:20:23 +02:00
Lisa P
3a366a234a refactor new styles 2015-09-29 18:15:29 +02:00
Lisa P
6e7a27da87 take out interactive elements for now 2015-09-29 16:21:00 +02:00
Lisa P
1a1fedfb74 fix last_branch fields on dashbaord 2015-09-29 15:23:44 +02:00
Lisa P
0f2f2253cf make font-weight a variable and make it 400 2015-09-28 17:46:43 +02:00
Lisa P
76c9b368cf fix long repo and branch name issue 2015-09-28 17:25:20 +02:00
Lisa P
8562ac894c redo sync button on dashboard 2015-09-28 16:44:32 +02:00
Lisa P
e350f7bb04 fix dashboard avatars and filter padding 2015-09-28 14:41:25 +02:00
Lisa P
c38a64bc2f fix links in dashboard templates 2015-09-28 14:12:04 +02:00
amir
eb60eb0caf Change Rst ro RST
RST is abbreviation of reStructuredText.
Using Rst is plain wrong, it would be good to use RST or reStructuredText.
2015-09-25 18:55:58 +03:30
Lisa P
ffb635b846 switch back to default branch 2015-09-22 17:57:57 +02:00
Lisa P
a964272df2 change some styles on dashboard 2015-09-22 17:49:11 +02:00
Lisa P
3ef64f0910 start redoing dashboard 2015-09-21 18:56:00 +02:00
Lisa P
ace639adc0 update icons on owner page 2015-09-18 15:25:25 +02:00
Lisa P
33917bf73c try to refactor coloring mixins 2015-09-18 15:02:07 +02:00
Lisa P
abf40de3c2 fix list padding bug 2015-09-18 13:59:16 +02:00
Lisa P
b665468bf7 add moire breakpoint for row spacing 2015-09-18 12:41:20 +02:00
Lisa P
d44f020dec fix tab highlighting 2015-09-18 12:13:18 +02:00
Lisa P
f9b1c37d04 make transition to build history work 2015-09-17 17:07:54 +02:00
Lisa P
732f572c6e make sidebar icons smaller 2015-09-17 16:42:08 +02:00
Lisa P
b79b711e40 check for permissions before displaying trigger button 2015-09-17 16:39:00 +02:00
Lisa P
cb01f58f4d new icons for the sidebar 2015-09-17 16:16:37 +02:00
Lisa P
5a35f0c1b7 refactor coloring styles and work on trigger build workflow 2015-09-17 15:51:58 +02:00
Lisa P
ac8765f0f1 moar alignment fun 2015-09-17 14:49:35 +02:00
Lisa P
b74aa037d5 refactor status-icon component and start rolling out new icons in the sidebar 2015-09-17 14:22:00 +02:00
Lisa P
8b7a316ebf finally centered those dropups 2015-09-17 12:29:11 +02:00
Lisa P
6d86b587e9 failing to center dropups 2015-09-16 18:11:46 +02:00
Lisa P
0e210d791a :hotpink: fixes no 2 2015-09-16 13:21:46 +02:00
Lisa P
b7350f3ee0 :hotpink: fixes no 1 2015-09-16 13:14:24 +02:00
Lisa P
8ea023cdbd fix trigger build request and ui feedback 2015-09-15 18:41:03 +02:00
Lisa P
e8fb719591 tweak some styles and responsive behaviour 2015-09-15 17:59:15 +02:00
Lisa P
4dc5c03077 sort branches by date 2015-09-15 15:39:36 +02:00
Lisa P
b5648b864b style trigger build button for branches without builds 2015-09-15 12:17:37 +02:00
Lisa P
df59484afb filter for default branch 2015-09-15 11:21:00 +02:00
Lisa P
ceba450eb2 make trigger build on branches work 2015-09-14 17:48:06 +02:00
Lisa P
26fe355e40 get icon coloring right 2015-09-14 14:56:02 +02:00
Lisa P
5326821990 make last 5 builds work 2015-09-14 14:16:17 +02:00
Lisa P
6d0067bdb0 Merge branch 'master' into branches-redux 2015-09-14 10:35:23 +02:00
Piotr Sarnacki
06c579c453 Merge pull request #394 from travis-ci/owner-route-error-handling
Add error handling for the owner route
2015-09-09 10:37:05 +02:00
Piotr Sarnacki
ca54a64211 Fix flash messages 2015-09-09 10:36:12 +02:00
Lisa P
a00704943a prepare for 5 builds per branch request 2015-09-08 18:21:44 +02:00
Lisa P
fe67ce0882 work on branches templates 2015-09-08 17:48:47 +02:00
Lisa P
05f9b0df7e work on booting state icons 2015-09-08 13:28:31 +02:00
Lisa P
b3c966b245 toy around with branch requests 2015-09-07 18:09:39 +02:00
Lisa P
b047f4920d fix ssh-key errors handling 2015-09-07 16:24:43 +02:00
Lisa P
dda2051d57 commit current status 2015-09-07 15:53:14 +02:00
Piotr Sarnacki
13ce7f88bd Fix getting push access data on settings reload 2015-09-07 13:21:57 +02:00
Lisa P
8d5e7d5b87 Merge branch 'master' into branches-redux 2015-09-07 11:51:30 +02:00
Piotr Sarnacki
36058f79b9 Add error handling for the owner route 2015-09-07 11:45:58 +02:00
Piotr Sarnacki
1570935099 Fix closing broadcast messages 2015-09-04 09:03:50 +02:00
Piotr Sarnacki
ea88a6271a Fix redirecting to getting started page 2015-09-03 13:13:45 +02:00