SOT: PHP The Anthem

2012-01-27 Thread Steve 'Cutter' Blades

Highlighted on the YouTube homepage, they trash CF in the first line of 
the song...
http://www.youtube.com/watch?v=S8zhmiS-1kwfeature=g-all-esicontext=G2be1824FBAA

-- 
Steve 'Cutter' Blades
Adobe Community Professional
Adobe Certified Expert
Advanced Macromedia ColdFusion MX 7 Developer

http://cutterscrossing.com


Co-Author Learning Ext JS 3.2 Packt Publishing 2010
https://www.packtpub.com/learning-ext-js-3-2-for-building-dynamic-desktop-style-user-interfaces/book

The best way to predict the future is to help create it



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:349639
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: [ANNOUNCE] CF-FireLogger

2012-01-27 Thread Russ Michaels

you should also list your project in the following places to make sure it
gets noticed.

www.cfsearch.com
www.riaforge.org
www.cf411.com


On Fri, Jan 27, 2012 at 7:23 AM, Max Paperno m...@wdg.us wrote:


 Hi Brook,

 Very curious.  Took me a minute, but that error message is actually from
 the original Adobe trace.cfm version (mine doesn't even use a variable
 called debugger).  But what is really happening is that my version of
 trace.cfm is crashing and calling the native trace.cfm version to handle
 the error, which is then also crashing.

 Do you still get an error using that cftrace tag if Firelogger is
 disabled?  I'm guessing not.

 So I can re-create this-- what you're doing is instantiating a CFC into
 the application scope ( eg. application.x = new mycfc() ) and from within
 mycfc trying to do a cftrace.  Is that right?  It does work from with a CFC
 in the variables and request scopes, but I haven't tested others.

 Thanks,
 -Max



  Original Message 
 Subject: Re: [ANNOUNCE] CF-FireLogger
 From: Brook Davies cft...@logiforms.com
 To: cf-talk cf-talk@houseoffusion.com
 Date: 1/27/2012 12:49 AM

 
  Hey Max,
 
  I set everything up according to the docs. I can see the output in
  firelogger when I do  this:
 
  cfscript console = new firelogger(debugMode=false,
  debugLevel=info, fallbackLogMethod=trace-inline);
  console.log(arguments.commitArray); /cfscript
 
  But when I try this:
 
  cftrace var=commitArray type=information text=Starting
  FormArray Commit category=FormModel Update,silver,black
  inline=false abort=false
 
  I get an error:
 
  Variable DEBUGGER is undefined.

 
  Note, this only happens when I try to call the TRACE() command from
  within an application scoped CFC. When I run the same command from a
  simple cfm template, it works as expected. Any idea why?
 
  Brook
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:349640
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Error Using WebCharts for Pie Chart

2012-01-27 Thread Kelly Ross

Can you share your XML file? It would be best if you could use an XML
string and static data. If you can then share one CFM file I can run
locally it will make testing easier.


On Thu, Jan 26, 2012 at 2:58 PM, Kelly Ross ke...@nox-racing.com wrote:
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:349641
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Error Using WebCharts for Pie Chart

2012-01-27 Thread Kelly Ross

For the xml file, to make sure there wasn't any syntax errors, I just copied 
the default_pie.xml from the WebCharts styles directory and then renamed it.

?xml version=1.0 encoding=UTF-8?
pieChart depth=Double style=Solid angle=340 is3D=false
dataLabels style=Value placement=Outside/
legend
decoration style=None/
/legend
elements place=Default drawOutline=false
series index=0
paint color=#E48701/
/series
series index=1
paint color=#A5BC4E/
/series
series index=2
paint color=#1B95D9/
/series
series index=3
paint color=#CACA9E/
/series
series index=4
paint color=#6693B0/
/series
series index=5
paint color=#F05E27/
/series
series index=6
paint color=#86D1E4/
/series
series index=7
paint color=#E4F9A0/
/series
series index=8
paint color=#FFD512/
/series
series index=9
paint color=#75B000/
/series
series index=10
paint color=#0662B0/
/series
series index=11
paint color=#EDE8C6/
/series
series index=12
paint color=#CC3300/
/series
series index=13
paint color=#D1DFE7/
/series
series index=14
paint color=#52D4CA/
/series
series index=15
paint color=#C5E05D/
/series
series index=16
paint color=#E7C174/
/series
series index=17
paint color=#FFF797/
/series
series index=18
paint color=#C5F68F/
/series
series index=19
paint color=#BDF1E6/
/series
series index=20
paint color=#9E987D/
/series
series index=21
paint color=#EB988D/
/series
series index=22
paint color=#91C9E5/
/series
series index=23
paint color=#93DC4A/
/series
series index=24
paint color=#FFB900/
/series
series index=25
paint color=#9EBBCD/
/series
series index=26
paint color=#009797/
/series
series index=27
paint color=#0DB2C2/
/series
/elements
popup background=#C8FF foreground=#33/
paint paint=Plain/
insets left=5 top=5 right=5 bottom=5/
/pieChart



