<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/gitlab/gitlab-ce.git/app/views/devise, branch app-differences</title>
<subtitle>gitlab.com: gitlab-org/gitlab-ce.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/'/>
<entry>
<title>Fix syntax errors in devise/sessions/_new_ldap</title>
<updated>2019-07-18T15:29:51+00:00</updated>
<author>
<name>Robert Speicher</name>
<email>rspeicher@gmail.com</email>
</author>
<published>2019-07-18T15:27:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=41e2be78b58f63d5637ea97093118ab0fb5fdcd5'/>
<id>41e2be78b58f63d5637ea97093118ab0fb5fdcd5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Refactor common Page Objects to use data tags</title>
<updated>2019-07-18T11:57:26+00:00</updated>
<author>
<name>Dan Davison</name>
<email>ddavison@gitlab.com</email>
</author>
<published>2019-07-18T11:57:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=c5783cb59d8a2d91333e6f9527802944594686de'/>
<id>c5783cb59d8a2d91333e6f9527802944594686de</id>
<content type='text'>
Common usages within GitLab QA include Login Page,
navigation bars and layouts
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Common usages within GitLab QA include Login Page,
navigation bars and layouts
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'qa-selector-uniformization-common-2' into 'master'</title>
<updated>2019-07-17T04:07:06+00:00</updated>
<author>
<name>Mark Lapierre</name>
<email>mlapierre@gitlab.com</email>
</author>
<published>2019-07-17T04:07:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=aafa6a116f2e0cf48e231dd5dac1feb487805090'/>
<id>aafa6a116f2e0cf48e231dd5dac1feb487805090</id>
<content type='text'>
Refactor common Page Objects to use data tags (No. 2 Contd.)

See merge request gitlab-org/gitlab-ce!30763</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Refactor common Page Objects to use data tags (No. 2 Contd.)

See merge request gitlab-org/gitlab-ce!30763</pre>
</div>
</content>
</entry>
<entry>
<title>CE backport: Removed non-decimal event values</title>
<updated>2019-07-16T12:44:15+00:00</updated>
<author>
<name>Donald Cook</name>
<email>dcook@gitlab.com</email>
</author>
<published>2019-07-16T12:44:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=f219b744336364ff316cbddb1b097539ebec27bc'/>
<id>f219b744336364ff316cbddb1b097539ebec27bc</id>
<content type='text'>
Snowplow only accepts decimals for value
This MR removes sending of value implicitly with the value attribute
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Snowplow only accepts decimals for value
This MR removes sending of value implicitly with the value attribute
</pre>
</div>
</content>
</entry>
<entry>
<title>Refactor more common Page Objects to use data tags</title>
<updated>2019-07-15T22:54:05+00:00</updated>
<author>
<name>ddavison</name>
<email>ddavison@gitlab.com</email>
</author>
<published>2019-07-15T22:54:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=119be7ffd12d72b0871357330145efbacef4d4e6'/>
<id>119be7ffd12d72b0871357330145efbacef4d4e6</id>
<content type='text'>
Common usages within GitLab QA include login page, navbars and layouts
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Common usages within GitLab QA include login page, navbars and layouts
</pre>
</div>
</content>
</entry>
<entry>
<title>Introduce data-qa-selector to supplant .qa-class</title>
<updated>2019-07-10T23:09:43+00:00</updated>
<author>
<name>ddavison</name>
<email>ddavison@gitlab.com</email>
</author>
<published>2019-05-29T23:47:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=390e0d8906c066996e8bbb14aa5824643f9798f8'/>
<id>390e0d8906c066996e8bbb14aa5824643f9798f8</id>
<content type='text'>
In order to break away from using CSS classes as
our primary method of element identification, we
need to provide the ability to search for data
attributes.

Make Test::Sanity::Selectors now work

Utilize regex to match on literal strings of the element name

Suggest the data-qa-selector pattern vs the qa-

Add data-qa-selector to login page to start

We need a page that is heavily used in order to be
confident that this functionality works. Let's start
with the Login page

Use appropriate HAML data tag practices
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In order to break away from using CSS classes as
our primary method of element identification, we
need to provide the ability to search for data
attributes.

Make Test::Sanity::Selectors now work

Utilize regex to match on literal strings of the element name

Suggest the data-qa-selector pattern vs the qa-

Add data-qa-selector to login page to start

We need a page that is heavily used in order to be
confident that this functionality works. Let's start
with the Login page

Use appropriate HAML data tag practices
</pre>
</div>
</content>
</entry>
<entry>
<title>New RecaptchaExperimentHelper modules</title>
<updated>2019-06-25T22:32:54+00:00</updated>
<author>
<name>Ash McKenzie</name>
<email>amckenzie@gitlab.com</email>
</author>
<published>2019-06-25T22:32:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=15e9aced75319e6e2b48f4b19fcba1346103f772'/>
<id>15e9aced75319e6e2b48f4b19fcba1346103f772</id>
<content type='text'>
RecaptchaExperimentHelper contains helper methods
to assist in the controller and view layers.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
RecaptchaExperimentHelper contains helper methods
to assist in the controller and view layers.
</pre>
</div>
</content>
</entry>
<entry>
<title>Resolve "Username availability checker breaks inline validation"</title>
<updated>2019-06-19T13:48:30+00:00</updated>
<author>
<name>Jiaan</name>
<email>3468028-jiaan@users.noreply.gitlab.com</email>
</author>
<published>2019-06-19T13:48:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=78eeb3e09d020ac69ba620d1959f2a8db3c1d65e'/>
<id>78eeb3e09d020ac69ba620d1959f2a8db3c1d65e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add trackEvent when accessing the Register tab</title>
<updated>2019-06-13T04:54:38+00:00</updated>
<author>
<name>Ash McKenzie</name>
<email>amckenzie@gitlab.com</email>
</author>
<published>2019-06-07T07:40:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=1dd283d58d0d7569c6b00650e52af4d74952f2e3'/>
<id>1dd283d58d0d7569c6b00650e52af4d74952f2e3</id>
<content type='text'>
This is a no-op for CE.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is a no-op for CE.
</pre>
</div>
</content>
</entry>
<entry>
<title>Resolve "Inline validation for user's name and username length"</title>
<updated>2019-06-06T07:39:59+00:00</updated>
<author>
<name>Jiaan</name>
<email>3468028-jiaan@users.noreply.gitlab.com</email>
</author>
<published>2019-06-06T07:39:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=c38ea7e8843660ae9993ad8f515866113bbcc4f5'/>
<id>c38ea7e8843660ae9993ad8f515866113bbcc4f5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
