[cfaussie] Re: jQuery SmartWizard 2

2012-03-22 Thread Stephen M
 OK, I have created a test page. The problem isn't caused by the jQuery 
wizard so I created this test page which has contains an internal page 
link, lots of Lorem Ipsum junk text, then the target of the internal link.

http://www.roymorgan.com/hidden/test.cfm

As you will see, when you click the link you will go back to 
www.roymorgan.com.  Internal page links will not work anywhere on the site 
and that jQuery wizard depends on them

This is an ancient site, Straker Shadomx 6 released in about 2003 which I 
think is based on fusebox 3.  The best solution is to get a whole new CMS 
but that's not going to happen.


-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/cfaussie/-/gTqjBJy_858J.
To post to this group, send email to cfaussie@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



RE: [cfaussie] Re: jQuery SmartWizard 2

2012-03-22 Thread Steve Onnis
Like i said from the start.  It is nothing wrong with the javascript or
fuzebox.  It is the application itself.  There is abase tag in your code
which has this...

 

base href=http://www.roymorgan.com/;

 

This means any relative pathed hyperlink will be absolute from whatever the
base href value is.  This is why the url is linking back to
http://www.roymorgan.com/#bottom

 

Also, you have no target for that anchor to link to anyway on that page and
your html is malformed.  At the bottom of the page you have this...

 

P id=bottom style=font-weight:bold;Test Target/A/P

 

Steve

 

 

From: Stephen M [mailto:sgmul...@gmail.com] 
Sent: Friday, 23 March 2012 1:14 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: jQuery SmartWizard 2

 

 OK, I have created a test page. The problem isn't caused by the jQuery
wizard so I created this test page which has contains an internal page link,
lots of Lorem Ipsum junk text, then the target of the internal link.

http://www.roymorgan.com/hidden/test.cfm

As you will see, when you click the link you will go back to
www.roymorgan.com.  Internal page links will not work anywhere on the site
and that jQuery wizard depends on them

This is an ancient site, Straker Shadomx 6 released in about 2003 which I
think is based on fusebox 3.  The best solution is to get a whole new CMS
but that's not going to happen.



-- 
You received this message because you are subscribed to the Google Groups
cfaussie group.
To view this discussion on the web visit
https://groups.google.com/d/msg/cfaussie/-/gTqjBJy_858J.
To post to this group, send email to cfaussie@googlegroups.com.
To unsubscribe from this group, send email to
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at
http://groups.google.com/group/cfaussie?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



RE: [cfaussie] Re: jQuery SmartWizard 2

2012-03-22 Thread charlie arehart
Stephen, the target line HTML shows this:

P id=bottom style=font-weight:bold;Test Target/A/P

Do you notice the ending /A tag, with no corresponding opening? Was there
perhaps previously an A NAME=bottom after the opening P tag and before
Test Target? That would normally have been the target of an anchor link
like that #bottom, and it seems perhaps it was there but was deleted
(without removing the closing A tag). Yes, I do see that the P tag has an id
of bottom as well. I don't know if that should be reachable by an anchor
(might want to quote it, just to be safe), but if you pop an a name in there
and it works, would that suffice as a solution for you?

 

/charlie

 

From: cfaussie@googlegroups.com [mailto:cfaussie@googlegroups.com] On Behalf
Of Stephen M
Sent: Thursday, March 22, 2012 10:14 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: jQuery SmartWizard 2

 

 OK, I have created a test page. The problem isn't caused by the jQuery
wizard so I created this test page which has contains an internal page link,
lots of Lorem Ipsum junk text, then the target of the internal link.

http://www.roymorgan.com/hidden/test.cfm

As you will see, when you click the link you will go back to
www.roymorgan.com.  Internal page links will not work anywhere on the site
and that jQuery wizard depends on them

This is an ancient site, Straker Shadomx 6 released in about 2003 which I
think is based on fusebox 3.  The best solution is to get a whole new CMS
but that's not going to happen.