For the chart, I am testing with a basic pie chart with static values:

cfchart
  pieslicestyle=sliced
  format=png
  chartHeight = 400
  chartWidth = 600
  font=Arial
  showborder=no
  show3d=yes
  yAxisTitle = Test X Axis
  style = test
   
   

cfchartseries
  type=pie
  paintStyle=plain
  colorlist=##1e2695,red,green,yellow  
 
  cfchartdata item = 1 value = 4
  cfchartdata item = 2  value = 8 
  cfchartdata item = 3  value = 10   
  cfchartdata item = 4  value = 12   
 
/cfchartseries 
/cfchart

I am leaving the xml file in the ColdFusion8/Charting/Styles  directory as this 
seems to be the default 

Re: Error Using WebCharts for Pie Chart

2012-01-27 Thread Raymond Camden

Forgot to trim my last reply, so sorry if this is a dupe:

The style attribute works both with files and strings. I believe CF is
just getting confused here. Take your xml file and simply place it in
the same folder as your CFM and then specify test.xml, NOT just test,
and it should work fine

On Fri, Jan 27, 2012 at 7:42 AM, Kelly Ross ke...@nox-racing.com wrote:

 For the xml file, to make sure there wasn't any syntax errors, I just copied 
 the default_pie.xml from the WebCharts styles directory and then renamed it.



-- 
===
Raymond Camden, Adobe Developer Evangelist

Email : raymondcam...@gmail.com
Blog : www.raymondcamden.com
Twitter: cfjedimaster

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:349643
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: PHP The Anthem

2012-01-27 Thread Robert Harrison

Sounds like gangstas ... perfect positioning for PHP. 



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:349644
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: PHP The Anthem

2012-01-27 Thread Gerald Guido

Gansta programmer? Someone owes me a new keyboard. This is what a gansta
programmer looks like.

http://www.modernfurniturepic.info/furniturepics/office-space-19.jpg


On Fri, Jan 27, 2012 at 11:39 AM, Robert Harrison 
rob...@austin-williams.com wrote:


 Sounds like gangstas ... perfect positioning for PHP.



 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:349645
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: SOT: PHP The Anthem

2012-01-27 Thread Dave Watts

 Highlighted on the YouTube homepage, they trash CF in the first line of
 the song...
 http://www.youtube.com/watch?v=S8zhmiS-1kwfeature=g-all-esicontext=G2be1824FBAA

While they were putting this together, I was doing billable work. So, meh.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
http://training.figleaf.com/

Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
GSA Schedule, and provides the highest caliber vendor-authorized
instruction at our training centers, online, or onsite.

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:349646
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


(Job) ColdFusion Programmer

2012-01-27 Thread Bobby June

Where can I find some ColdFusion programmers open for a position in Kansas.

I have a client who is in need of 5 ColdFusion people for full time positions 
offering a base salary of $80-105K base + bonus + full benefits.

If you or anyone you know may be interested please contact me ASAP!

Thank you. 

Bobby June / BeyondTek IT 
Tel: 714-572-1544 x 11 / Fax: 714-982-5094 
Yahoo IM: bobbybeyondtekit
bo...@beyondtekit.com / www.BeyondTekIT.com 
  


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:349647
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: SOT: PHP The Anthem

2012-01-27 Thread Justin Scott

 Highlighted on the YouTube homepage, they trash CF in
 the first line of the song...

Yeah, sometimes the code looks a little trashy, but this ain't
ColdFusion so stop talkin' sassy.

Sounds like a compliment to me (e.g. ColdFusion code looks less trashy
than PHP).  I'm with Dave on this one. :)


-Justin

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:349648
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: SOT: PHP The Anthem

2012-01-27 Thread Casey Dougall - Uber Website Solutions

On Fri, Jan 27, 2012 at 12:09 PM, Dave Watts dwa...@figleaf.com wrote:

 While they were putting this together, I was doing billable work. So, meh.



Yup which wasn't on freelancer.com for $10 bucks an hour :-)


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:349649
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Way OT: Funny video

2012-01-27 Thread Brook Davies

Its Friday, so don't hate:

 

If you haven't seen this, you need to. Its an oldie but a goody:

 

http://www.youtube.com/watch?v=zV0OgsRK0Bc

 

Brook




~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:349650
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Error Using WebCharts for Pie Chart

2012-01-27 Thread Kelly Ross

That did it. Guess you are right about CF just getting confused. So then I got 
confused why it worked fine for bar graphs but not pie graphs.

Thanks A LOT for your help.

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:349651
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: SOT: PHP The Anthem

2012-01-27 Thread Greg Luce

