tag-cloud

Interesting tag cloud implementations

What is the most interesting tag cloud implementation that you know? I'm searching for something easy to work with but somewhat non-standard. I know of WP-Cumulus 3D tag cloud, I'm interested in an interesting implementation - not necessarily in visual terms (as an example, a semantic grouping tag cloud can also be interesting). ...

How to display text bigger according to how many times entered into a MySQL database using PHP and MySQL?

Okay, I have this script that should display the tags that are entered more times bigger and tags that are entered less smaller for a certain question. But for some reason it displays the last tag entered bigger and displays all the tags that where entered before it smaller like if it was counting down. I need to fix this problem. I hop...

PHP & MySQL - How to count the number of times data was entered for a specific user?

Let's say I want to display the tags related to users_question_id 1 and I want to count the number of times that tag was entered for that question by 1 each time it was entered in-order to display the tags that where entered more bigger. How would I do this using MySQL and PHP I have created two tables called questions_tags and tags. H...

how do I generate a tag cloud in acts_as_taggable_on ?

I can't debug why I am getting an error: class VendorsController < ApplicationController def tag_cloud @tags = Vendor.tag_counts_on(:tags) end I set this class as Taggable: class Vendor < ActiveRecord::Base acts_as_taggable_on :tags, :competitors I include the TagsHelper: module VendorsHelper include TagsHelper end T...

Does anyone know where I can find a javascript tag cloud generator?

Ideally, I'm looking for something that I can give JSON data retrieved using jquery, and it would generate a cloud based on the data in that query (name, link, size, color, etc...). ...

Algorithm for recommending content to user on the basis of tags

I am looking for a good algorithm that can recommend content objects to user by calculating similarity between user and content object. To calculate it, we have the content object tags (meta data) and user's interest data. We can learn about user's interest in two ways: Explicitly asking him: Ask him to rate a particular content item...

jquery tag cloud error?

I've got a problem. I made a tag cloud thingy to my website, but it doesn't work :( ({ tags:[{tag:'asdasd',freq:'4'}]}){tag:'asdasdsadasd',freq:'4'}]}){tag:'xcvxcvcx',freq:'2'}]}){tag:'cvbvcbcbvbcv',freq:'11'}]}) this is the response of the PHP file, and i'd like to get it with my html- <script type="text/javascript" src="../script...

best practice with tagclouds or tagCloud logic ?

what are some good tag Cloud logic that you had come up with? like fontsize = factor * percentageOfOccurance .... ...

Reading directly from the Doctrine Searchable index table

I've got a Doctrine table with the Searchable behavior enabled. Whenever a record is created, an index is made in another table. I have a model called Entry and the behavior automatically created the table entry_index. My question now is: How can I - without using the search(...) methods of my model use the data from this table? I wan...

Tag Cloud JS + Flash. Actual Tags In Cloud Not Clickable?

Hello all, I've implemented a tag cloud on a site of mine, and I'm using a JS script to populate it, but for some reason, the actual text in the tag cloud is not clickable. It displays and works correctly, but the actual text of the cloud is not getting treated as a link for some odd reason. My question is: In my script below, do you s...

Tag Cloud library in Java

I would like to know if there's an open source library (JAR) available to generate a tag-cloud in Java? ...

How to automagically assign weight to a Zend Tag Cloud?

In the Zend Framework is a very nice and easy way to create a Tag cloud, but the documentation gives no clue about a way to automagically give every tag a weight. Is there a way to do this? If no, how could it best be done? ...

PHP tag cloud ( and finding similar ones )

Hello! I have articles on my site, and I would like to add tags which would describe each article, but I'm having problems with design mysql table for tags. I have two ideas: 1) each article would have field "tags", and tags would be in format: "tag1,tag2,tag3" 2) create other table called tags with fields: tag_name, article_id, so when...

Tag Cloud Data Backend

I want to be able to generate tag clouds from free text that comes from any number of different sources. For clarity, I'm not talking about how to display a tag cloud once the critical tags/phrases are already discovered, I'm hoping to be able to discover the meaningful phrases themselves... preferable on a PHP/MySQL stack. If I had to ...

Is there a standard or open-source tag cloud implementation for SWT?

I need functionality for displaying and allowing selections of tags in SWT. Something that uses space efficiently, and ideally allows scaling of tags. Is there a tag cloud widget or is there one that is easily available? The closest that I've been able to come to a tag cloud manually and without too much work is to use a row layout wit...

Wordpress - List all Tags in dropdown (select) list

Hello all, I found the solution from this website about listing all tags in dropdown (select) list. Here is the code snippets. <?php function dropdown_tag_cloud( $args = '' ) { $defaults = array( 'smallest' => 8, 'largest' => 22, 'unit' => 'pt', 'number' => 45, 'format' => 'flat', 'orderby' => 'name', 'order' =>...

HTML Tag Cloud creation using Python?

Is there a library which can take a python dict with word freq = { 'abc' : 25, .... } and convert this into a html based Tag Cloud? ...

Tag Cloud server control for ASP.NET

Is there a Tag Cloud server control for ASP.NET that can satisfy theese requirements: font size calculation formula from wikipedia (http://en.wikipedia.org/wiki/Tag_cloud) just href rendering, no javascript needed css classes for all font sizes used in cloud I know that I can build it myself ;) and quite easly but I am lazy and maybe...

JavaScript TagCloud Avoid Overlapping

I’m creating a tag cloud using JavaScript. It takes an unordered list of 'tags', and then distributes them randomly from the centermost-point of the div (Gaussian distribution). The trouble I'm having is finding an efficient metric to determine if any of my tags are overlapping. Ultimately I came up with 2 approaches: (1) position eac...

HTML Tag Cloud in Python

I am looking for a simple library which can be given a set of items:value pair and which can generate a tag cloud as output. Library can preferably be in python ...