Needs review
Project:
Views Cloud
Version:
6.x-1.2
Component:
Code
Priority:
Normal
Category:
Task
Assigned:
Unassigned
Reporter:
Created:
27 Jan 2011 at 19:41 UTC
Updated:
23 Feb 2014 at 20:51 UTC
Jump to comment: Most recent, Most recent file
Comments
Comment #1
Rj-dupe-1 commentedsubscribe
Comment #2
likewhoa commentedsubscribing to this.
Comment #3
danielnolde commentedDear maintainers, how is the timeframe/planning for a D7 port of views cloud?
Are you working on it, do you need help?
Comment #4
off commentedSubscribe
Comment #5
poprocks commentedsubscribe
Comment #6
pcsupport commentedSubscribe
Comment #7
chillihot commentedsubscribe
Comment #8
erdembey commentedsubscribe
Comment #9
chevron commentedsubscribe
Comment #10
lesleyfernandes commentedsubscribing
Comment #11
erdembey commentedRenaming for better tracking ...
Comment #12
izus commentedSubscribing
Comment #13
rogical commented+1
Comment #14
Jerome F commentedsubscribe
Comment #15
AlexeyB commentedSubscribe!
Comment #16
StevenWill commentedsubscribing
Comment #17
Tsubo commentedsubscribe
Comment #18
jack_tux commentedsubcribe
Comment #19
elgandoz commentedSubbing. D7 really need it.
Comment #20
basicmagic.net commentedsubscribe
Comment #21
wapnik commentedInitial patch against 6.x-1.x branch.
Comment #22
goldlilys commentedSubscribing
Comment #23
cees.vanegmond commentedSubscribing
Comment #24
niubbo75 commentedSubscribing
Comment #25
WorldFallz commentedFor some reason the patch in #21 didn't attach properly. I'm reattaching the same patch.
@wapnik -- did you test this? are you saying that you only have to change the views api designation to completely upgrade to a d7 version?
Comment #26
cees.vanegmond commentedHi,
Against 6.x-1.2 I'm getting:
patch.exe --binary 0 patching file views_cloud.info
Hunk #1 FAILED at 2.
1 out of 1 hunk FAILED -- saving rejects to file views_cloud.info.rej
patching file views_cloud.module
Hunk #1 succeeded at 7 (offset 1 line).
D7 modules says:
This version is not compatible with Drupal 7.x and should be replaced.
Comment #27
wapnik commented@WorldFallz: yes, it's working for me. I also used a patch from #893054: Problem with field rewrite and nid, which is not yet in.
Comment #28
neurojavi commentedSubscribing
Comment #29
esculcar commentedSubscribing
Comment #30
rodrigoaguilerasubmarine
Comment #31
causalloop commentedI'm getting:
Comment #32
shiroitatsu commentedsub...
Comment #33
AniaMi commentedsubs.
Comment #34
Anonymous (not verified) commentedsubscribe...
Comment #35
wapnik commentedor follow?
Comment #36
attiks commentedFYI: in Drupal 7 you can do this with just views as well since it has support for aggregation, attached an exported view, the only thing you need is some css like
Comment #37
Anonymous (not verified) commented@attiks
i've import your view and add the css to my theme.css but it doesn't work.
do i have to create a css class in views?
Comment #38
Anonymous (not verified) commentedi've added the css to the views.css and now it works.
thanks for that
regards
konsul
Comment #39
mgifford@attiks @konsul - So you're suggesting we just close this issue (say won't fix), post a diff to the views.css file and point folks to doing it that way.
Perhaps it is something that should be contributed back to Views so it can come bundled with the next version.
If the maintainers are keen about putting out a D7 version, great. Not sure that Views Cloud does more than what this CSS does.
Comment #40
attiks commented@mgifford: i just posted my work around so other people might benefit, it's working for me, but i doubt if it's a general solution for all situations.
Comment #41
Anonymous (not verified) commented@attiks
the only problem with this solution is that if a user tags 1000 contents with "whatever" i have to write 1000 times span.count-x...if i dont the default font-size is used each time a count isnt determined via css.
is it possible ...
1. to assign lets say count 1-10 to fontsize 1em, 11-30 to 1.2em and so on?
2. to determine 10 default fontsizes, count the number of all tags (on all nodes from logged in user) and convert them to %...like span.count-(1-10%), (11-20%) and so on?
Comment #42
attiks commented@konsul, that's true and there's no clean solution, you can always try to add a field of type Global: Math Expression and the calculation and use it in the rewrite. But it means you have to now the max number of tags, and divide the count by the total.
A proper solution is to use a custom field handler that returns the total number of tags so you can use it to do the calculation, it means an extra query, but doing this type of calculation in one query will be difficult.
Comment #43
attiks commentedI created a sandbox project (http://drupal.org/sandbox/attiks/1451746) containing a views field that returns that max count so you can use Math Expressions like: (([title] / [dummycount]) * 6) + 1 // Classes named as in #36
Comment #44
Anonymous (not verified) commented@ all...i've got it to work with attiks sandbox project and the following view as an example.
many thanks to attiks...i've looked for a good solution for a long time
Comment #45
brunodboI tried cloning the repo on http://drupal.org/sandbox/attiks/1451746, but it only contains a README.txt file. Or am I missing something?
Comment #46
attiks commentedyou did: git clone --branch 7.x-1.x attiks@git.drupal.org:sandbox/attiks/1451746.git views_dummy_count
Comment #47
brunodboGreat, thanks!
Comment #48
brunodboJust wanted to confirm that this solution (attiks' sandbox + konsul's view) works great, thanks guys!
Comment #49
jimmyko commentedI tried git clone --branch 7.x-1.x attiks@git.drupal.org:sandbox/attiks/1451746.git views_dummy_count. It asked me for the password...Please ignore it :P I found what's wrong I have.
The command is: git clone --branch 7.x-1.x [username_in_Drupal]@git.drupal.org:sandbox/attiks/1451746.git views_dummy_count
Comment #50
attiks commentedOr use
git clone --branch 7.x-1.x http://git.drupal.org/sandbox/attiks/1451746.git views_dummy_countComment #51
Yet Another User commentedHi Everyone,
I need a View Cloud for Drupal 7 for my site too.
Can anyone give me a tar ball? They have only released it for D6 on their page.
Please help?
Comment #52
Leeteq commentedFYI: there is a D7 -dev release of tagadelic_views now.
http://drupal.org/project/tagadelic_views
Comment #53
off commentedDo we have working version?
Comment #54
off commentedThanks for #36
This views work fine.
But how about perfomance?