Skip to content

Commit 0b0ecb1

Browse files
authored
Merge pull request #1794 from Fuco1/bugfix/documentation-links
Change links in documentation to point to this repository
2 parents f65c02e + 20403a6 commit 0b0ecb1

File tree

13 files changed

+46
-49
lines changed

13 files changed

+46
-49
lines changed

doc/annotations.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ New annotation reader does not depend on any namespaces, for that reason you can
6363
single reader instance for whole project. The example bellow shows how to setup the
6464
mapping and listeners:
6565

66-
**Note:** using this repository you can test and check the [example demo configuration](https://github.com/l3pp4rd/DoctrineExtensions/blob/master/example/em.php)
66+
**Note:** using this repository you can test and check the [example demo configuration](https://github.com/Atlantic18/DoctrineExtensions/blob/master/example/em.php)
6767

6868
``` php
6969
<?php
@@ -564,4 +564,3 @@ private $content;
564564
*/
565565
private $article;
566566
```
567-

doc/blameable.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ Content:
4646

4747
## Setup and autoloading
4848

49-
Read the [documentation](http://github.com/l3pp4rd/DoctrineExtensions/blob/master/doc/annotations.md#em-setup)
50-
or check the [example code](http://github.com/l3pp4rd/DoctrineExtensions/tree/master/example)
49+
Read the [documentation](http://github.com/Atlantic18/DoctrineExtensions/blob/master/doc/annotations.md#em-setup)
50+
or check the [example code](http://github.com/Atlantic18/DoctrineExtensions/tree/master/example)
5151
on how to setup and use the extensions in most optimized way.
5252

5353
<a name="entity-mapping"></a>
@@ -642,4 +642,3 @@ class UsingTrait
642642

643643
The Traits are very simplistic - if you use different field names it is recommended to simply create your
644644
own Traits specific to your project. The ones provided by this bundle can be used as example.
645-

doc/ip_traceable.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ Content:
4141

4242
## Setup and autoloading
4343

44-
Read the [documentation](http://github.com/l3pp4rd/DoctrineExtensions/blob/master/doc/annotations.md#em-setup)
45-
or check the [example code](http://github.com/l3pp4rd/DoctrineExtensions/tree/master/example)
44+
Read the [documentation](http://github.com/Atlantic18/DoctrineExtensions/blob/master/doc/annotations.md#em-setup)
45+
or check the [example code](http://github.com/Atlantic18/DoctrineExtensions/tree/master/example)
4646
on how to setup and use the extensions in most optimized way.
4747

4848
<a name="entity-mapping"></a>
@@ -603,12 +603,12 @@ class IpTraceSubscriber implements EventSubscriberInterface
603603
return;
604604
}
605605

606-
// If you use a cache like Varnish, you may want to set a proxy to Request::getClientIp() method
606+
// If you use a cache like Varnish, you may want to set a proxy to Request::getClientIp() method
607607
// $this->request->setTrustedProxies(array('127.0.0.1'));
608608

609609
// $ip = $_SERVER['REMOTE_ADDR'];
610610
$ip = $this->request->getClientIp();
611-
611+
612612
if (null !== $ip) {
613613
$this->ipTraceableListener->setIpValue($ip);
614614
}
@@ -638,7 +638,7 @@ class IpTraceSubscriber implements EventSubscriberInterface
638638
</parameters>
639639

640640
<services>
641-
641+
642642
...
643643

644644
<service id="gedmo_doctrine_extensions.listener.ip_traceable" class="Gedmo\IpTraceable\IpTraceableListener" public="false">

doc/loggable.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ Content:
3737

3838
## Setup and autoloading
3939

40-
Read the [documentation](http://github.com/l3pp4rd/DoctrineExtensions/blob/master/doc/annotations.md#em-setup)
41-
or check the [example code](http://github.com/l3pp4rd/DoctrineExtensions/tree/master/example)
40+
Read the [documentation](http://github.com/Atlantic18/DoctrineExtensions/blob/master/doc/annotations.md#em-setup)
41+
or check the [example code](http://github.com/Atlantic18/DoctrineExtensions/tree/master/example)
4242
on how to setup and use the extensions in most optimized way.
4343

4444
### Loggable annotations:

doc/mapping.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Features:
1111
- Mapping drivers for annotation and yaml
1212
- Conventional extension points for metadata extraction and object manager abstraction
1313

14-
- Public [Mapping repository](http://github.com/l3pp4rd/DoctrineExtensions "Mapping extension on Github") is available on github
14+
- Public [Mapping repository](http://github.com/Atlantic18/DoctrineExtensions "Mapping extension on Github") is available on github
1515
- Last update date: **2012-01-02**
1616

1717
This article will cover the basic installation and usage of **Mapping** extension
@@ -31,8 +31,8 @@ Content:
3131

3232
## Setup and autoloading
3333

34-
Read the [documentation](http://github.com/l3pp4rd/DoctrineExtensions/blob/master/doc/annotations.md#em-setup)
35-
or check the [example code](http://github.com/l3pp4rd/DoctrineExtensions/tree/master/example)
34+
Read the [documentation](http://github.com/Atlantic18/DoctrineExtensions/blob/master/doc/annotations.md#em-setup)
35+
or check the [example code](http://github.com/Atlantic18/DoctrineExtensions/tree/master/example)
3636
on how to setup and use the extensions in most optimized way.
3737

3838
<a name="create-extension"></a>

doc/reference_integrity.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ Content:
3636

3737
## Setup and autoloading
3838

39-
Read the [documentation](http://github.com/l3pp4rd/DoctrineExtensions/blob/master/doc/annotations.md#em-setup)
40-
or check the [example code](http://github.com/l3pp4rd/DoctrineExtensions/tree/master/example)
39+
Read the [documentation](http://github.com/Atlantic18/DoctrineExtensions/blob/master/doc/annotations.md#em-setup)
40+
or check the [example code](http://github.com/Atlantic18/DoctrineExtensions/tree/master/example)
4141
on how to setup and use the extensions in most optimized way.
4242

4343
<a name="document-mapping"></a>

doc/sluggable.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,10 @@ no more exceptions during concurrent flushes.
5555

5656
**Note:**
5757

58-
- There is a reported [issue](https://github.com/l3pp4rd/DoctrineExtensions/issues/254) that sluggable transliterator
58+
- There is a reported [issue](https://github.com/Atlantic18/DoctrineExtensions/issues/254) that sluggable transliterator
5959
does not work on OSX 10.6 its ok starting again from 10.7 version. To overcome the problem
6060
you can use your [custom transliterator](#transliterator)
61-
- Public [Sluggable repository](http://github.com/l3pp4rd/DoctrineExtensions "Sluggable extension on Github") is available on github
61+
- Public [Sluggable repository](http://github.com/Atlantic18/DoctrineExtensions "Sluggable extension on Github") is available on github
6262
- Last update date: **2012-02-26**
6363
- For usage together with **SoftDeleteable** in order to take into account softdeleted entities while generating unique
6464
slug, you must explicitly call **addManagedFilter** with a name of softdeleteable filter, so it can be disabled during
@@ -88,8 +88,8 @@ Content:
8888

8989
## Setup and autoloading
9090

91-
Read the [documentation](http://github.com/l3pp4rd/DoctrineExtensions/blob/master/doc/annotations.md#em-setup)
92-
or check the [example code](http://github.com/l3pp4rd/DoctrineExtensions/tree/master/example)
91+
Read the [documentation](http://github.com/Atlantic18/DoctrineExtensions/blob/master/doc/annotations.md#em-setup)
92+
or check the [example code](http://github.com/Atlantic18/DoctrineExtensions/tree/master/example)
9393
on how to setup and use the extensions in most optimized way.
9494

9595
<a name="entity-mapping"></a>
@@ -779,7 +779,7 @@ class Company
779779
```
780780

781781
For other mapping drivers see
782-
[xml](https://github.com/l3pp4rd/DoctrineExtensions/blob/master/tests/Gedmo/Mapping/Driver/Xml/Mapping.Fixture.Xml.Sluggable.dcm.xml) or [yaml](https://github.com/l3pp4rd/DoctrineExtensions/blob/master/tests/Gedmo/Mapping/Driver/Yaml/Mapping.Fixture.Yaml.Category.dcm.yml) examples from tests
782+
[xml](https://github.com/Atlantic18/DoctrineExtensions/blob/master/tests/Gedmo/Mapping/Driver/Xml/Mapping.Fixture.Xml.Sluggable.dcm.xml) or [yaml](https://github.com/Atlantic18/DoctrineExtensions/blob/master/tests/Gedmo/Mapping/Driver/Yaml/Mapping.Fixture.Yaml.Category.dcm.yml) examples from tests
783783

784784
And the example usage:
785785

doc/softdeleteable.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ Content:
2525

2626
## Setup and autoloading
2727

28-
Read the [documentation](http://github.com/l3pp4rd/DoctrineExtensions/blob/master/doc/annotations.md#em-setup)
29-
or check the [example code](http://github.com/l3pp4rd/DoctrineExtensions/tree/master/example)
28+
Read the [documentation](http://github.com/Atlantic18/DoctrineExtensions/blob/master/doc/annotations.md#em-setup)
29+
or check the [example code](http://github.com/Atlantic18/DoctrineExtensions/tree/master/example)
3030
on how to setup and use the extensions in most optimized way.
3131

3232
With SoftDeleteable there's one more step you need to do. You need to add the filter to your configuration:

doc/sortable.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Features:
1212

1313
**Note:**
1414

15-
- Public [Sortable repository](http://github.com/l3pp4rd/DoctrineExtensions "Sortable extension on Github") is available on github
15+
- Public [Sortable repository](http://github.com/Atlantic18/DoctrineExtensions "Sortable extension on Github") is available on github
1616
- Last update date: **2012-01-02**
1717

1818
**Portability:**
@@ -30,15 +30,15 @@ Content:
3030
- [Yaml](#yaml-mapping) mapping example
3131
- [Xml](#xml-mapping) mapping example
3232
- Basic usage [examples](#basic-examples)
33-
- Custom comparison [method](#custom-comparisons)
33+
- Custom comparison [method](#custom-comparisons)
3434

3535

3636
<a name="including-extension"></a>
3737

3838
## Setup and autoloading
3939

40-
Read the [documentation](http://github.com/l3pp4rd/DoctrineExtensions/blob/master/doc/annotations.md#em-setup)
41-
or check the [example code](http://github.com/l3pp4rd/DoctrineExtensions/tree/master/example)
40+
Read the [documentation](http://github.com/Atlantic18/DoctrineExtensions/blob/master/doc/annotations.md#em-setup)
41+
or check the [example code](http://github.com/Atlantic18/DoctrineExtensions/tree/master/example)
4242
on how to setup and use the extensions in most optimized way.
4343

4444
<a name="entity-mapping"></a>
@@ -319,9 +319,9 @@ class Item implements Comparable
319319
public function compareTo($other)
320320
{
321321
// return 1 if this object is considered greater than the compare value
322-
322+
323323
// return -1 if this object is considered less than the compare value
324-
324+
325325
// return 0 if this object is considered equal to the compare value
326326
}
327327
}

doc/symfony2.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Install Gedmo Doctrine2 extensions in Symfony2
22

3-
Configure full featured [Doctrine2 extensions](http://github.com/l3pp4rd/DoctrineExtensions) for your symfony2 project.
3+
Configure full featured [Doctrine2 extensions](http://github.com/Atlantic18/DoctrineExtensions) for your symfony2 project.
44
This post will show you - how to create a simple configuration file to manage extensions with
55
ability to use all features it provides.
66
Interested? then bear with me! and don't be afraid, we're not diving into security component :)
@@ -218,14 +218,14 @@ services:
218218
- { name: doctrine.event_subscriber, connection: default }
219219
calls:
220220
- [ setAnnotationReader, [ "@annotation_reader" ] ]
221-
221+
222222
gedmo.listener.blameable:
223223
class: Gedmo\Blameable\BlameableListener
224224
tags:
225225
- { name: doctrine.event_subscriber, connection: default }
226226
calls:
227-
- [ setAnnotationReader, [ "@annotation_reader" ] ]
228-
227+
- [ setAnnotationReader, [ "@annotation_reader" ] ]
228+
229229
```
230230

231231
So what does it include in general? Well, it creates services for all extension listeners.
@@ -266,7 +266,7 @@ class DoctrineExtensionListener implements ContainerAwareInterface
266266
$translatable = $this->container->get('gedmo.listener.translatable');
267267
$translatable->setTranslatableLocale($event->getRequest()->getLocale());
268268
}
269-
269+
270270
public function onConsoleCommand()
271271
{
272272
$this->container->get('gedmo.listener.translatable')
@@ -281,7 +281,7 @@ class DoctrineExtensionListener implements ContainerAwareInterface
281281
# for loggable behavior
282282
$loggable = $this->container->get('gedmo.listener.loggable');
283283
$loggable->setUsername($securityContext->getToken()->getUsername());
284-
284+
285285
# for blameable behavior
286286
$blameable = $this->container->get('gedmo.listener.blameable');
287287
$blameable->setUserValue($securityContext->getToken()->getUser());
@@ -294,7 +294,7 @@ class DoctrineExtensionListener implements ContainerAwareInterface
294294
# for loggable behavior
295295
$loggable = $this->container->get('gedmo.listener.loggable');
296296
$loggable->setUsername($tokenStorage->getUser());
297-
297+
298298
# for blameable behavior
299299
$blameable = $this->container->get('gedmo.listener.blameable');
300300
$blameable->setUserValue($tokenStorage->getUser());
@@ -485,8 +485,8 @@ doctrine_mongodb:
485485
This also shows, how to make mappings based on single manager. All what differs is that **Document**
486486
instead of **Entity** is used. I haven't tested it with mongo though.
487487
488-
**Note:** [extension repository](http://github.com/l3pp4rd/DoctrineExtensions) contains all
489-
[documentation](http://github.com/l3pp4rd/DoctrineExtensions/tree/master/doc) you may need
488+
**Note:** [extension repository](http://github.com/Atlantic18/DoctrineExtensions) contains all
489+
[documentation](http://github.com/Atlantic18/DoctrineExtensions/tree/master/doc) you may need
490490
to understand how you can use it in your projects.
491491
492492
<a name="alternative"></a>

0 commit comments

Comments
 (0)