source: sipei/modules/pathauto/README.txt @ fc0b1f8

drupal-6.x
Last change on this file since fc0b1f8 was ffa4103, checked in by Luis Peña <lpena@…>, 12 años ago

Cambiando el nombre de modulos a modules

  • Propiedad mode establecida a 100755
File size: 4.0 KB
Línea 
1Please read this file and also the INSTALL.txt. 
2They contain answers to many common questions.
3If you are developing for this module, the API.txt may be interesting.
4If you are upgrading, check the CHANGELOG.txt for major changes.
5
6**Description:
7The Pathauto module provides support functions for other modules to
8automatically generate aliases based on appropriate criteria, with a
9central settings path for site administrators.
10
11Implementations are provided for core content types: nodes, taxonomy
12terms, and users (including blogs and tracker pages).
13
14Pathauto also provides a way to delete large numbers of aliases.  This feature
15is available at  Administer > Site building > URL aliases > Delete aliases
16
17**Benefits:
18Besides making the page address more reflective of its content than
19"node/138", it's important to know that modern search engines give
20heavy weight to search terms which appear in a page's URL. By
21automatically using keywords based directly on the page content in the URL,
22relevant search engine hits for your page can be significantly
23enhanced.
24
25**Installation AND Upgrades:
26See the INSTALL.txt file.
27
28**Notices:
29Pathauto just adds URL aliases to nodes, users, and taxonomy terms. Because
30it's an alias, the standard Drupal URL (for example node/123 or
31taxonomy/term/1) will still function as normal.  If you have external links
32to your site pointing to standard Drupal URLs, or hardcoded links in a module,
33template, node or menu which point to standard Drupal URLs it will bypass the
34alias set by Pathauto.
35
36There are reasons you might not want two URLs for the same content on your
37site. If this applies to you, please note that you will need to update any
38hard coded links in your nodes or blocks.
39
40If you use the "system path" (i.e. node/10) for menu items and settings like
41that, Drupal will replace it with the url_alias.
42
43For external links, you might want to consider the Path Redirect or
44Global Redirect modules, which allow you to set forwarding either per item or
45across the site to your aliased URLs.
46
47URLs (not) Getting Replaced With Aliases:
48Please bear in mind that only URLs passed through Drupal's l() or url()
49functions will be replaced with their aliases during page output. If a module
50or your template contains hardcoded links, such as 'href="node/$node->nid"'
51those won't get replaced with their corresponding aliases. Use the
52Drupal API instead:
53
54* 'href="'. url("node/$node->nid") .'"' or
55* l("Your link title", "node/$node->nid")
56
57See http://api.drupal.org/api/HEAD/function/url and
58http://api.drupal.org/api/HEAD/function/l for more information.
59
60** Disabling Pathauto for a specific node type (or taxonomy)
61When the pattern for a node type is left blank, the default pattern will be
62used. But if the default pattern is also blank, Pathauto will be disabled
63for that node type.
64
65** Bulk Updates Must be Run Multiple Times:
66As of 5.x-2.x Pathauto now performs bulk updates in a manner which is more
67likely to succeed on large sites.  The drawback is that it needs to be run
68multiple times.  If you want to reduce the number of times that you need to
69run Pathauto you can increase the "Maximum number of objects to alias in a
70bulk update:" setting under General Settings.
71
72**WYSIWYG Conflicts - FCKEditor, TinyMCE, etc.
73If you use a WYSIWYG editor, please disable it for the Pathauto admin page. 
74Failure to do so may cause errors about "preg_replace" problems due to the <p>
75tag being added to the "strings to replace".  See http://drupal.org/node/175772
76
77**Credits:
78The original module combined the functionality of Mike Ryan's autopath with
79Tommy Sundstrom's path_automatic.
80
81Significant enhancements were contributed by jdmquin @ www.bcdems.net.
82
83Matt England added the tracker support.
84
85Other suggestions and patches contributed by the Drupal community.
86
87Current maintainers:
88  Greg Knaddison - http://growingventuresolutions.com
89  Mike Ryan - http://mikeryan.name
90  Frederik 'Freso' S. Olesen - http://freso.dk
91
92**Changes:
93See the CHANGELOG.txt file.
94
95$Id: README.txt,v 1.16 2008/06/21 18:20:38 greggles Exp $
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.