Re: How are other developers handling big SVN repositories?

2010-05-08 Thread Sean Corfield
On Fri, May 7, 2010 at 4:45 PM, Andrew Scott andr...@andyscott.id.au wrote: I take that back then, I was wondering why SmartGit didn't support it. And made the assumption based from them that it didn't exist. A bunch of the GUI tools for git don't support all operations. If you only view git

Re: How are other developers handling big SVN repositories?

2010-05-08 Thread denstar
On Sat, May 8, 2010 at 1:03 AM, Sean Corfield wrote: On Fri, May 7, 2010 at 4:45 PM, Andrew Scott wrote: I take that back then, I was wondering why SmartGit didn't support it. And made the assumption based from them that it didn't exist. A bunch of the GUI tools for git don't support all

Re: How are other developers handling big SVN repositories?

2010-05-08 Thread denstar
Besides the real info we've been talking about: Mark Phippard @ Subclipse is a freaking bad ass. I love that dude. Wasn't too cool to help a sometimes-communicatively-challenged brother out. :) That's where I started with Eclipse dev, if memory serves. My contribution to EGit is still blow'n

Downloading mp3s

2010-05-08 Thread Rob Voyle
Hi Folks I have a series of mp3 sound files on my website. I would like people to be able to download them to listen on their ipod or in their car on a cd etc. People are able to listen to them from the web but their ability to download and save them seems very variable. Some can see save as

re: Setting up a Site Search

2010-05-08 Thread Blizzm
Thanks for the helpful info.  We were also advised to use Verity spider since it has the ability to index dynamic content as well.  Since some of our pages pull from cfincludes it was suggested that we use that instead. How often does the collection update?  If I was to add a new page

upgrade from 7 to 8

2010-05-08 Thread Chad Gray
I just upgraded our server from 7 to 8. It said I needed to run wsconfig to finish the installation and there was a problem with port 2930. ERROR - JNDI port 2930 for server coldfusion is not active I don’t see anything using 2930 and I ran wsconfig to hook it up to IIS. I don’t see any MX8

Re: Setting up a Site Search

2010-05-08 Thread Jason Fisher
Nope, you have to handle scheduling yourself. I just set up a URL that will include that CFINDEX (below in my first response) and then I schedule that script through CFAdmin, so it can be whatever schedule you want. NOTE: It is also entirely possible to automate UPDATE of a particular piece

RE: upgrade from 7 to 8

2010-05-08 Thread Chad Gray
I rebooted and now I can get to the CFAdmin web site and it is asking to migrate. Maybe I am getting some where. -Original Message- From: Chad Gray [mailto:cg...@careyweb.com] Sent: Saturday, May 08, 2010 10:23 AM To: cf-talk Subject: upgrade from 7 to 8 I just upgraded our server

RE: upgrade from 7 to 8

2010-05-08 Thread Chad Gray
OK that was scary. Looks like everything is working now. Peed my pants a little. -Original Message- From: Chad Gray [mailto:cg...@careyweb.com] Sent: Saturday, May 08, 2010 10:25 AM To: cf-talk Subject: RE: upgrade from 7 to 8 I rebooted and now I can get to the CFAdmin web site

RE: Downloading mp3s

2010-05-08 Thread andy matthews
You can do one of a few things. Serve up the MP3 file through ColdFusion like so: http://lab.artlung.com/coldfusion-force-download/ Or you can set up your web server to deliver MP3 files as downloads instead of playing them. andy -Original Message- From: Rob Voyle

Re: Downloading mp3s

2010-05-08 Thread Brad Wood
I haven't used it, but Amazon's S3 has the ability to create temporary URLs for a user that even enforce what IP they will serve to. If you store your files in an S3 bucket, you can use the API to generate temp links for a specific user on the fly. As far as your original question-- I've

Re: Downloading mp3s

2010-05-08 Thread Wil Genovese
You asked the same question in a different thread yesterday. I'm not sure you got my response though. It sounds like you have people that are experiencing problems when trying to download an MP3 file. Correct? I do a lot with MP3's. This is the basics of the code I use to force the browser

Best way to embed PDF Form in .cfm page?

2010-05-08 Thread Rick Faircloth
I've been working on a PDF for a while now and users (and myself) are having trouble with the browser crashing sometimes when the PDF attempts to load. I've been using this code with *some* success, but not consistency. cfDocument format = pdf cfDocumentSection pnbsp;/p

Re: Anyone done this before???

2010-05-08 Thread Maureen
You can do this easy in .NET using doCMD. The is a good article on it here. http://support.microsoft.com/kb/317113 I've never tried it in Coldfusion but I would think you could write an Access macro to load a report menu and call Access with CFExecute with the name of the macro appended. You

write to start of text file

2010-05-08 Thread Richard White
hi, is there a way to write text to the start of a text file? thanks ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion Archive:

Which is more efficient?

2010-05-08 Thread Chuck Weidler
I was set here on a Saturday morning writing code for a website and I was wondering what is more efficient when working with setting and manipulating variable values. Which is more efficient? Doing it all in one call? cfscript Variables.myVar = Trim(Replace(SomeValue, whatever, something,

Re: write to start of text file

2010-05-08 Thread James Holmes
You could read the file and write it to the end of the text. mxAjax / CFAjax docs and other useful articles: http://www.bifrost.com.au/blog/ On 9 May 2010 09:49, Richard White rich...@j7is.co.uk wrote: hi, is there a way to write text to the start of a text file? thanks

RE: Which is more efficient?

2010-05-08 Thread andy matthews
Performance wise you'd probably only see a difference in the milliseconds. Memory wise you might see a difference in the last one because of the extra variable storage, but only on sites with really high traffic. That's my guess that is. andy -Original Message- From: Chuck Weidler

Re: Which is more efficient?

2010-05-08 Thread Dave Watts
I was set here on a Saturday morning writing code for a website and I was wondering what is more efficient when working with setting and manipulating variable values. Which is more efficient? Doing it all in one call? cfscript Variables.myVar = Trim(Replace(SomeValue, whatever,