Is it just me or does that video crash anyone else's browser? I tried it
twice and both times it crashed chrome. I don't know that I've ever seen
chrome crash twice in one year. Did they embed some of that trashy code
or something?

Greg



On Fri, Jan 27, 2012 at 1:04 PM, Casey Dougall - Uber Website Solutions 
ca...@uberwebsitesolutions.com wrote:


 On Fri, Jan 27, 2012 at 12:09 PM, Dave Watts dwa...@figleaf.com wrote:

  While they were putting this together, I was doing billable work. So,
 meh.



 Yup which wasn't on freelancer.com for $10 bucks an hour :-)


 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:349652
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: SOT: PHP The Anthem

2012-01-27 Thread Claude Schnéegans

  I tried it twice and both times it crashed chrome.

May be because both the video and Chrome are programed in PHP ? ;-)

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:349653
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Hash function ignoring . in username part of email address

2012-01-27 Thread Eric Roberts

We are on CF7 (yes I know...we are in the process of upgrading to 9...)

I am having an issue that has just popped up recently.  when i have an
email address with a . in the username or multiple .s like
ow@threeravensconsulting.com or o.w.n@threeravensconsulting.com the
has function is ignoring the 1st . and encrypting the rest.  here's the
code:  signature=hash(digest,SHA, UTF-8)

So going with the second addy, here is the result:
EMAIL=o.w%2En%2Ee%2Er%40threeravensconsulting%2Ecom...

as you can see, all of the .s are escaped, with the exception of the
first one...

Odd thing is that this was working fine for the past few months.  We
haven't done any updates or anything like that.  Any ideas as to why this
is happening?  I am totally stumped on this one.

If i try to hash an already escaped email addy...that would produce a
different hash...correct?  Or is the hash function smart enough to
recognize the escaped character?

Thanks in advance.

Eric


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:349654
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Way OT: Funny video

2012-01-27 Thread Cameron Childress

On Fri, Jan 27, 2012 at 2:29 PM, Brook Davies cft...@logiforms.com wrote:
 Its Friday, so don't hate:

 If you haven't seen this, you need to. Its an oldie but a goody:

 http://www.youtube.com/watch?v=zV0OgsRK0Bc

Good stuff.  This guy lives in Atlanta and the video was filmed in my
neighborhood (Little 5 Points, specifically).

This thing got him hired by an agency very quickly.

-Cameron

...

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:349655
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Hash function ignoring . in username part of email address

2012-01-27 Thread Rex

Hi Eric,

Are you using a hash()?  Because that output looks look you are doing a 
URLEncodedFormat().

If you are doing a SHA hash, the result would a bunch of characters like 
5BAA61E4C9B93F3F0682250B6CF8331B7EE68FD8

If you are URLEncodedFormat() you'd get what you have: 
o%2Ew%2En%2Ee%2Er%40threeravensconsulting%2Ecom

Also, if you hash, the encoded email will have a different hash compared 
to the origina. non-encoded email.  The hash function is not smart at 
all, so you have to URLDecode() an encoded string.

- Rex

On 1/27/2012 1:28 PM, Eric Roberts wrote:
 We are on CF7 (yes I know...we are in the process of upgrading to 9...)

 I am having an issue that has just popped up recently.  when i have an
 email address with a . in the username or multiple .s like
 ow@threeravensconsulting.com or o.w.n@threeravensconsulting.com the
 has function is ignoring the 1st . and encrypting the rest.  here's the
 code:  signature=hash(digest,SHA, UTF-8)

 So going with the second addy, here is the result:
 EMAIL=o.w%2En%2Ee%2Er%40threeravensconsulting%2Ecom...

 as you can see, all of the .s are escaped, with the exception of the
 first one...

 Odd thing is that this was working fine for the past few months.  We
 haven't done any updates or anything like that.  Any ideas as to why this
 is happening?  I am totally stumped on this one.

 If i try to hash an already escaped email addy...that would produce a
 different hash...correct?  Or is the hash function smart enough to
 recognize the escaped character?

 Thanks in advance.

 Eric


 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:349656
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Way OT: Funny video

2012-01-27 Thread Dave Long

Congrats to him! He's not waiting in some welfare line.

-Original Message-
From: Cameron Childress [mailto:camer...@gmail.com] 
Sent: Friday, January 27, 2012 3:31 PM
To: cf-talk
Subject: Re: Way OT: Funny video



On Fri, Jan 27, 2012 at 2:29 PM, Brook Davies cft...@logiforms.com wrote:
 Its Friday, so don't hate:

 If you haven't seen this, you need to. Its an oldie but a goody:

 http://www.youtube.com/watch?v=zV0OgsRK0Bc

Good stuff.  This guy lives in Atlanta and the video was filmed in my
neighborhood (Little 5 Points, specifically).

This thing got him hired by an agency very quickly.

-Cameron

...



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:349657
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm