From acas at sapo.pt Thu Jun 2 18:27:24 2005 From: acas at sapo.pt (Alberto dos Santos) Date: Tue Mar 4 07:24:10 2008 Subject: [front-end] RE:how to tell the server that i am not using an anchor tag Message-ID: <20050602222937.E9D7DA86D8@virtu.nyphp.org> Hello, Peter. if you want to ad spaces to urls, although technicaly not to correct, you can use a special char %20 to do it. your URL would look like this: http://www.bedc.org/ad/ad%20fashion%2001.htm#elansa target="_blank">

ELAN-SA International Handbags

Hope this helps. -- Alberto dos Santos Salvaguarda: Este email e seus anexos est?o protegidos de v?rus e programas maliciosos. Se notar algo de anormal por favor informe-me. Obrigado. Disclaimer: This email and it?s attachements are protected from v?rus and malicious software. If you notice something unusual please report. Thanks. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.lists.nyphp.org/pipermail/front-end/attachments/20050602/6ed231d6/attachment.html From krook at us.ibm.com Fri Jun 3 12:14:20 2005 From: krook at us.ibm.com (Daniel Krook) Date: Tue Mar 4 07:24:10 2008 Subject: [front-end] Quarterly rich text editor round up Message-ID: It's that time again; picking a rich text editor for a content management tool. It seems like Xinha (http://xinha.python-hosting.com/) and FCKeditor (http://www.fckeditor.net/) are the front runners this month. Requirements are simple for my application - Must be DHTML (as opposed to a Java applet) - Must work with IE 6, Firefox 1 - Must output vanilla XHTML Thoughts, pointers, preferences? Output converting snippets even? Daniel Krook, Advisory IT Specialist Application Development, Production Services - Tools, ibm.com Personal: http://info.krook.org/ BluePages: http://bluepages.redirect.webahead.ibm.com/ BlogPages: http://blogpages.redirect.webahead.ibm.com/ From tom at supertom.com Fri Jun 3 12:27:37 2005 From: tom at supertom.com (Tom Melendez) Date: Tue Mar 4 07:24:10 2008 Subject: [front-end] Quarterly rich text editor round up In-Reply-To: References: Message-ID: <42A084F9.60602@supertom.com> I've used FCKeditor alot in the past, and it worked quite well. The last I looked, it didn't meet my needs, however, as I'm looking for something that works in all current browsers (Safari - Argh!!!) I haven't done any of this research recently, though, so things may have changed. Conclusion: in the past, I found FCKeditor to be quite usable and stable, and sounds like a great choice for your needs. Tom http://www.liphp.org Daniel Krook wrote: >It's that time again; picking a rich text editor for a content management >tool. It seems like Xinha (http://xinha.python-hosting.com/) and >FCKeditor (http://www.fckeditor.net/) are the front runners this month. > >Requirements are simple for my application >- Must be DHTML (as opposed to a Java applet) >- Must work with IE 6, Firefox 1 >- Must output vanilla XHTML > >Thoughts, pointers, preferences? Output converting snippets even? > > > > > >Daniel Krook, Advisory IT Specialist >Application Development, Production Services - Tools, ibm.com > >Personal: http://info.krook.org/ >BluePages: http://bluepages.redirect.webahead.ibm.com/ >BlogPages: http://blogpages.redirect.webahead.ibm.com/ > > >_______________________________________________ >New York PHP SIG: Front End Mailing List >AMP Technology >Supporting Apache, MySQL and PHP >http://lists.nyphp.org/mailman/listinfo/front-end >http://www.nyphp.org > > > From chsnyder at gmail.com Fri Jun 3 14:09:14 2005 From: chsnyder at gmail.com (csnyder) Date: Tue Mar 4 07:24:10 2008 Subject: [front-end] Quarterly rich text editor round up In-Reply-To: References: Message-ID: On 6/3/05, Daniel Krook wrote: > It's that time again; picking a rich text editor for a content management > tool. It seems like Xinha (http://xinha.python-hosting.com/) and > FCKeditor (http://www.fckeditor.net/) are the front runners this month. Why? What in particular makes you choose one over another -- they are all, after all, interfaces to the same browser toolset, right? > Requirements are simple for my application > - Must be DHTML (as opposed to a Java applet) > - Must work with IE 6, Firefox 1 > - Must output vanilla XHTML I think most of the editors on offer at the moment can do those things. Where they break down (or not) is in how easy they are to configure and add to a page, and how ugly and obtrusive they happen to be (or not). I suspect that they can all -do- the same things, at least once you get over the learning curve and tweak them for your situation. My ideal requirements are a bit different: - Custom paragraph/div styles - Custom span styles -- this one seems to be difficult - Drag-handles for resizing images - Must pass the post-link test -- if there is a link at the end of a paragraph, how hard is it to append plain (not linked) text after it? TinyMCE comes as close as any I've tested (despite vague objections from the Mambo community), but it doesn't handle separate div and span styles. From krook at us.ibm.com Mon Jun 6 19:13:31 2005 From: krook at us.ibm.com (Daniel Krook) Date: Tue Mar 4 07:24:10 2008 Subject: [front-end] Quarterly rich text editor round up In-Reply-To: Message-ID: > > It's that time again; picking a rich text editor for a > content management > > tool. It seems like Xinha (http://xinha.python-hosting.com/) and > > FCKeditor (http://www.fckeditor.net/) are the front runners this month. > > Why? What in particular makes you choose one over another > -- they are > all, after all, interfaces to the same browser toolset, right? > > > Requirements are simple for my application > > - Must be DHTML (as opposed to a Java applet) > > - Must work with IE 6, Firefox 1 > > - Must output vanilla XHTML > > I think most of the editors on offer at the moment can do those > things. Where they break down (or not) is in how easy they are to > configure and add to a page, and how ugly and obtrusive > they happen to > be (or not). I suspect that they can all -do- the same things, at > least once you get over the learning curve and tweak them for your > situation. Reporting back on FCKeditor... this thing seems to fit all of my requirements nicely, and it's got two slick features that have sold me on it and which address Chris' second point ease of use: - It has an API where all you do is drop a simple textarea element in your page with an id attribute, which is then manipulated by a JS function call that you add somewhere else in the page. Worst case scenario: you have a plain textarea *and* it's obvious where and how that fallback textarea is written to the page (as opposed to just something like "writeRichTextWidget()"). For my purposes, this also integrates well with things like Struts html tags (). - Also via that textarea API, you don't have to worry about writing values to a hidden text field or div, or echoing them to a JS string, and therefore you don't have to worry about converting newlines when you prepopulate the editor. This alone eliminate 80% of the integration of the RTE's in prior projects. The textarea API is described in detail here: http://fckeditor.wikiwikiweb.de/Developer%27s_Guide/Integration/Javascript Of course, the one downside is the Safari incompatibility, which is summed up at the FAQ: http://fckeditor.wikiwikiweb.de/FAQ "Does FCKeditor work with Safari, over Mac? No, unfortunately not. For any editor to work in a browser, the browser itself must provide the underlying structure for the editing features. For now, Safari doesn't offer it, so it is impossible for an editor to run from it. There are rumors that the Safari team is working on editing support. As soon as they provide it, work will be done on FCKeditor to be compatible with it." Daniel Krook, Advisory IT Specialist Application Development, Production Services - Tools, ibm.com Personal: http://info.krook.org/ BluePages: http://bluepages.redirect.webahead.ibm.com/ BlogPages: http://blogpages.redirect.webahead.ibm.com/ From codebowl at gmail.com Fri Jun 24 15:27:30 2005 From: codebowl at gmail.com (Joseph Crawford) Date: Tue Mar 4 07:24:10 2008 Subject: [front-end] Suggestions? Message-ID: <8d9a42800506241227496bf5d3@mail.gmail.com> Guys I am not sure i am writing to the appropriate list but this also doesnt have much to do with PHP i was checking out Photo Stamps because i thought it was cool and then i saw this and fell in love with it lol http://photo.stamps.com/PhotoStamps/image_upload/?new=true upload a photo there and you will see the progress indicator. My question is this. Is that javascript based or is that communicating with a java servlet? If it is using a servlet how would i do something as nice as this with javascript and PHP? I did notice in the code the call to url = "/ps/ImageUploadServlet?action=ppercent-telapsed-tremain-prawkb-fsizekb-pscaled-finished&" + new Date().getTime(); and the results of that can be seen here http://photo.stamps.com/ps/ImageUploadServlet?action=ppercent-telapsed-tremain-prawkb-fsizekb-pscaled-finished so i ask this, what should i read up on to learn how to do things like this? -- Joseph Crawford Jr. Codebowl Solutions, Inc. 1-802-671-2021 codebowl@gmail.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.lists.nyphp.org/pipermail/front-end/attachments/20050624/eb72d785/attachment.html From tom at supertom.com Fri Jun 24 16:15:32 2005 From: tom at supertom.com (Tom Melendez) Date: Tue Mar 4 07:24:10 2008 Subject: [front-end] Suggestions? In-Reply-To: <8d9a42800506241227496bf5d3@mail.gmail.com> References: <8d9a42800506241227496bf5d3@mail.gmail.com> Message-ID: <42BC69E4.8000900@supertom.com> The last time I looked into this (it has been quite a while), it couldn't be done in PHP, but it was something that was being addressed. I believe the issue comes down to the fact that PHP really didn't know about the file until it was completely uploaded, but I could be wrong. As a cheat, however, I discovered that you can open up a window and show an animated graphics that *looks* like a progress bar or similar, reload that page to check and see if the file made it to the server. Once it has, you close the window. I got this idea from Yahoo, as this is how they used to do it (they would show an animation show the user that something was going on, but not actually tell progress), and it has worked out fine. But yes, it would be cool to do this the "right" way. Tom http://www.liphp.org Joseph Crawford wrote: > Guys I am not sure i am writing to the appropriate list but this also > doesnt have much to do with PHP > i was checking out Photo Stamps because i thought it was cool and then > i saw this and fell in love with it lol > > http://photo.stamps.com/PhotoStamps/image_upload/?new=true > > upload a photo there and you will see the progress indicator. My > question is this. Is that javascript based or is that communicating > with a java servlet? If it is using a servlet how would i do > something as nice as this with javascript and PHP? I did notice in > the code the call to > > url = > "/ps/ImageUploadServlet?action=ppercent-telapsed-tremain-prawkb-fsizekb-pscaled-finished&" > + new Date().getTime(); > > and the results of that can be seen here > > http://photo.stamps.com/ps/ImageUploadServlet?action=ppercent-telapsed-tremain-prawkb-fsizekb-pscaled-finished > > > so i ask this, what should i read up on to learn how to do things like > this? > > -- > Joseph Crawford Jr. > Codebowl Solutions, Inc. > 1-802-671-2021 > codebowl@gmail.com > >------------------------------------------------------------------------ > >_______________________________________________ >New York PHP SIG: Front End Mailing List >AMP Technology >Supporting Apache, MySQL and PHP >http://lists.nyphp.org/mailman/listinfo/front-end >http://www.nyphp.org > > From chsnyder at gmail.com Fri Jun 24 16:32:06 2005 From: chsnyder at gmail.com (csnyder) Date: Tue Mar 4 07:24:10 2008 Subject: [front-end] Suggestions? In-Reply-To: <42BC69E4.8000900@supertom.com> References: <8d9a42800506241227496bf5d3@mail.gmail.com> <42BC69E4.8000900@supertom.com> Message-ID: On 6/24/05, Tom Melendez wrote: > The last time I looked into this (it has been quite a while), it > couldn't be done in PHP, but it was something that was being addressed. > I believe the issue comes down to the fact that PHP really didn't know > about the file until it was completely uploaded, but I could be wrong. Yep. To the best of my knowledge, PHP doesn't get anything from Apache until the full request is received. You could build your own webserver daemon using PHP CLI and listening on port 80. Then you would have control over the whole operation, and you could spool the incoming data to disk in a predictable way so that other requests could track the progress of the file. But that sounds like an awful lot of work... From codebowl at gmail.com Fri Jun 24 16:39:46 2005 From: codebowl at gmail.com (Joseph Crawford) Date: Tue Mar 4 07:24:10 2008 Subject: [front-end] Suggestions? In-Reply-To: References: <8d9a42800506241227496bf5d3@mail.gmail.com> <42BC69E4.8000900@supertom.com> Message-ID: <8d9a42800506241339547fef3f@mail.gmail.com> yep that sounds like an awful lot of work. guess i am going to have to learn jsp and servlets heh. -- Joseph Crawford Jr. Codebowl Solutions, Inc. 1-802-671-2021 codebowl@gmail.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.lists.nyphp.org/pipermail/front-end/attachments/20050624/938b8acc/attachment.html From dcech at phpwerx.net Fri Jun 24 16:45:50 2005 From: dcech at phpwerx.net (Dan Cech) Date: Tue Mar 4 07:24:10 2008 Subject: [front-end] Suggestions? In-Reply-To: <8d9a42800506241227496bf5d3@mail.gmail.com> References: <8d9a42800506241227496bf5d3@mail.gmail.com> Message-ID: <42BC70FE.809@phpwerx.net> Joseph Crawford wrote: > Guys I am not sure i am writing to the appropriate list but this also doesnt > have much to do with PHP > i was checking out Photo Stamps because i thought it was cool and then i saw > this and fell in love with it lol > > http://photo.stamps.com/PhotoStamps/image_upload/?new=true snip > so i ask this, what should i read up on to learn how to do things like this? After a little googling I turned up: http://pdoru.from.ro/ Which has the required stuff to make php capable of monitoring upload progress. And here: http://bluga.net/projects/uploadProgressMeter/ You can find a demo using AJAX for an even nicer progress bar, based on the same server-side php. Dan From codebowl at gmail.com Fri Jun 24 17:02:20 2005 From: codebowl at gmail.com (Joseph Crawford) Date: Tue Mar 4 07:24:11 2008 Subject: [front-end] Suggestions? In-Reply-To: <42BC70FE.809@phpwerx.net> References: <8d9a42800506241227496bf5d3@mail.gmail.com> <42BC70FE.809@phpwerx.net> Message-ID: <8d9a428005062414021a0a2024@mail.gmail.com> Dan, this is nice but when attemptint to upload a 7mb file it started to just hang at 2mb uploaded then after a bit just jumped to completed. :( I will have to look over the code though. -- Joseph Crawford Jr. Codebowl Solutions, Inc. 1-802-671-2021 codebowl@gmail.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.lists.nyphp.org/pipermail/front-end/attachments/20050624/11aaf3b7/attachment.html From 1j0lkq002 at sneakemail.com Fri Jun 24 20:56:10 2005 From: 1j0lkq002 at sneakemail.com (inforequest) Date: Tue Mar 4 07:24:11 2008 Subject: [front-end] Suggestions? In-Reply-To: <8d9a428005062414021a0a2024@mail.gmail.com> References: <8d9a42800506241227496bf5d3@mail.gmail.com> <42BC70FE.809@phpwerx.net> <8d9a428005062414021a0a2024@mail.gmail.com> Message-ID: <16523-21606@sneakemail.com> Joseph Crawford codebowl-at-gmail.com |nyphp dev/internal group use| wrote: > Dan, > > this is nice but when attemptint to upload a 7mb file it started to > just hang at 2mb uploaded then after a bit just jumped to completed. > :( I will have to look over the code though. > > > -- > Joseph Crawford Jr. > Codebowl Solutions, Inc. > 1-802-671-2021 > codebowl@gmail.com That one's Flash based, no? I didn;t get a progres bar until I enabled the flash plugin. From codebowl at gmail.com Fri Jun 24 21:17:34 2005 From: codebowl at gmail.com (Joseph Crawford) Date: Tue Mar 4 07:24:11 2008 Subject: [front-end] Suggestions? In-Reply-To: <16523-21606@sneakemail.com> References: <8d9a42800506241227496bf5d3@mail.gmail.com> <42BC70FE.809@phpwerx.net> <8d9a428005062414021a0a2024@mail.gmail.com> <16523-21606@sneakemail.com> Message-ID: <8d9a4280050624181771813db8@mail.gmail.com> i dont beliueve so, i thought it was a servlet or something... -- Joseph Crawford Jr. Codebowl Solutions, Inc. 1-802-671-2021 codebowl@gmail.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.lists.nyphp.org/pipermail/front-end/attachments/20050624/33e3061f/attachment.html From krook at us.ibm.com Thu Jun 30 14:24:52 2005 From: krook at us.ibm.com (Daniel Krook) Date: Tue Mar 4 07:24:11 2008 Subject: [front-end] TinyMCE rich text and Safari Message-ID: Following on the earlier cross-platform RTE discussion... there is an interesting thread kicked of by the developers of TinyMCE on getting their rich text editor to work with Safari on the Apple web-dev list. It seems it's a go, but it wasn't pretty. They're looking for testers and feedback. http://lists.apple.com/archives/web-dev/2005/Jun/msg00146.html http://lists.apple.com/archives/web-dev/2005/Jun/ Daniel Krook, Advisory IT Specialist Application Development, Production Services - Tools, ibm.com Personal: http://info.krook.org/ BluePages: http://bluepages.redirect.webahead.ibm.com/ BlogPages: http://blogpages.redirect.webahead.ibm.com/