| 1 |
/* $Id: README.txt,v 1.4 2005/01/09 04:12:08 grantbow Exp $ */ |
/* $Id: README.txt,v 1.5 2005/01/11 01:29:36 grantbow Exp $ */ |
| 2 |
|
|
| 3 |
NOTE: blogroll.pgsql needs verification. |
NOTE: blogroll.pgsql is untested. |
| 4 |
|
|
| 5 |
This module provides a standard blogroll feature. Each user's blog has it's |
This module provides a standard blogroll feature. Each user's blog has it's |
| 6 |
own blogroll. The owner of the blog can edit his own blogroll. All users that |
own blogroll. The owner of the blog can edit his own blogroll. All users that |
| 7 |
can view the blog content can see the blogroll. |
can view the blog content can view the blogroll. |
| 8 |
|
|
| 9 |
It uses a simple table with uid, url, name and weight columns to give each user |
It uses a simple table with uid, url, name and weight columns to give each user |
| 10 |
control of their own blogroll with a simple clickable interface. A block is |
control of their own blogroll with a simple clickable interface. A block is |
| 11 |
provided and an editing page for the blog owner. The block must limit the path |
provided with an editing page for the blog owner. The block must have a |
| 12 |
as described in INSTALL.txt. |
limited path as described in INSTALL.txt. |
| 13 |
|
|
| 14 |
The primary Drupal developers did not create the current blog module with the |
My understanding is that the primary Drupal developers did not create the |
| 15 |
idea of using it for personal blogging. Their focus was on community blogging. |
current blog module with the idea of using it for personal blogging. Their |
| 16 |
While it may not be ideal, the functionality currently provided seems |
focus was on community blogging. While it may not be ideal, the functionality |
| 17 |
reasonably well executed for "personal blogging". A discussion list was |
currently provided seems reasonably well executed for "personal blogging". I |
| 18 |
recently created for discussion of this module and related personal blogging |
created a discussion list for discussion of this module and related personal |
| 19 |
features. |
blogging features. |
| 20 |
|
|
| 21 |
http://softwaremanagers.org/drupal-personal-blogs |
http://softwaremanagers.org/drupal-personal-blogs |
| 22 |
|
|
| 23 |
It's my first module submission. I would be happy to merge it with others |
It's my first module submission. I would be happy to merge it with others |
| 24 |
wanting to work on similar functionality. |
wanting to work on similar functionality. |
| 25 |
|
|
| 26 |
A project page listed on http://drupal.org/project/Modules was also created. |
I have created a project page listed on http://drupal.org/project/Modules. |
| 27 |
It has patches under discussion, bugs and release downloads. Right now there |
It has patches under discussion, bugs and release downloads. |
|
is only the CVS version since this is a new module. |
|
| 28 |
|
|
| 29 |
http://drupal.org/node/15344 |
http://drupal.org/node/15344 |
| 30 |
|
|
| 31 |
Aldon Hynes (ahynes1 at optonline.net) added functionality so that the |
Aldon Hynes (ahynes1 at optonline.net) added functionality so that blogrolls |
| 32 |
blogrolls can be retrieved externally using the following bit of javascript. |
can be retrieved externally using the following bit of javascript. This will |
| 33 |
This will return the blog roll for user 1. If the /1 is omitted, it will |
return the blog roll for user 1. If the /1 is omitted, it will return the |
| 34 |
return the blog roll for all the users, sorted by the most popular users. |
community blogroll. This is a combination of all users' entries sorted by |
| 35 |
|
frequency. |
| 36 |
|
|
| 37 |
<script language="javascript" type="text/javascript" |
<script language="javascript" type="text/javascript" |
| 38 |
src="http://example.com/index.php?q=blogroll/script/1"></script> |
src="http://example.com/index.php?q=blogroll/script/1"></script> |