You can subscribe to this list here.
| 2004 |
Jan
|
Feb
(1) |
Mar
|
Apr
(7) |
May
(2) |
Jun
|
Jul
(2) |
Aug
(5) |
Sep
(4) |
Oct
|
Nov
|
Dec
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2006 |
Jan
(4) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Jonathan T. <jo...@tg...> - 2006-01-25 06:26:15
|
On Tue, 2006-01-24 at 09:30 +0530, Shillong.com wrote: > Hi Jon, > =20 > Well, I need to put a hyperlink with each entry. > =20 > So, is there wa way to add the LINK TITLE and LINK with each field? > later, the link will be displayed below/with each entry.. that part I > will.. be able to do.. I know you just installed buzzword, so I hate to suggest this but... The current "unreleased" version of buzzword 0.9-svn is *much* easier to customize than the buzzword-0.8 series because much of the code is auto-generated. The 0.9 code lacks the planet and links modules, but the blog and especially the gallery are much improved.=20 Unfortunately, upgrading requires a new database (a clean install) because the database schemas aren't compatible. Hopefully, this won't be a huge issue for you because you just installed, but I apologize for the extra work. =20 Anyway, I would encourage you to use the latest code from subversion (revision 743) and make the following modifications: * In blog/schemas/blog_entries.sql, add two database fields for link title and link, for example: `title` varchar(128) NOT NULL default '', `body` longtext NOT NULL, `link_title` varchar(128) NOT NULL default '', `link` varchar(128) NOT NULL default '', PRIMARY KEY (`blog_entry_key`) Be sure to update your database and run utilities/generate_classes after you make this change. * In blog/new-entry.php and blog/edit-entry.php, add appropriate handlers:=20 $blog_entry->title =3D get_request_var('title'); $blog_entry->validate_title(); $blog_entry->body =3D get_request_var('body'); $blog_entry->validate_body(); $blog_entry->link_title =3D get_request_var('link_title'); $blog_entry->link =3D get_request_var('link'); * In smarty/templates/blog/edit-entry.tpl, add fields for link_title and link. * In all the view templates, add HTML to display the link_title and link. Good luck. - Jon --=20 Administrator, tgpsolutions http://www.tgpsolutions.com |
|
From: Shillong.com <ad...@sh...> - 2006-01-24 04:00:27
|
Hi Jon, Well, I need to put a hyperlink with each entry. So, is there wa way to add the LINK TITLE and LINK with each field? later, the link will be displayed below/with each entry.. that part I will.. be able to do.. Thank you. Babul On 1/24/06, Jonathan Tai <jo...@tg...> wrote: > > On Mon, 2006-01-23 at 17:30 +0530, Shillong.com wrote: > > Hi > > > > is there a way to add 2 more input fields while adding a new entry? > > > > 1. a date or title field > > 2. a URL field? > > Adding a new entry to what - the blog? You should be able to enter a > title already. > > - Jon > > -- > jo...@tg... > > Administrator, tgpsolutions > http://www.tgpsolutions.com > > > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.4.1 (GNU/Linux) > > iD8DBQBD1TyVP23otlzq/oIRAtQoAJ4xQzqCmdbZqnq1aA5E4JD6qf9cFACggbds > 1DBePmqKQr7kWS3cRUVfQ7s=3D > =3DFoDG > -----END PGP SIGNATURE----- > > > -- www.Shillong.com |
|
From: Jonathan T. <jo...@tg...> - 2006-01-23 20:29:11
|
On Mon, 2006-01-23 at 17:30 +0530, Shillong.com wrote: > Hi=20 > =20 > is there a way to add 2 more input fields while adding a new entry? > =20 > 1. a date or title field > 2. a URL field? Adding a new entry to what - the blog? You should be able to enter a title already. - Jon --=20 jo...@tg... Administrator, tgpsolutions http://www.tgpsolutions.com |
|
From: Shillong.com <ad...@sh...> - 2006-01-23 12:00:34
|
Hi is there a way to add 2 more input fields while adding a new entry? 1. a date or title field 2. a URL field? |
|
From: Jon T. <jo...@tg...> - 2004-09-14 20:18:22
|
On Tue, 2004-09-14 at 16:06 -0400, Chris Llorca wrote: > *Fatal error*: Call to a member function on a non-object in=20 > */home/hsphere/local/home/gangsta/gus.is-gangsta.com/includes/modules.inc= *=20 > on line *28 >=20 > I was running buzzword on http://is-gangsta.com and my buddy liked how=20 > it looked so he asked me to set him up with a subdomain so I did. I set=20 > up the mysql users, the database, and transferred over buzzword, created=20 > the config file.... I uploaded the config.inc into the includes=20 > directory and when I went to /admin/ or to / i get the above fatal=20 > error. I looked into modules.inc for some clues... but everything seems=20 > fine... I don't really understand what the problem is? >=20 Line 27 of modules.inc is a call to php's dir() command: $dir =3D dir('../'); and line 28 is the failed line:=20 while ($module =3D $dir->read()) { So my guess is that the web server doesn't have permissions to do a ls in the=20 /home/hsphere/local/home/gangsta/gus.is-gangsta.com directory. =20 - Jon --=20 jo...@tg... Administrator, tgpsolutions http://www.tgpsolutions.com |
|
From: Chris L. <ch...@te...> - 2004-09-14 20:08:48
|
*Fatal error*: Call to a member function on a non-object in */home/hsphere/local/home/gangsta/gus.is-gangsta.com/includes/modules.inc* on line *28 I was running buzzword on http://is-gangsta.com and my buddy liked how it looked so he asked me to set him up with a subdomain so I did. I set up the mysql users, the database, and transferred over buzzword, created the config file.... I uploaded the config.inc into the includes directory and when I went to /admin/ or to / i get the above fatal error. I looked into modules.inc for some clues... but everything seems fine... I don't really understand what the problem is? -C * |
|
From: Brad T. <br...@ge...> - 2004-09-13 15:52:45
|
Hi there, > Does Buzzword have the capability of generating an RSS feed of new postin= gs? Which module are you referring to? If you are talking about the blog module, point an RSS reader to http://yoursite.com/blog/rss.php. Other modules do not have RSS, but if you would like it to see it implemented and you have some PHP knowledge, feel free to check out blog/rss.php and model the feeds after that. If the patch looks good, we may commit to Subversion. > I tried looking at the documentation -- however the links to both the=20 > HTML and Docbook versions are broken. I looked at the code as well,=20 > but all I could find were functions to read, not generate, RSS. Sorry about the documentation. We started it a while ago and because of school and work this summer, neither Jon nor I have had the time to fix the docs. Hope this helps. -Brad --=20 Brad Taylor Genome Software LLC http://www.getcoded.net |
|
From: Steve P. <pal...@hi...> - 2004-09-13 12:03:02
|
Does Buzzword have the capability of generating an RSS feed of new postings? I tried looking at the documentation -- however the links to both the HTML and Docbook versions are broken. I looked at the code as well, but all I could find were functions to read, not generate, RSS. |
|
From: Thomas B. <bl...@in...> - 2004-08-27 10:56:02
|
* Jonathan Tai <jo...@tg...> [2004-08-26 21:00]: > Instead of using the workaround, I've attached the "real" fix from > subversion to this e-mail. Just drop it in as a replacement for your > current database.inc. Thanks for your quick response! I just copied your attached file to the appropriate place and now everything works perfectly! Now I'm off to configure Buzzword... Thomas -- GPG-Fingerprint: BC4F BB16 30D6 F253 E3EA D09E C562 2BAE B2F4 ABE7 "Work like you don't need the money, love like you've never been hurt and dance like you do when nobody's watching." |
|
From: Jonathan T. <jo...@tg...> - 2004-08-26 18:54:33
|
On Thu, 2004-08-26 at 19:15 +0200, Thomas Bleher wrote:
> Hello!
>=20
> I just installed buzzword 0.8.13 on a Debian woody system.
> After creating a config file, buzzword errors out with the following
> message:
> Fatal error: Call to undefined function: mysql_real_escape_string() in
> /home/b/bleher/public_html/mirjam/includes/database.inc on line 49
>=20
> According to the php-doc, mysql_real_escape_string() is only supported
> from 4.3.0 upwards.
> Unfortunately I can't update php on this machine.
> Is there a possibility to work around this problem or does this mean I
> have to wait for a php update? (I have no php coding experience, so I
> can't easily create a replacement function)
That's kind of funny, actually. We just replaced mysql_escape_string()
with mysql_real_escape_string() because newer versions of php (like
4.3.8) throw lots of warnings that mysql_escape_string() is
deprecated. =20
You can work around this issue very easily. Open up the
"includes/database.inc" file in your favorite text editor. Go down to
about line 49:
-- original "includes/database.inc" snippet --
/**
* make a string safe for use in a mysql query
*/
function mysql_quote_string($string) {
return "'".mysql_real_escape_string($string)."'";
}
-- snip --
Replace "mysql_real_escape_string" with "mysql_escape_string". =20
-- original "includes/database.inc" snippet --
/**
* make a string safe for use in a mysql query
*/
function mysql_quote_string($string) {
return "'".mysql_escape_string($string)."'";
}
-- snip --
Let us know how it goes! I think I'll go add a compatibility function
now... look for it in latest subversion.
- Jon
--=20
jo...@tg...
Administrator, tgpsolutions
http://www.tgpsolutions.com
|
|
From: Thomas B. <bl...@in...> - 2004-08-26 17:15:44
|
Hello! I just installed buzzword 0.8.13 on a Debian woody system. After creating a config file, buzzword errors out with the following message: Fatal error: Call to undefined function: mysql_real_escape_string() in /home/b/bleher/public_html/mirjam/includes/database.inc on line 49 According to the php-doc, mysql_real_escape_string() is only supported from 4.3.0 upwards. Unfortunately I can't update php on this machine. Is there a possibility to work around this problem or does this mean I have to wait for a php update? (I have no php coding experience, so I can't easily create a replacement function) Any help appreciated, Thomas PS: CC would be nice as I have not yet subscribed. |
|
From: Brad T. <br...@ge...> - 2004-08-24 17:58:07
|
Hey Wayne, > Just installed buzzword. :P Seems to work okay, I got most of my bugs=20 > worked out, site's at wy.dragonfeathers.org. Awesome! I'm glad you're using buzzword! > A few requests from Dazey, though (I'm too lazy to self-hack and contrib=20 > this right now, but it might be useful for others) >=20 > a) Pictures having the option to have the same height instead of the=20 > same width (or maybe a maximum width + a constant height) Hmm, we'll have to look into this. Maybe we can make it a pref. > b) cacheing RSS aggregator (better if it's LJ/xanga compatible) Actually, we include a module called "Planet" which is akin to a LJ Friends page. By default, it is not enabled in the navigation, so all you have to do is edit planet/config.inc and uncomment the lines under "this module is disabled by default". It works well with pretty much any rss feed that you can throw at it, including feeds from xanga and LJ. Let us know if there are any other features you might like. -Brad --=20 Brad Taylor Genome Software LLC http://www.getcoded.net |
|
From: Wy <wy...@dr...> - 2004-08-24 10:03:37
|
Just installed buzzword. :P Seems to work okay, I got most of my bugs worked out, site's at wy.dragonfeathers.org. A few requests from Dazey, though (I'm too lazy to self-hack and contrib this right now, but it might be useful for others) a) Pictures having the option to have the same height instead of the same width (or maybe a maximum width + a constant height) b) cacheing RSS aggregator (better if it's LJ/xanga compatible) Anyways... just wondering what you guys think. Wy (oh, and hi, Jon!) |
|
From: Brad T. <br...@ge...> - 2004-07-27 19:21:29
|
Hi there, > Just installed latest SVN buzzword (410) and I do not get any admin > options for the gallery module. Just "Preferences" and "Logout". Is > there anything I should do to start a gallery up? To add photos into a buzzword gallery, all you have to do is FTP or SCP your desired images to /path/to/buzzword/gallery/galleries/MyAlbum on your website. Buzzword will take care of inserting them into the gallery the next time you go to your gallery page. At that point, you can edit the gallery name and add descriptions for your images.=20 Deleting a gallery is just as simple-- just remove the gallery from /path/to/buzzword/gallery/galleries/MyAlbum and Buzzword will sense that it is missing and remove the photos. Hope that helps. -Brad --=20 Brad Taylor Genome Software LLC http://www.getcoded.net |
|
From: <da...@ze...> - 2004-07-27 19:12:30
|
Hi...
Just installed latest SVN buzzword (410) and I do not get any admin
options for the gallery module. Just "Preferences" and "Logout". Is
there anything I should do to start a gallery up?
d.
|
|
From: Aaron B. <ab...@br...> - 2004-05-28 23:40:00
|
I think it'd be really neat to have 'link entries'. Basically, it's a different type of normal blog entry -- all that's displayed is a link and a short description, possibly with different formatting. It's hard to explain, so check out http://www.agblog.com . The webmaster's currently in the middle of updating his site, so parts of it may be b0rked at times, but you can still get the idea of the "link" entries. Specifically look at how 2 consecutive link entries are handled. -Aaron |
|
From: <ben...@id...> - 2004-05-25 08:59:05
|
Dear Open Source developer I am doing a research project on "Fun and Software Development" in which I kindly invite you to participate. You will find the online survey under http://fasd.ethz.ch/qsf/. The questionnaire consists of 53 questions and you will need about 15 minutes to complete it. With the FASD project (Fun and Software Development) we want to define the motivational significance of fun when software developers decide to engage in Open Source projects. What is special about our research project is that a similar survey is planned with software developers in commercial firms. This procedure allows the immediate comparison between the involved individuals and the conditions of production of these two development models. Thus we hope to obtain substantial new insights to the phenomenon of Open Source Development. With many thanks for your participation, Benno Luthiger PS: The results of the survey will be published under http://www.isu.unizh.ch/fuehrung/blprojects/FASD/. We have set up the mailing list fa...@we... for this study. Please see http://fasd.ethz.ch/qsf/mailinglist_en.html for registration to this mailing list. _______________________________________________________________________ Benno Luthiger Swiss Federal Institute of Technology Zurich 8092 Zurich Mail: benno.luthiger(at)id.ethz.ch _______________________________________________________________________ |
|
From: Jonathan T. <jo...@tg...> - 2004-04-15 23:57:49
|
On Thu, 2004-04-15 at 14:22, jr...@th... wrote: > How I envisioned this working was in much the same way as Gallery or some= of the > other programs deal with movies. The appear inline in the picture gallery > either at the end or beginning based on file extension (All files ending = in > .mov .avi .mpg etc. go at the beginning or end of an album). There are a = bunch > of icons made up that are used as thumbnails for each filetype. So when t= he > script processes the files, and comes across an avi for eaxample, it says= , hey > this is not an image, we're not going to run it through imagemagick we'll= use > this fine thumbnail instead. It doesn't have to do much. When the person = clicks > on the thumbnail it opens the movie as it would an image.=20 >=20 Okay, so let me get this straight. =20 On a gallery page, movies show up as thumbnails with a preset thumbnail that we draw. Some kind of stock icon. =20 When the thumbnail is clicked, it opens up the image display page, and instead of displaying an image, the movie is embedded where the image should be? What happens if the movie is too wide/tall? =20 If we embed, then the download image link will become "download movie" and just send the movie except with Content-Type: application/content-stream and everything is happy. =20 OR When the thumbnail is clicked, it just downloads the movie from the server and it opens in a new Windows Media Player / Totem / whatever-standalone-movie-player-you-have window? =20 Drawback to this approach: there is no "download movie" link, since there is no "movie display" page. =20 And ... what about the slideshow? Skip over movies (bad)? Or can we detect when a movie ends with Javascript and jump into the next movie (better)? =20 > While I agree a allery is usually just for photos, most digital cameras c= ome > with the ability to shoot small video clips. A lot of times users will wa= nt to > include these clips with the rest of the shots from the event.=20 >=20 > Anyway I realise it's not as simple as I make it sound, especially since = I > haven't looked at your code so I have no idea how hard it would be to > implement. I'm just saying I'm not looking for anything crazy here just a > simple way to integrate thos one off movie clips into the gallery.=20 >=20 I don't mind implementing this - the way the code was designed, it shouldn't be very hard. It's just the user experience that I haven't been able to nail down. I want to make sure it's intuitive / user-friendly. =20 - Jon --=20 jo...@tg... Administrator, tgpsolutions http://www.tgpsolutions.com |
|
From: <jr...@th...> - 2004-04-15 21:53:17
|
How I envisioned this working was in much the same way as Gallery or some of the other programs deal with movies. The appear inline in the picture gallery either at the end or beginning based on file extension (All files ending in .mov .avi .mpg etc. go at the beginning or end of an album). There are a bunch of icons made up that are used as thumbnails for each filetype. So when the script processes the files, and comes across an avi for eaxample, it says, hey this is not an image, we're not going to run it through imagemagick we'll use this fine thumbnail instead. It doesn't have to do much. When the person clicks on the thumbnail it opens the movie as it would an image. While I agree a allery is usually just for photos, most digital cameras come with the ability to shoot small video clips. A lot of times users will want to include these clips with the rest of the shots from the event. Anyway I realise it's not as simple as I make it sound, especially since I haven't looked at your code so I have no idea how hard it would be to implement. I'm just saying I'm not looking for anything crazy here just a simple way to integrate thos one off movie clips into the gallery. Take care, -John ----- Of course you don't know. You don't know because only I know. If you knew and I didn't know, then you'd be teaching me instead of me teaching you--and for a student to be teaching his teacher is presumptuous and rude. Do I make myself clear? -Mr. Turkentine Quoting Brad Taylor <br...@ge...>: > Hi again, > > On Mon, 2004-04-05 at 12:03, jr...@th... wrote: > > How hard would it be to implement multimedia support into the buzzword > gallery. > > I have a lot of quicktime clips I'd like to include in some of my > galleries. > > Jon and I discussed this issue and we couldn't think of a sane way to > implement the UI without disturbing the current gallery functionality > and still maintain an equal treatment for all filetypes. We have no > problem with adding multimedia support but not at the expense of images > in the gallery. After all, a gallery is usually just for photos. > > If you guys have any ideas, please, let us know. > > -Brad > > -- > Brad Taylor > Genome Software LLC > http://www.getcoded.net > ---------------------------------------------------------------- This message was sent using IMP, the Internet Messaging Program. |
|
From: Brad T. <br...@ge...> - 2004-04-14 19:37:18
|
Hi again, On Mon, 2004-04-05 at 12:03, jr...@th... wrote: > How hard would it be to implement multimedia support into the buzzword ga= llery. > I have a lot of quicktime clips I'd like to include in some of my galleri= es. Jon and I discussed this issue and we couldn't think of a sane way to implement the UI without disturbing the current gallery functionality and still maintain an equal treatment for all filetypes. We have no problem with adding multimedia support but not at the expense of images in the gallery. After all, a gallery is usually just for photos. If you guys have any ideas, please, let us know. -Brad --=20 Brad Taylor Genome Software LLC http://www.getcoded.net |
|
From: Brad T. <br...@ge...> - 2004-04-05 21:29:30
|
Hi again, On Mon, 2004-04-05 at 12:03, jr...@th... wrote: > How hard would it be to implement multimedia support into the buzzword ga= llery. > I have a lot of quicktime clips I'd like to include in some of my galleri= es. How funny! Today I just committed a request for .mov and .avi support into the buzzword TODO file so I will be doing the groundwork for it very soon. You might want to wait for the release (0.8.10) which will include these fixes and more before you upgrade to 0.8.9. Expect it to come out in the next one or two days. Also, I'll take into consideration anything that might want included with multimedia support. -Brad --=20 Brad Taylor Genome Software LLC http://www.getcoded.net |
|
From: Brad T. <br...@ge...> - 2004-04-05 21:07:34
|
Hi John, On Mon, 2004-04-05 at 12:01, jr...@th... wrote: > What is the recommended process for upgrading from buzzword 0.8.8 to 0.8.= 9? > That is, what are critical files that need to be kept and what are files = that > must be switched out. When switching from one version of buzzword to another, we recommend backing up includes/header.inc, includes/footer.inc and style.css (if you've modified it) to a separate directory. At this point, you can safely overwrite your current version with the new version of files. =20 However, if you made modifications to any of the core files or module stylesheets, it is vital that you back these changes up as well and apply them to the new version of the file. After updating the files, make sure to copy includes/header.inc, includes/footer.inc and style.css over. Now, navigate to your buzzword installation and use the installer to fill your database username, etc. When you hit submit, buzzword will generate a new config.inc file which you can save to your hard drive and then copy to the path specified in the installer. This is usually the best way to go for more novice users, but Jon and I=20 (the developers) usually will check out a copy from Subversion (find out how to do this at http://jon.tgpsolutions.com/projects/buzzword/downloads/index.php) and use the diff tool to create a patch file which we manually edit and then apply later. If you didn't understand that, the first method is probably for you. Now, specifically for upgrading from 0.8.8, we provided an UPGRADING file in the main distribution which gives some hints on the files that have changed. UPGRADING -- * Upgrading from version 0.8.8 or earlier: * new preference: buzzword_ob_gzhandler; you'll need to update your config.inc =20 * jhead is no longer required if you have PHP compiled with --enable-exif =20 Basically, all this says is make sure to create a new config.inc file using the installer. =20 Thats pretty much it. If you don't mind, when you get buzzword up and running, would you mind if we put a link to your site on our links page? Sincerely, -Brad --=20 Brad Taylor Genome Software LLC http://www.getcoded.net |
|
From: <jr...@th...> - 2004-04-05 19:03:48
|
How hard would it be to implement multimedia support into the buzzword gallery. I have a lot of quicktime clips I'd like to include in some of my galleries. Thanks, -John |
|
From: <jr...@th...> - 2004-04-05 19:02:01
|
What is the recommended process for upgrading from buzzword 0.8.8 to 0.8.9? That is, what are critical files that need to be kept and what are files that must be switched out. Thanks, -John |
|
From: Brad T. <br...@ge...> - 2004-02-26 01:37:52
|
I just thought I'd put this article up here in the odd event that buzzword becomes popular, cats rain from the heavens and the dead walk the earth. http://wired.com/wired/archive/12.03/google.html?pg=3D7 -Brad --=20 Brad Taylor Genome Software LLC http://www.getcoded.net |