| 1 | |
|---|
| 2 | |
|---|
| 3 | Nofollow |
|---|
| 4 | |
|---|
| 5 | Release 2.0 |
|---|
| 6 | |
|---|
| 7 | ______________________________________________________________ |
|---|
| 8 | |
|---|
| 9 | DESCRIPTION |
|---|
| 10 | |
|---|
| 11 | |
|---|
| 12 | This plugin automatically asserts a "nofollow" link |
|---|
| 13 | relationship for third-party hyperlinks in comments and |
|---|
| 14 | TrackBacks. |
|---|
| 15 | |
|---|
| 16 | The plugin alters the behavior of the following Movable Type |
|---|
| 17 | tags: |
|---|
| 18 | |
|---|
| 19 | |
|---|
| 20 | <$MTCommentAuthorLink$> |
|---|
| 21 | |
|---|
| 22 | <$MTCommentBody$> |
|---|
| 23 | |
|---|
| 24 | <MTPings> |
|---|
| 25 | |
|---|
| 26 | |
|---|
| 27 | In each case, Nofollow will intercept the content produced |
|---|
| 28 | by these tags and alter any hyperlinks it finds, adding |
|---|
| 29 | a "nofollow" relation ("rel") attribute to them. |
|---|
| 30 | |
|---|
| 31 | In the event that a hyperlink already has a "rel" attribute, |
|---|
| 32 | the "nofollow" relation is added to the front of the list. |
|---|
| 33 | |
|---|
| 34 | For example the following submitted in comment or TrackBack: |
|---|
| 35 | |
|---|
| 36 | <a href="http://sixapart.com"> |
|---|
| 37 | <a href="http://movabletype.org" rel="software"> |
|---|
| 38 | |
|---|
| 39 | would become: |
|---|
| 40 | |
|---|
| 41 | <a href="http://sixapart.com" rel="nofollow"> |
|---|
| 42 | <a href="http://movabletype.org" rel="nofollow software"> |
|---|
| 43 | |
|---|
| 44 | You can also use a new global tag attribute provided with |
|---|
| 45 | this plugin. The attribute is named "nofollowfy". You |
|---|
| 46 | can apply it to any Movable Type tag to achieve the same |
|---|
| 47 | effect described above. For example, if you had a plugin |
|---|
| 48 | which displayed your site referrer information, you could |
|---|
| 49 | use it as such: |
|---|
| 50 | |
|---|
| 51 | <MTReferers nofollowfy="1"> |
|---|
| 52 | |
|---|
| 53 | For more information about this plugin, please visit our |
|---|
| 54 | web site: |
|---|
| 55 | |
|---|
| 56 | http://www.sixapart.com/pronet/weblog/2005/01/introduction_to.html |
|---|
| 57 | |
|---|
| 58 | |
|---|
| 59 | ______________________________________________________________ |
|---|
| 60 | |
|---|
| 61 | REQUIREMENTS |
|---|
| 62 | |
|---|
| 63 | This plugin is supported on Movable Type 3.2 and later. |
|---|
| 64 | If you are using an older version of Movable Type, we |
|---|
| 65 | strongly suggest upgrading to the latest release. |
|---|
| 66 | |
|---|
| 67 | |
|---|
| 68 | ______________________________________________________________ |
|---|
| 69 | |
|---|
| 70 | INSTALLATION |
|---|
| 71 | |
|---|
| 72 | Nofollow is bundled with Movable Type 3.2 and includes the |
|---|
| 73 | following files: |
|---|
| 74 | |
|---|
| 75 | plugins/nofollow/LICENSE.txt |
|---|
| 76 | plugins/nofollow/README.txt |
|---|
| 77 | plugins/nofollow/nofollow.pl |
|---|
| 78 | php/plugins/init.nofollow.php |
|---|
| 79 | |
|---|
| 80 | Note that if you are upgrading from a previous release of this |
|---|
| 81 | plugin, you should remove the old version first to avoid having |
|---|
| 82 | two copies installed that may conflict with one another. |
|---|
| 83 | |
|---|
| 84 | ______________________________________________________________ |
|---|
| 85 | |
|---|
| 86 | UNINSTALLATION |
|---|
| 87 | |
|---|
| 88 | To remove this plugin, just remove the directories and files above. |
|---|
| 89 | Then, rebuild your site so that your links published normally. |
|---|
| 90 | |
|---|
| 91 | |
|---|
| 92 | ______________________________________________________________ |
|---|
| 93 | |
|---|
| 94 | LICENSE |
|---|
| 95 | |
|---|
| 96 | This plugin is released under the Artistic License. |
|---|
| 97 | The text of this license can be found in the LICENSE.txt |
|---|
| 98 | file included with this archive. It is also available here: |
|---|
| 99 | http://www.opensource.org/licenses/artistic-license.php |
|---|
| 100 | |
|---|
| 101 | |
|---|
| 102 | ______________________________________________________________ |
|---|
| 103 | |
|---|