-- 
You received this message because you are subscribed to the Google Groups
cfaussie group.
To view this discussion on the web visit
https://groups.google.com/d/msg/cfaussie/-/gTqjBJy_858J.
To post to this group, send email to cfaussie@googlegroups.com.
To unsubscribe from this group, send email to
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at
http://groups.google.com/group/cfaussie?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



Re: [cfaussie] Re: jQuery SmartWizard 2

2012-03-22 Thread Stephen M


On Friday, March 23, 2012 1:37:33 PM UTC+11, charlie arehart wrote:

 Stephen, the target line HTML shows this:

 P id=bottom style=font-weight:bold;Test Target/A/P

 Do you notice the ending /A tag, with no corresponding opening? Was 
 there perhaps previously an A NAME=”bottom” after the opening P tag and 
 before “Test Target”? That would normally have been the target of an anchor 
 link like that #bottom, and it seems perhaps it was there but was deleted 
 (without removing the closing A tag). Yes, I do see that the P tag has an 
 id of “bottom” as well. I don’t know if that should be reachable by an 
 anchor (might want to quote it, just to be safe), but if you pop an a name 
 in there and it works, would that suffice as a solution for you?

That was a typo, I've fixed it.  The inline editor oftens removes the 
quotes around tag attribute values as well.

Reagrding what Steve said about the base tag, I hjave tried resetting it 
with both a the HTML base tag and the cfheader tage but it makes no 
difference, 

I don't want the reset it for the whole site.  
 

  

 /charlie

  

 *From:* cfaussie@googlegroups.com 
 [mailto:cfaussie@googlegroups.​comcfaussie@googlegroups.com] 
 *On Behalf Of *Stephen M
 *Sent:* Thursday, March 22, 2012 10:14 PM
 *To:* cfaussie@googlegroups.com
 *Subject:* [cfaussie] Re: jQuery SmartWizard 2

  

  OK, I have created a test page. The problem isn't caused by the jQuery 
 wizard so I created this test page which has contains an internal page 
 link, lots of Lorem Ipsum junk text, then the target of the internal link.

 http://www.roymorgan.com/​hidden/test.cfmhttp://www.roymorgan.com/hidden/test.cfm

 As you will see, when you click the link you will go back to 
 www.roymorgan.com.  Internal page links will not work anywhere on the 
 site and that jQuery wizard depends on them

 This is an ancient site, Straker Shadomx 6 released in about 2003 which I 
 think is based on fusebox 3.  The best solution is to get a whole new CMS 
 but that's not going to happen.

 -- 
 You received this message because you are subscribed to the Google Groups 
 cfaussie group.
 To view this discussion on the web visit 
 https://groups.google.com/d/​msg/cfaussie/-/gTqjBJy_858Jhttps://groups.google.com/d/msg/cfaussie/-/gTqjBJy_858J
 .
 To post to this group, send email to cfaussie@googlegroups.com.
 To unsubscribe from this group, send email to 
 cfaussie+unsubscribe@​googlegroups.comcfaussie+unsubscr...@googlegroups.com
 .
 For more options, visit this group at 
 http://groups.google.com/​group/cfaussie?hl=enhttp://groups.google.com/group/cfaussie?hl=en
 .


-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/cfaussie/-/NORbGbCQslkJ.
To post to this group, send email to cfaussie@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



Re: [cfaussie] Re: jQuery SmartWizard 2

2012-03-22 Thread Stephen M


