Skip to content
This repository has been archived by the owner on Sep 12, 2021. It is now read-only.

Commit

Permalink
Fix more hyperlinks to source files
Browse files Browse the repository at this point in the history
  • Loading branch information
guersam committed Jan 25, 2015
1 parent 432103a commit 00dbc4f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion docs/how-it-works/authenticator.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ a user after a successful authentication. The Authenticator itself is a small
class which stores only some data like its validity and the linked login information
for an identity.

.. _Authenticator: https://github.com/mohiva/play-silhouette/blob/master/app/com/mohiva/play/silhouette/api/Authenticator.scala#L25
.. _Authenticator: https://github.com/mohiva/play-silhouette/blob/master/silhouette/app/com/mohiva/play/silhouette/api/Authenticator.scala#L25

.. _authenticator_service_impl:

Expand Down
4 changes: 2 additions & 2 deletions docs/how-it-works/caching.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Play has its own cache plugin architecture. So the easiest approach is to use
another cache plugin for Play. You can then use the `PlayCacheLayer`_
implementation and plug a new cache into your application.

.. _PlayCacheLayer: https://github.com/mohiva/play-silhouette/blob/master/app/com/mohiva/play/silhouette/impl/util/PlayCacheLayer.scala
.. _PlayCacheLayer: https://github.com/mohiva/play-silhouette/blob/master/silhouette/app/com/mohiva/play/silhouette/impl/util/PlayCacheLayer.scala


Implement your own cache layer
Expand All @@ -30,7 +30,7 @@ Implement your own cache layer
Silhouette provides a `CacheLayer`_ trait which can be used to create a
custom cache implementation.

.. _CacheLayer: https://github.com/mohiva/play-silhouette/blob/master/app/com/mohiva/play/silhouette/api/util/CacheLayer.scala
.. _CacheLayer: https://github.com/mohiva/play-silhouette/blob/master/silhouette/app/com/mohiva/play/silhouette/api/util/CacheLayer.scala


Clustered environment
Expand Down
2 changes: 1 addition & 1 deletion docs/how-it-works/environment.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ and should be provided through dependency injection. Silhouette plays well with
and runtime dependency injection. You can find examples of both approaches
on the :ref:`example page <examples>`.

.. _Silhouette controller: https://github.com/mohiva/play-silhouette/blob/master/app/com/mohiva/play/silhouette/api/Silhouette.scala
.. _Silhouette controller: https://github.com/mohiva/play-silhouette/blob/master/silhouette/app/com/mohiva/play/silhouette/api/Silhouette.scala
8 changes: 4 additions & 4 deletions docs/how-it-works/providers.rst
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ The social profile contains the profile data returned from the social providers.
Silhouette provides a default social profile called `CommonSocialProfile`_,
which contains the most common profile data providers return.

.. _CommonSocialProfile: https://github.com/mohiva/play-silhouette/blob/master/app/com/mohiva/play/silhouette/impl/providers/SocialProvider.scala#L168
.. _CommonSocialProfile: https://github.com/mohiva/play-silhouette/blob/master/silhouette/app/com/mohiva/play/silhouette/impl/providers/SocialProvider.scala#L168

Social profile builders and parsers
-----------------------------------
Expand Down Expand Up @@ -307,7 +307,7 @@ Define custom request extractors
It is possible to define custom request extractors by providing an implicit `RequestExtractor`_
implementation.

.. _RequestExtractor: https://github.com/mohiva/play-silhouette/blob/master/app/com/mohiva/play/silhouette/api/util/RequestExtractor.scala#L12
.. _RequestExtractor: https://github.com/mohiva/play-silhouette/blob/master/silhouette/app/com/mohiva/play/silhouette/api/util/RequestExtractor.scala#L12


Authentication information
Expand All @@ -322,5 +322,5 @@ As with other Silhouette structures that vary in their implementation,
`AuthInfo`_ is managed by a `AuthInfoService`_ that saves and retrieves
the information as needed.

.. _AuthInfoService: https://github.com/mohiva/play-silhouette/blob/master/app/com/mohiva/play/silhouette/api/services/AuthInfoService.scala#L31
.. _AuthInfo: https://github.com/mohiva/play-silhouette/blob/master/app/com/mohiva/play/silhouette/api/services/AuthInfoService.scala#L61
.. _AuthInfoService: https://github.com/mohiva/play-silhouette/blob/master/silhouette/app/com/mohiva/play/silhouette/api/services/AuthInfoService.scala#L31
.. _AuthInfo: https://github.com/mohiva/play-silhouette/blob/master/silhouette/app/com/mohiva/play/silhouette/api/services/AuthInfoService.scala#L61

0 comments on commit 00dbc4f

Please sign in to comment.