You can subscribe to this list here.
2005 |
Jan
|
Feb
|
Mar
|
Apr
(18) |
May
(6) |
Jun
(14) |
Jul
(10) |
Aug
|
Sep
(4) |
Oct
(8) |
Nov
(5) |
Dec
(2) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2006 |
Jan
(4) |
Feb
(3) |
Mar
(13) |
Apr
(4) |
May
(31) |
Jun
(15) |
Jul
(9) |
Aug
(43) |
Sep
(3) |
Oct
(8) |
Nov
(4) |
Dec
(5) |
2007 |
Jan
(4) |
Feb
(2) |
Mar
(7) |
Apr
(10) |
May
(18) |
Jun
(27) |
Jul
(34) |
Aug
(48) |
Sep
(3) |
Oct
(12) |
Nov
(9) |
Dec
(20) |
2008 |
Jan
|
Feb
|
Mar
|
Apr
(3) |
May
|
Jun
|
Jul
(6) |
Aug
|
Sep
(5) |
Oct
(9) |
Nov
(1) |
Dec
(4) |
2009 |
Jan
(4) |
Feb
(2) |
Mar
(4) |
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
(1) |
From: Mary R. <mro...@st...> - 2005-07-14 11:00:41
|
Many of the newer features in Connotea (most notably the group and privacy features) are of interest here. Do you have an estimated release date you could share with us? =20 =20 I have an in-house demo to do in about a month, and I suspect I will be asked whether those features are likely to be available any time soon. =20 =20 Thanks for all of the great work, by the way! |
From: Martin F. <ma...@ne...> - 2005-07-11 16:22:26
|
On Fri, 2005-07-08 at 19:49 -0400, Woodhull,Nathan W. wrote: > We think we seem to be running into problems surrounding the > transition from mod_perl 1.0 to mod_perl 2.0. The connotea source code > seems to be using modules which are no longer present in mod_perl 2.0 > or attempting to reference their mod_perl 1.0 equivalents. To us, this > seems irreconcileable with the idea that Connotea requires Apache 2. Hi Nathan, thanks for using Connotea. Near the top of Bibliotech/Apache.pm, these are the Apache imports: use Apache2; use Apache::compat; use Apache::Const qw(:common :http); use Apache::File; The first two together should activate the Apache mod_perl 2 API but also provide transitional support for mod_perl 1 calls. See: http://perl.apache.org/docs/2.0/api/Apache/compat.html Are you getting Apache::compat to load ok? Regards, -- Martin Flack Web Development Director NeoReality, Inc. http://www.neoreality.com/ |
From: Woodhull,Nathan W. <NA...@mi...> - 2005-07-08 23:49:35
|
Hi,=20 We are trying to install Connotea on server running Fedora Core 4. The relevant version numbers are: Apache 2.0.54-10 Mod_Perl 2.0.0-0.rc5.3 Perl 5.8.6-15 (These are the standard versions included with Fedora). We think we seem to be running into problems surrounding the transition from mod_perl 1.0 to mod_perl 2.0. The connotea source code seems to be using modules which are no longer present in mod_perl 2.0 or attempting to reference their mod_perl 1.0 equivalents. To us, this seems irreconcileable with the idea that Connotea requires Apache 2.=20 What I am confused by, is the documentation on the mod_perl site which indicate that mod_perl 1.0 is not supported in combination with Apache 2.0 and that mod_perl 2.0 is not supported with Apache 1.0. This is the opposite from what the Connotea instructions/code seems to indicate is how the world works.=20 What versions of mod_perl / Apache are supported by Connotea? We can probably up or downgrade what we have now to match what is working for everyone else.=20 Thanks,=20 Nathan Woodhull The MITRE Corporation |
From: Mary R. <mro...@st...> - 2005-07-05 19:15:42
|
To the developers - Could you expand on the instructions for adding components to a page? I am getting mixed results - "ListOfActiveTags" is working for me, but I can't get a "recent" list (other than the main component on the "recent" page). I haven't had any success with the ComponentName:subsection syntax you describe in the documentation. =20 Could you summarize which options can be used with which list components, and any caveats related to their use? For instance, I am assuming that "related" in your ListOfTags example means related to the list that is the main component on the page. =20 Thanks... =20 =20 =20 |
From: flax <fla...@gm...> - 2005-07-02 05:16:50
|
I added the following to /etc/httpd/conf.d/perl.conf #location of the Perl modules <Perl> use lib '/home/var/mark/tags/bibliotech/'; </Perl> #register handlers PerlModule Bibliotech::Apache PerlModule Bibliotech::AuthCookie #base path of this instance <Location /tags> SetHandler perl-script PerlHandler Bibliotech::Apache PerlSetVar BibliotechSiteName tags # Contact email address for the administrator of this instance PerlSetVar BibliotechSiteEmail ad...@ex... PerlAuthenHandler Bibliotech::AuthCookie::authen_handler AuthType basic require valid-user </Location> On 7/1/05, Martin Flack <ma...@ne...> wrote: > On Fri, 2005-07-01 at 10:38 -0600, flax wrote: > > I set <Location /tags> and so http://testip/tags brings up the front > > page alright. But any of the menu links to say > > http://testip/tags/login do not work. I just get page cannot be found > > errors. > > > > This is probably something really simple since I haven't done any MOD > > PERL related things before and barely was able to navigate CPAN to > > install the myriad of dependencies ;-) > > Can we see the config block you're using for httpd.conf? > > Martin > > > |
From: Martin F. <ma...@ne...> - 2005-07-01 18:53:23
|
On Fri, 2005-07-01 at 10:38 -0600, flax wrote: > I set <Location /tags> and so http://testip/tags brings up the front > page alright. But any of the menu links to say > http://testip/tags/login do not work. I just get page cannot be found > errors. > > This is probably something really simple since I haven't done any MOD > PERL related things before and barely was able to navigate CPAN to > install the myriad of dependencies ;-) Can we see the config block you're using for httpd.conf? Martin |
From: flax <fla...@gm...> - 2005-07-01 16:38:29
|
After many hours getting a clean system up to Perl standards, I have got Connotea somewhat up and running. I set <Location /tags> and so http://testip/tags brings up the front page alright. But any of the menu links to say http://testip/tags/login do not work. I just get page cannot be found errors. This is probably something really simple since I haven't done any MOD PERL related things before and barely was able to navigate CPAN to install the myriad of dependencies ;-) Any ideas?? Thanks. - Mark |
From: Shea,Hieng T. <HS...@mi...> - 2005-06-24 15:40:06
|
Problem states that I can't locate object method "connection" via package "Bibliotech::DBI" at ...DBI.pm. Anyone know how to fix this? |
From: Martin F. <ma...@ne...> - 2005-06-15 15:18:48
|
This is what we're running on the server that provides connotea.org: # rpm -q mod_perl mod_perl-1.99_09-10.ent My understanding is that mod_perl "1.99" is basically "2.0 beta". The CPAN module goes nuts if you try to upgrade mod_perl on a Red Hat system through it. I've never sat through it to see if it works. If your packaging system provides vendor packages for major units like the Perl core and mod_perl, stick with those. Just use the CPAN module to download the modules of lesser importance. Martin |
From: Koskela T. <tim...@va...> - 2005-06-15 11:25:33
|
Hi, This is off-topic, but in case you were also confused about=20 our setup with mod=5Fperl 1.999.21: The version numbering=20is somewhat confusing in mod=5Fperl. We have apache2-mod=5Fperl-2.0.0-4.i586.rpm installed: http://www.novell.com/products/linuxpackages/professional/apache2-mod=5Fper= l.html However, we cannot update this with CPAN, since the actual=20 program version in this package is 1.999=5F21.=20 http://perl.apache.org/docs/2.0/rename.html "Concurrent with these changes, a decision was also=20made to refuse to=20 install mod=5Fperl 2 in the same Perl tree as any installed mod=5Fperl 2=20 package of version prior to 1.999=5F22." Song Kaicheng (15.6.2005): > >http://perl.apache.org/docs/1.0/guide/install.html >please see the Description chapter. >------------ >First of all: > > Apache 2.0 doesn't work with mod=5Fperl 1.0. > Apache 1.0 doesn't work with mod=5Fperl 2.0." >-------------- > >On 6/15/05, Song Kaicheng <ak...@gm...> wrote: >> I was told that mod=5Fperl 1 can not be worked on apache 2. >> am I wrong=3F Yours,=20 Timo Koskela=20 |
From: Koskela T. <tim...@va...> - 2005-06-15 08:13:29
|
Hi, Martin Flack (14th June 2005): >BTW, I'm not sure if most installers know that the CPAN module can be >used to install=20other modules: >perl -MCPAN -e 'install Config::Scoped' I have some questions about CPAN and mod=5Fperl. Maybe slightly=20 off-topic, but answers would benefit at least perl newbies.=20 We just got Connotea installed and working. Our system is=20 Linux/SUSE 9.3 with Apache/2.0.53, mod=5Fperl/1.999.21,=20 Perl/v5.8.6 and MySQL 4.1.10a.=20 I used CPAN to install and update perl libraries=20 (since SUSE 9.3 does not include all needed libraries),=20 but I'm unsure about the situation with mod=5Fperl. SUSE 9.3=20 has mod=5Fperl 1.999.21 which cannot be updated to 2.0 with CPAN:=20 http://perl.apache.org/docs/2.0/rename.html=20 Connotea works=20happily with mod=5Fperl version 1.999.21,=20 but I'm concerned about maintenance and coming updates.=20 Can we upgrade to mod=5Fperl 2.0 and keep Connotea working=3F=20 If not, what would be the best option to maintain perl=20 libraries (mod=5Fperl) and Connotea=3F=20 Any advice would be greatly appreciated.=20 Yours, Timo Koskela=20 |
From: Martin F. <ma...@ne...> - 2005-06-14 16:46:11
|
On Mon, 2005-06-13 at 11:09 -0400, Mary Rosasco wrote: > If you=E2=80=99re installing on a new Apache/perl/mysql setup (as we we= re) and > especially if you=E2=80=99re not running a perl-centric shop, it may ta= ke a > while. Lots of dependencies, and for us, lots of path / environment > issues getting DBI to work properly via mod-perl . Thanks for sticking it out. :-) BTW, I'm not sure if most installers know that the CPAN module can be used to install other modules: perl -MCPAN -e 'install Config::Scoped' Maybe this is common knowledge but I thought I'd mention it as the CPAN module does then resolve dependencies (within CPAN). On Red Hat systems this is how I install CPAN modules. On Debian based systems you can also use a helper to build system packages from CPAN: dh-perl-make --build --cpan Config::Scoped (Note that we have not actually tested Connotea Code on Debian.) Martin |
From: Ben L. <b....@na...> - 2005-06-14 10:59:05
|
Hi Nathan, > I'm part of a group evaluating Connotea for internal use for a variety > of purposes. Great! I'll try and answer your questions here. > -The ability to add and tag MP3 files and have those files available as > a podcast on a per tag, and per user basis. The addition of RSS 2.0 output would be fairly painless. The existing HTML, RIS and RSS 1.0 outputs are each enabled with format-specific subroutines. You could either: * Rewrite the rss_content subroutines (see Bibliotech:::DBI) * Or, perhaps preferably, create an new outut type by modifying the URI path parser grammar (see Bibliotech::Parser) and creating some new rss2_content subroutines. Recognising MP3 and other media types is a little more tricky. I see that del.icio.us has just added this ability by looking at the end of the URL for .mp3, .wav, etc. A better, or complimentary approach, might be to do a HEAD request on the URL during the adding process, and look at the Content-type HTTP header. This could be done during the pre-adding process -- see the Bibliotech::preadd subroutine. You'd have to mofify the DB schema slightly to store this information. > -Aggregation of external social bookmark content (Public Connotea site, > Delicious, etc) into a unified view of internal bookmarks, and bookmarks > from the outside. I think this would be quite straightforward. Perhaps it would be best implemented as an external script running as a cron job -- it could fetch the RSS feeds from del.icio.us, connotea.org and other places, and use the Connotea Code API to add them to the database. You'd have to make-up some usernames, but I'm sure that would be fine. > Is anyone else succesfully using Connotea as an internal social > bookmarking platform? I'm not aware of any production installations up and running yet, but the code has only been open for a couple of months, so it's early days. > What have your experiences been with running a > social bookmarking site with a smaller internal population where there > are not as many people creating tags? As Connotea.org has grown, we've found that you need surprisingly few users to get interesting social effects emerging. Your mileage will, of course, vary -- it depends on the composition and interest range of your user population. Obviously it's still true that the larger that population, the better. All the best -- please do let us know if you end up using Connotea Code. Thanks again, Ben -- Ben Lund -- New Technology -- Nature Publishing Group Nathan Woodhull wrote: > Hi, > > I'm part of a group evaluating Connotea for internal use for a variety > of purposes. We are evaluating Connotea against a variety of other > social bookmarking apps, and custom internal development. > > We are planning on adding on a variety of features to the existing code > base. These include: > > -The ability to add and tag MP3 files and have those files available as > a podcast on a per tag, and per user basis. This would require a switch > to RSS 2.0 as the output form of the Connotea generated feeds, as well > as changes to support references to files. > > -Aggregation of external social bookmark content (Public Connotea site, > Delicious, etc) into a unified view of internal bookmarks, and bookmarks > from the outside. Social bookmarks require a large user base to be > succesful, and we don't think that our internal implementation will be > successful with only our own users contributing bookmarks. We feel we > need to pull in bookmarks from the outside and combine them with our > internal bookmarks. > > I haven't had a chance to look at the code yet. Do these sorts of things > sound as if they would be possible given the architecture? > > Is anyone else succesfully using Connotea as an internal social > bookmarking platform? What have your experiences been with running a > social bookmarking site with a smaller internal population where there > are not as many people creating tags? > > Thanks, > > Nathan Woodhull > The MITRE Corporation > > > > > ------------------------------------------------------- > This SF.Net email is sponsored by Yahoo. > Introducing Yahoo! Search Developer Network - Create apps using Yahoo! > Search APIs Find out how you can build Yahoo! directly into your own > Applications - visit http://developer.yahoo.net/?fr=offad-ysdn-ostg-q22005 > _______________________________________________ > Connotea-code-devel mailing list > Con...@li... > https://lists.sourceforge.net/lists/listinfo/connotea-code-devel ******************************************************************************** DISCLAIMER: This e-mail is confidential and should not be used by anyone who is not the original intended recipient. If you have received this e-mail in error please inform the sender and delete it from your mailbox or any other storage mechanism. Neither Macmillan Publishers Limited nor any of its agents accept liability for any statements made which are clearly the sender's own and not expressly made on behalf of Macmillan Publishers Limited or one of its agents. Please note that neither Macmillan Publishers Limited nor any of its agents accept any responsibility for viruses that may be contained in this e-mail or its attachments and it is your responsibility to scan the e-mail and attachments (if any). No contracts may be concluded on behalf of Macmillan Publishers Limited or its agents by means of e-mail communication. Macmillan Publishers Limited Registered in England and Wales with registered number 785998 Registered Office Brunel Road, Houndmills, Basingstoke RG21 6XS ******************************************************************************** |
From: Mary R. <mro...@st...> - 2005-06-13 15:09:38
|
We just recently got our connotea-code test server running after a significant amount of effort. We were not working with an existing mod-perl/mysql setup, and so we had some additional modules to install , such as DBI (and its dependencies). =20 If you're installing on a new Apache/perl/mysql setup (as we were) and especially if you're not running a perl-centric shop, it may take a while. Lots of dependencies, and for us, lots of path / environment issues getting DBI to work properly via mod-perl . =20 =20 =20 =20 |
From: Martin F. <ma...@ne...> - 2005-06-13 14:39:23
|
May we see a copy of your /etc/bibliotech.conf? (Erase the values for the *_PASSWORD and *_SECRET lines first.) The specific error you're receiving seems like a bug in Config::Scoped, but it looks like a piece of error-reporting code is failing, and if it's trying to report an error, we may as well just try to avoid that in the first place. :-) Martin Flack Web Development Director NeoReality, Inc. http://www.neoreality.com/ ----- Original Message ----- From: "Song Kaicheng" <ak...@gm...> To: <con...@li...> Sent: Sunday, June 12, 2005 9:35 PM Subject: [Connotea-code-devel] install connotea on freebsd 4.9 > Hi all. > my system is freebsd 4.9 > perl 5.8.6 > mod_perl2 > apache 2.0.54 > after install many CPAN moduels > when I start apache I have the following error. > > Syntax error on line 8 of /usr/local/etc/apache2/Includes/connotea.conf: > Can't locate object method "throw" via package "Config::Scoped::Error::Parse" at > /usr/local/lib/perl5/site_perl/5.8.6/Config/Scoped/Precomp.pm line 7989.\nBEGIN > failed--compilation aborted at /usr/local/connotea/bibliotech/Bibliotech/Config > .pm line 20.\nCompilation failed in require at /usr/local/connotea/bibliotech/Bi > bliotech.pm line 28.\nBEGIN failed--compilation aborted at /usr/local/connotea/b > ibliotech/Bibliotech.pm line 28.\nCompilation failed in require at (eval 7) line > 3.\n\t...propagated at /usr/local/lib/perl5/5.8.6/base.pm line 85.\nBEGIN faile > d--compilation aborted at /usr/local/connotea/bibliotech/Bibliotech/Apache.pm li > ne 12.\nCompilation failed in require at (eval 6) line 3.\n > > anyone could give me some suggestion?? > > Best Regards > > Akai > > > ------------------------------------------------------- > This SF.Net email is sponsored by: NEC IT Guy Games. How far can you shotput > a projector? How fast can you ride your desk chair down the office luge track? > If you want to score the big prize, get to know the little guy. > Play to win an NEC 61" plasma display: http://www.necitguy.com/?r > _______________________________________________ > Connotea-code-devel mailing list > Con...@li... > https://lists.sourceforge.net/lists/listinfo/connotea-code-devel > |
From: Song K. <ak...@gm...> - 2005-06-13 01:35:13
|
Hi all. my system is freebsd 4.9 perl 5.8.6 mod_perl2 apache 2.0.54 after install many CPAN moduels when I start apache I have the following error. Syntax error on line 8 of /usr/local/etc/apache2/Includes/connotea.conf: Can't locate object method "throw" via package "Config::Scoped::Error::Pars= e" at /usr/local/lib/perl5/site_perl/5.8.6/Config/Scoped/Precomp.pm line 7989.\n= BEGIN failed--compilation aborted at /usr/local/connotea/bibliotech/Bibliotech/C= onfig .pm line 20.\nCompilation failed in require at /usr/local/connotea/bibliote= ch/Bi bliotech.pm line 28.\nBEGIN failed--compilation aborted at /usr/local/conno= tea/b ibliotech/Bibliotech.pm line 28.\nCompilation failed in require at (eval 7)= line 3.\n\t...propagated at /usr/local/lib/perl5/5.8.6/base.pm line 85.\nBEGIN = faile d--compilation aborted at /usr/local/connotea/bibliotech/Bibliotech/Apache.= pm li ne 12.\nCompilation failed in require at (eval 6) line 3.\n anyone could give me some suggestion?? Best Regards Akai |
From: Martin F. <ma...@ne...> - 2005-06-10 21:41:59
|
I think this a fairly honest list. (Although this is from my working instance, so one or two are probably not necessary for the version that's released.) Bio::Biblio::IO CGI CGI::Cookie Carp Config::Scoped Data::Dumper Date::Parse DateTime::Format::ISO8601 DateTime::Format::MySQL DateTime::Incomplete Digest::MD5 Encode File::Touch HTML::Entities HTML::Sanitizer Parse::RecDescent RDF::Core::Model RDF::Core::Model::Serializer RDF::Core::Storage::Memory RDF::Core SQL::Abstract Set::Array Storable URI URI::QueryParam Want XML::LibXML XML::RSS YAML Martin Flack Web Development Director NeoReality, Inc. http://www.neoreality.com/ ----- Original Message ----- From: "justcruisin003" <jus...@ya...> To: <con...@li...> Sent: Friday, June 10, 2005 5:20 PM Subject: [Connotea-code-devel] installation > hello, i'm pretty new to connotea. i hope somebody > could help me with installing it. > > i've already edited the config files and mysql and > placed them in the proper locations. however, when i > restart apache 2, i'm getting some errors. in the > site, it mentioned that at this stage, i would need to > install some perl modules from cpan. does anybody > know what extra perl modules i need for this? i have > mod_perl 1.99 right now. > > thanks! > -kt > > __________________________________________________ > Do You Yahoo!? > Tired of spam? Yahoo! Mail has the best spam protection around > http://mail.yahoo.com > > > ------------------------------------------------------- > This SF.Net email is sponsored by: NEC IT Guy Games. How far can you shotput > a projector? How fast can you ride your desk chair down the office luge track? > If you want to score the big prize, get to know the little guy. > Play to win an NEC 61" plasma display: http://www.necitguy.com/?r=20 > _______________________________________________ > Connotea-code-devel mailing list > Con...@li... > https://lists.sourceforge.net/lists/listinfo/connotea-code-devel > |
From: justcruisin003 <jus...@ya...> - 2005-06-10 21:20:38
|
hello, i'm pretty new to connotea. i hope somebody could help me with installing it. i've already edited the config files and mysql and placed them in the proper locations. however, when i restart apache 2, i'm getting some errors. in the site, it mentioned that at this stage, i would need to install some perl modules from cpan. does anybody know what extra perl modules i need for this? i have mod_perl 1.99 right now. thanks! -kt __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com |
From: Nathan W. <na...@mi...> - 2005-06-01 18:55:54
|
Hi, I'm part of a group evaluating Connotea for internal use for a variety of purposes. We are evaluating Connotea against a variety of other social bookmarking apps, and custom internal development. We are planning on adding on a variety of features to the existing code base. These include: -The ability to add and tag MP3 files and have those files available as a podcast on a per tag, and per user basis. This would require a switch to RSS 2.0 as the output form of the Connotea generated feeds, as well as changes to support references to files. -Aggregation of external social bookmark content (Public Connotea site, Delicious, etc) into a unified view of internal bookmarks, and bookmarks from the outside. Social bookmarks require a large user base to be succesful, and we don't think that our internal implementation will be successful with only our own users contributing bookmarks. We feel we need to pull in bookmarks from the outside and combine them with our internal bookmarks. I haven't had a chance to look at the code yet. Do these sorts of things sound as if they would be possible given the architecture? Is anyone else succesfully using Connotea as an internal social bookmarking platform? What have your experiences been with running a social bookmarking site with a smaller internal population where there are not as many people creating tags? Thanks, Nathan Woodhull The MITRE Corporation |
From: Ben L. <b....@na...> - 2005-06-01 14:22:41
|
Hello, Thanks for your question. We haven't encountered any scalability problems so far with this schema, at at the moment it seems like the best way of modeling the data in a relational database. Let me know if you have any suggestions for alternatives, though. Ta, Ben ogj...@ya... wrote: > Hello, > > I was looking at Connotea's schema for links and their tags, and I see > you essentially have 3 tables: user_bookmark, tag, and > user_bookmark_tag, which ties the first two. > > I am wondering if you've done any scalability testing. > For instance, assuming 10,000 users, and 200 bookmarks per user and 4 > tags per bookmark, you have: > > user_bookmark : 10,000 x 200 = 2,000,000 rows > user_bookmark_tag: 2,000,000 x 4 = 8,000,000 rows > tag : depends on "tag uniqueness" distribution > > 10K users is not a high number. Multiply that by just 5, and you've > got 40M user_bookmark_tag rows. I haven't looked at types of queries > used by Connotea, but I'm wondering how a schema such as this one will > scale for queries such as "show me top N most frequently used tags for > user U"? Have you done any scalability/performance tests? I'd be > interested to hear what you found. > > Thanks. > > > > ------------------------------------------------------- > This SF.Net email is sponsored by Yahoo. > Introducing Yahoo! Search Developer Network - Create apps using Yahoo! > Search APIs Find out how you can build Yahoo! directly into your own > Applications - visit http://developer.yahoo.net/?fr=offad-ysdn-ostg-q22005 > _______________________________________________ > Connotea-code-devel mailing list > Con...@li... > https://lists.sourceforge.net/lists/listinfo/connotea-code-devel ******************************************************************************** DISCLAIMER: This e-mail is confidential and should not be used by anyone who is not the original intended recipient. If you have received this e-mail in error please inform the sender and delete it from your mailbox or any other storage mechanism. Neither Macmillan Publishers Limited nor any of its agents accept liability for any statements made which are clearly the sender's own and not expressly made on behalf of Macmillan Publishers Limited or one of its agents. Please note that neither Macmillan Publishers Limited nor any of its agents accept any responsibility for viruses that may be contained in this e-mail or its attachments and it is your responsibility to scan the e-mail and attachments (if any). No contracts may be concluded on behalf of Macmillan Publishers Limited or its agents by means of e-mail communication. Macmillan Publishers Limited Registered in England and Wales with registered number 785998 Registered Office Brunel Road, Houndmills, Basingstoke RG21 6XS ******************************************************************************** |
From: <ogj...@ya...> - 2005-05-27 04:30:43
|
Hello, I was looking at Connotea's schema for links and their tags, and I see you essentially have 3 tables: user_bookmark, tag, and user_bookmark_tag, which ties the first two. I am wondering if you've done any scalability testing. For instance, assuming 10,000 users, and 200 bookmarks per user and 4 tags per bookmark, you have: user_bookmark : 10,000 x 200 = 2,000,000 rows user_bookmark_tag: 2,000,000 x 4 = 8,000,000 rows tag : depends on "tag uniqueness" distribution 10K users is not a high number. Multiply that by just 5, and you've got 40M user_bookmark_tag rows. I haven't looked at types of queries used by Connotea, but I'm wondering how a schema such as this one will scale for queries such as "show me top N most frequently used tags for user U"? Have you done any scalability/performance tests? I'd be interested to hear what you found. Thanks. |
From: Ben L. <b....@na...> - 2005-05-20 13:26:39
|
Hi All, Version 1.0.1 was just released: http://sourceforge.net/project/showfiles.php?group_id=133040&package_id=146096&release_id=328698 This is a minor bug fix release that includes a couple of template files that were missing from v1.0. All the best, Ben -- Ben Lund -- New Technology -- Nature Publishing Group --- ******************************************************************************** DISCLAIMER: This e-mail is confidential and should not be used by anyone who is not the original intended recipient. If you have received this e-mail in error please inform the sender and delete it from your mailbox or any other storage mechanism. Neither Macmillan Publishers Limited nor any of its agents accept liability for any statements made which are clearly the sender's own and not expressly made on behalf of Macmillan Publishers Limited or one of its agents. Please note that neither Macmillan Publishers Limited nor any of its agents accept any responsibility for viruses that may be contained in this e-mail or its attachments and it is your responsibility to scan the e-mail and attachments (if any). No contracts may be concluded on behalf of Macmillan Publishers Limited or its agents by means of e-mail communication. Macmillan Publishers Limited Registered in England and Wales with registered number 785998 Registered Office Brunel Road, Houndmills, Basingstoke RG21 6XS ******************************************************************************** |
From: Ben L. <b....@na...> - 2005-05-12 10:03:16
|
Hi Hermann, Hermann Keldenich wrote: > > And as a request could you please put all files *and* images to the update. > Also every template e.g. for sites like 'retag, popular' and so on. > Unfortunately, we can't include the Connotea logo or button and icon images in the open source release, as they are tied to the branding of Connotea and NPG reserves all rights to them. However, we do want the Connotea Code to be a sound base for building a social bookmarking service. The default template is capable of being used to display all the various forms and pages that you see on connotea.org, including the list of popular bookmarks and the retag form -- its just a matter of linking to them. You can do that by modifying the default.tpl, or by building specialised templates for individual pages, and the forthcoming bug-fix release will include a default navigation menu. I hope that helps. > Thanks a lot > Regards > Hermann > All the best, Ben --- ******************************************************************************** DISCLAIMER: This e-mail is confidential and should not be used by anyone who is not the original intended recipient. If you have received this e-mail in error please inform the sender and delete it from your mailbox or any other storage mechanism. Neither Macmillan Publishers Limited nor any of its agents accept liability for any statements made which are clearly the sender's own and not expressly made on behalf of Macmillan Publishers Limited or one of its agents. Please note that neither Macmillan Publishers Limited nor any of its agents accept any responsibility for viruses that may be contained in this e-mail or its attachments and it is your responsibility to scan the e-mail and attachments (if any). No contracts may be concluded on behalf of Macmillan Publishers Limited or its agents by means of e-mail communication. Macmillan Publishers Limited Registered in England and Wales with registered number 785998 Registered Office Brunel Road, Houndmills, Basingstoke RG21 6XS ******************************************************************************** |
From: Ben L. <b....@na...> - 2005-05-12 09:44:17
|
Hi All, (And especially to Jim and Hermann who asked specifically about this) As I'm sure you've noticed, http://www.connotea.org/ has a few new features that aren't present in the Connotea Code release. We are committed to releasing them in future updates, but the open source release will always naturally lag behind the connotea.org implementation by a few weeks. The reason for this is that we have to concentrate on developing, testing, and then bedding-in new developments before we can package up the new code for release. However, there will be a bug-fix release early next week, followed shortly by a new version that includes the new functionality. Thanks very much, Ben -- Ben Lund -- New Technology -- Nature Publishing Group --- ******************************************************************************** DISCLAIMER: This e-mail is confidential and should not be used by anyone who is not the original intended recipient. If you have received this e-mail in error please inform the sender and delete it from your mailbox or any other storage mechanism. Neither Macmillan Publishers Limited nor any of its agents accept liability for any statements made which are clearly the sender's own and not expressly made on behalf of Macmillan Publishers Limited or one of its agents. Please note that neither Macmillan Publishers Limited nor any of its agents accept any responsibility for viruses that may be contained in this e-mail or its attachments and it is your responsibility to scan the e-mail and attachments (if any). No contracts may be concluded on behalf of Macmillan Publishers Limited or its agents by means of e-mail communication. Macmillan Publishers Limited Registered in England and Wales with registered number 785998 Registered Office Brunel Road, Houndmills, Basingstoke RG21 6XS ******************************************************************************** |
From: Hermann K. <hk...@tu...> - 2005-05-07 16:18:20
|
Hi, I see some updates of connotea e.g. Private Links. But the download at sourceforge is still of April 15, 2005. When will you update the download. And as a request could you please put all files *and* images to the update. Also every template e.g. for sites like 'retag, popular' and so on. Thanks a lot Regards Hermann |