On Friday, March 23, 2012 2:13:59 PM UTC+11, Stephen M wrote:



 On Friday, March 23, 2012 1:37:33 PM UTC+11, charlie arehart wrote:

 Stephen, the target line HTML shows this:

 P id=bottom style=font-weight:bold;Test Target/A/P

 Do you notice the ending /A tag, with no corresponding opening? Was 
 there perhaps previously an A NAME=”bottom” after the opening P tag and 
 before “Test Target”? That would normally have been the target of an anchor 
 link like that #bottom, and it seems perhaps it was there but was deleted 
 (without removing the closing A tag). Yes, I do see that the P tag has an 
 id of “bottom” as well. I don’t know if that should be reachable by an 
 anchor (might want to quote it, just to be safe), but if you pop an a name 
 in there and it works, would that suffice as a solution for you?

 The trailing /a  was a typo, I've fixed it and added a name attribute. 
 The jQuery wizard only has id values as the target so that why I did that.  
 Although the wizard is doing extra processing before it goes to the target. 

 

 The inline editor oftens removes the quotes around tag attribute values as 
 well.

 Regarding what Steve said about the base tag, I have tried resetting it 
 with both a the HTML base tag and the cfheader tag but it makes no 
 difference, 

 I don't want the reset it for the whole site.  
  

  

 /charlie

  

 *From:* cfaussie@googlegroups.com 
 [mailto:cfaussie@googlegroups.​​comcfaussie@googlegroups.com] 
 *On Behalf Of *Stephen M
 *Sent:* Thursday, March 22, 2012 10:14 PM
 *To:* cfaussie@googlegroups.com
 *Subject:* [cfaussie] Re: jQuery SmartWizard 2

  

  OK, I have created a test page. The problem isn't caused by the jQuery 
 wizard so I created this test page which has contains an internal page 
 link, lots of Lorem Ipsum junk text, then the target of the internal link.

 http://www.roymorgan.com/​​hidden/test.cfmhttp://www.roymorgan.com/hidden/test.cfm

 As you will see, when you click the link you will go back to 
 www.roymorgan.com.  Internal page links will not work anywhere on the 
 site and that jQuery wizard depends on them

 This is an ancient site, Straker Shadomx 6 released in about 2003 which I 
 think is based on fusebox 3.  The best solution is to get a whole new CMS 
 but that's not going to happen.

 -- 
 You received this message because you are subscribed to the Google Groups 
 cfaussie group.
 To view this discussion on the web visit 
 https://groups.google.com/d/​​msg/cfaussie/-/gTqjBJy_858Jhttps://groups.google.com/d/msg/cfaussie/-/gTqjBJy_858J
 .
 To post to this group, send email to cfaussie@googlegroups.com.
 To unsubscribe from this group, send email to 
 cfaussie+unsubscribe@​​googlegroups.comcfaussie+unsubscr...@googlegroups.com
 .
 For more options, visit this group at 
 http://groups.google.com/​​group/cfaussie?hl=enhttp://groups.google.com/group/cfaussie?hl=en
 .



-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/cfaussie/-/W6WaodOo7HgJ.
To post to this group, send email to cfaussie@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



[cfaussie] [ANN SYD] This Monday: A Series Of Short Topics

2012-03-22 Thread Chris Velevitch
Monday 26th March, 6pm for 6:30 start

AJ Dyka, Chris Velevitch, Robin Hilliard, Kym Kovan, MArk Simon and anyone else
who'd like give a short talk.

Some of the topics are:-

- Deploying Mango Blog .. it’s as easy as 1, 2 ….
 - from an existing Railo installation
 - deploy Mango Blog
 - basic admin functions
 - handy plugins
- Source Control Tool comparison from a Mac user
 - Cornerstone (SVN)
 - SourceTree (git/hg)
- useful Cygwin / shell aliases and functions
- Technology Agnostic Data modelling
 - using the Object Role Modelling methodology
 - this is totally different to Object Relational Mapping, in case
anyone is confused
- Coding a better government
 - Can government be run like the Internet, permissionless and open?

Tonight is open to anyone who'd like present on a topic of their choice.

The venue is courtesy of Rocketboots.

Please RSVP to help with the catering numbers. You need to sign in and
join the group to RSVP. Please RSVP at
http://apugs.groups.adobe.com/index.cfm?event=post.displaypostid=41595


Chris
--
Chris Velevitch
Manager - Adobe Platform Users Group, Sydney
m: 0415 469 095
www.apugs.org.au

Adobe Platform Users Group, Sydney
Topic: A Series of Short Topics
Date: 26th March at 6pm for 6:30 start
Details and RSVP on
http://apugs.groups.adobe.com/index.cfm?event=post.displaypostid=41595

-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.