<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/gitlab/gitlab-ce.git/lib/api/projects.rb, branch ci/api-projects</title>
<subtitle>gitlab.com: gitlab-org/gitlab-ce.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/'/>
<entry>
<title>Modify CI features in projects API</title>
<updated>2016-01-11T14:27:20+00:00</updated>
<author>
<name>Tomasz Maczukin</name>
<email>tomasz@maczukin.pl</email>
</author>
<published>2016-01-11T14:27:20+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=fc4108b38b5d0a7fc755c1977663f516b5dea0bd'/>
<id>fc4108b38b5d0a7fc755c1977663f516b5dea0bd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update ./doc/api</title>
<updated>2016-01-07T09:39:02+00:00</updated>
<author>
<name>Tomasz Maczukin</name>
<email>tomasz@maczukin.pl</email>
</author>
<published>2016-01-07T09:39:02+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=ba9799b42f5bc861df1fc5d41c149cf72e9daf04'/>
<id>ba9799b42f5bc861df1fc5d41c149cf72e9daf04</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add ci fields in project create/update feature API</title>
<updated>2016-01-05T14:00:25+00:00</updated>
<author>
<name>Tomasz Maczukin</name>
<email>tomasz@maczukin.pl</email>
</author>
<published>2016-01-05T14:00:25+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=0a21731e3bc400ceb9898c9efbc2a186f5348e09'/>
<id>0a21731e3bc400ceb9898c9efbc2a186f5348e09</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix API project lookups when querying with a namespace with dots</title>
<updated>2016-01-03T23:08:44+00:00</updated>
<author>
<name>Stan Hu</name>
<email>stanhu@gmail.com</email>
</author>
<published>2015-08-27T06:36:17+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=086cfc8685a6489ca032899307c77f828f515fbb'/>
<id>086cfc8685a6489ca032899307c77f828f515fbb</id>
<content type='text'>
Attempting to use the /projects/:id API by specifying :id in
"namespace/project" format would always result in a 404 if the namespace
contained a dot.

The reason? From http://guides.rubyonrails.org/routing.html#specifying-constraints:

"By default the :id parameter doesn't accept dots - this is because the dot is
used as a separator for formatted routes. If you need to use a dot within an
:id add a constraint which overrides this - for example id: /[^\/]+/ allows
anything except a slash."

Closes https://github.com/gitlabhq/gitlabhq/issues/9573
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Attempting to use the /projects/:id API by specifying :id in
"namespace/project" format would always result in a 404 if the namespace
contained a dot.

The reason? From http://guides.rubyonrails.org/routing.html#specifying-constraints:

"By default the :id parameter doesn't accept dots - this is because the dot is
used as a separator for formatted routes. If you need to use a dot within an
:id add a constraint which overrides this - for example id: /[^\/]+/ allows
anything except a slash."

Closes https://github.com/gitlabhq/gitlabhq/issues/9573
</pre>
</div>
</content>
</entry>
<entry>
<title>Add project permissions to all project API endpoints</title>
<updated>2015-12-22T18:58:23+00:00</updated>
<author>
<name>Stan Hu</name>
<email>stanhu@gmail.com</email>
</author>
<published>2015-12-13T19:43:17+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=301a30e0ea573c83c28358b2c856396fda878089'/>
<id>301a30e0ea573c83c28358b2c856396fda878089</id>
<content type='text'>
This standardizes all the project API formats. Also needed to support Huboard.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This standardizes all the project API formats. Also needed to support Huboard.
</pre>
</div>
</content>
</entry>
<entry>
<title>Api support for requesting starred projects for user</title>
<updated>2015-12-16T20:46:00+00:00</updated>
<author>
<name>Zeger-Jan van de Weg</name>
<email>mail@zjvandeweg.nl</email>
</author>
<published>2015-12-16T20:39:27+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=c36821df9f571855b477b09c102b90a78b9079e9'/>
<id>c36821df9f571855b477b09c102b90a78b9079e9</id>
<content type='text'>
Fixes #4112
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes #4112
</pre>
</div>
</content>
</entry>
<entry>
<title>Migrate CI::Project to Project</title>
<updated>2015-12-11T17:02:09+00:00</updated>
<author>
<name>Kamil Trzcinski</name>
<email>ayufan@ayufan.eu</email>
</author>
<published>2015-12-04T11:55:23+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=e80e3f5372d6bcad1fbe04a85b3086bb66794828'/>
<id>e80e3f5372d6bcad1fbe04a85b3086bb66794828</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix API setting of 'public' attribute to false will make a project private</title>
<updated>2015-12-06T01:39:36+00:00</updated>
<author>
<name>Stan Hu</name>
<email>stanhu@gmail.com</email>
</author>
<published>2015-12-06T01:36:19+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=631a30276e30354cfde6b759527abbb26ff6cf96'/>
<id>631a30276e30354cfde6b759527abbb26ff6cf96</id>
<content type='text'>
Closes #3864
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #3864
</pre>
</div>
</content>
</entry>
<entry>
<title>Expose CI enable option in project features</title>
<updated>2015-11-13T09:52:50+00:00</updated>
<author>
<name>Kamil Trzcinski</name>
<email>ayufan@ayufan.eu</email>
</author>
<published>2015-11-09T15:48:03+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=6384c757b7ce6d1c0c3e2a3828b0cfac26dfb7f9'/>
<id>6384c757b7ce6d1c0c3e2a3828b0cfac26dfb7f9</id>
<content type='text'>
- Enable CI by default for all new projects
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Enable CI by default for all new projects
</pre>
</div>
</content>
</entry>
<entry>
<title>Made suggested content changes based on MR Review</title>
<updated>2015-10-14T09:19:41+00:00</updated>
<author>
<name>Han Loong Liauw</name>
<email>hanloongliauw@gmail.com</email>
</author>
<published>2015-10-13T22:04:22+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=0bea5ced8bf4c9306f8f8e912313731a43d16f4c'/>
<id>0bea5ced8bf4c9306f8f8e912313731a43d16f4c</id>
<content type='text'>
Changed the authentication method for removing fork through API
Reflected changes to new auth method in API specs
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Changed the authentication method for removing fork through API
Reflected changes to new auth method in API specs
</pre>
</div>
</content>
</entry>
</feed>
