Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Зуев Егор
/
wiki.dev
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Authored by
Dan Brown
2016-12-31 14:32:52 +0000
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
Committed by
GitHub
2016-12-31 14:32:52 +0000
Commit
a24f3d7d4759df6b509533daaa1c9686a074e9fe
a24f3d7d
2 parents
c9700e38
286f9b0c
Merge branch 'master' into translations
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
37 additions
and
32 deletions
app/Http/Controllers/Auth/RegisterController.php
resources/assets/sass/_blocks.scss
resources/assets/sass/_lists.scss
resources/assets/sass/_pages.scss
resources/views/pages/page-display.blade.php
resources/views/pages/show.blade.php
resources/views/pages/sidebar-tree-list.blade.php
routes/web.php
app/Http/Controllers/Auth/RegisterController.php
View file @
a24f3d7
...
...
@@ -52,7 +52,7 @@ class RegisterController extends Controller
*/
public
function
__construct
(
SocialAuthService
$socialAuthService
,
EmailConfirmationService
$emailConfirmationService
,
UserRepo
$userRepo
)
{
$this
->
middleware
(
'guest'
);
$this
->
middleware
(
'guest'
)
->
except
([
'socialCallback'
,
'detachSocialAccount'
])
;
$this
->
socialAuthService
=
$socialAuthService
;
$this
->
emailConfirmationService
=
$emailConfirmationService
;
$this
->
userRepo
=
$userRepo
;
...
...
@@ -298,5 +298,4 @@ class RegisterController extends Controller
return
$this
->
registerUser
(
$userData
,
$socialAccount
);
}
}
\ No newline at end of file
...
...
resources/assets/sass/_blocks.scss
View file @
a24f3d7
...
...
@@ -135,7 +135,10 @@
border-left
:
3px
solid
#BBB
;
background-color
:
#EEE
;
padding
:
$-s
;
display
:
flex
;
display
:
block
;
>
*
{
display
:
inline-block
;
}
&
:before
{
font-family
:
'Material-Design-Iconic-Font'
;
padding-right
:
$-s
;
...
...
resources/assets/sass/_lists.scss
View file @
a24f3d7
...
...
@@ -110,6 +110,8 @@
border-left
:
0px
solid
#FFF
;
background-color
:
#FFF
;
&
.fixed
{
background-color
:
#FFF
;
z-index
:
5
;
position
:
fixed
;
top
:
0
;
padding-left
:
$-l
;
...
...
resources/assets/sass/_pages.scss
View file @
a24f3d7
...
...
@@ -248,29 +248,32 @@
}
.tag-display
{
margin
:
$-xl
$-m
;
border
:
1px
solid
#DDD
;
min-width
:
180px
;
max-width
:
320px
;
opacity
:
0
.7
;
z-index
:
5
;
width
:
100%
;
//opacity: 0.7;
position
:
relative
;
table
{
width
:
100%
;
margin
:
0
;
padding
:
0
;
}
tr
:first-child
td
{
padding-top
:
0
;
}
.heading
th
{
padding
:
$-xs
$-s
;
color
:
#333
;
color
:
rgba
(
100
,
100
,
100
,
0
.7
);
border
:
0
;
font-weight
:
400
;
}
td
{
border
:
0
;
border-bottom
:
1px
solid
#
DDD
;
border-bottom
:
1px
solid
#
EEE
;
padding
:
$-xs
$-s
;
color
:
#444
;
}
tr
td
:first-child
{
padding-left
:
0
;
}
.tag-value
{
color
:
#888
;
}
...
...
resources/views/pages/page-display.blade.php
View file @
a24f3d7
...
...
@@ -2,26 +2,6 @@
<h1
id=
"bkmrk-page-title"
class=
"float left"
>
{{$page->name}}
</h1>
@if(count($page->tags) > 0)
<div
class=
"tag-display float right"
>
<table>
<thead>
<tr
class=
"text-left heading primary-background-light"
>
<th
colspan=
"2"
>
{{ trans('entities.page_tags') }}
</th>
</tr>
</thead>
<tbody>
@foreach($page->tags as $tag)
<tr
class=
"tag"
>
<td
@
if
(!$
tag-
>
value) colspan="2" @endif>
<a
href=
"{{ baseUrl('/search/all?term=%5B' . urlencode($tag->name) .'%5D') }}"
>
{{ $tag->name }}
</a></td>
@if($tag->value)
<td
class=
"tag-value"
><a
href=
"{{ baseUrl('/search/all?term=%5B' . urlencode($tag->name) .'%3D' . urlencode($tag->value) . '%5D') }}"
>
{{$tag->value}}
</a></td>
@endif
</tr>
@endforeach
</tbody>
</table>
</div>
@endif
<div
style=
"clear:left;"
></div>
@if (isset($diff)
&&
$diff)
...
...
resources/views/pages/show.blade.php
View file @
a24f3d7
...
...
@@ -102,6 +102,8 @@
</div>
@endif
@include('pages/sidebar-tree-list', ['book' => $book, 'sidebarTree' => $sidebarTree, 'pageNav' => $pageNav])
</div>
...
...
resources/views/pages/sidebar-tree-list.blade.php
View file @
a24f3d7
<div
class=
"book-tree"
ng-non-bindable
>
@if(isset($page)
&&
$page->tags->count() > 0)
<div
class=
"tag-display"
>
<h6
class=
"text-muted"
>
Page Tags
</h6>
<table>
<tbody>
@foreach($page->tags as $tag)
<tr
class=
"tag"
>
<td
@
if
(!$
tag-
>
value) colspan="2" @endif>
<a
href=
"{{ baseUrl('/search/all?term=%5B' . urlencode($tag->name) .'%5D') }}"
>
{{ $tag->name }}
</a></td>
@if($tag->value)
<td
class=
"tag-value"
><a
href=
"{{ baseUrl('/search/all?term=%5B' . urlencode($tag->name) .'%3D' . urlencode($tag->value) . '%5D') }}"
>
{{$tag->value}}
</a></td>
@endif
</tr>
@endforeach
</tbody>
</table>
</div>
@endif
@if (isset($page)
&&
$page->attachments->count() > 0)
<h6
class=
"text-muted"
>
{{ trans('entities.pages_attachments') }}
</h6>
@foreach($page->attachments as $attachment)
...
...
routes/web.php
View file @
a24f3d7
...
...
@@ -154,7 +154,7 @@ Route::group(['middleware' => 'auth'], function () {
});
// Social auth routes
Route
::
get
(
'/login/service/{socialDriver}'
,
'Auth\
Register
Controller@getSocialLogin'
);
Route
::
get
(
'/login/service/{socialDriver}'
,
'Auth\
Login
Controller@getSocialLogin'
);
Route
::
get
(
'/login/service/{socialDriver}/callback'
,
'Auth\RegisterController@socialCallback'
);
Route
::
get
(
'/login/service/{socialDriver}/detach'
,
'Auth\RegisterController@detachSocialAccount'
);
Route
::
get
(
'/register/service/{socialDriver}'
,
'Auth\RegisterController@socialRegister'
);
...
...
Please
register
or
sign in
to post a comment