This is a discussion on Web page excerpt editor within the PHP General forums, part of the PHP Programming Forums category; We are looking for a script similar to SnippetMaster (http://www.snippetmaster.com/). We want to give the non-html-...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
We are looking for a script similar to SnippetMaster
(http://www.snippetmaster.com/). We want to give the non-html-coding client the ability to make edits to one part of one page on their Web site on a weekly or near-daily basis. We are looking for something free and turnkey, so we can move on to the next paying client. As stated, the client is not html-aware so SnippetMaster itself fails our criteria, the free version does not offer WYSIWYG previews of changes while editing (http://www.snippetmaster.com/compare.html). Does anyone have any experience with something else? Alternately, has anyone written something they'd be willing to share under GPL? Ski |
|
|||
|
On Sun, 2008-05-04 at 10:12 -0500, Mike Potter wrote: > Does anyone have any experience with something else? Alternately, has > anyone written something they'd be willing to share under GPL? FCKEditor, TinyMCE and a host of others. All JS based, so not really relevant on a PHP list though --Paul All Email originating from UWC is covered by disclaimer http://www.uwc.ac.za/portal/public/p...disclaimer.htm |
|
|||
|
Oops, I replied to Paul only.
On Sun, May 4, 2008 at 11:46 AM, Paul Scott wrote: > FCKEditor, TinyMCE and a host of others. All JS based, so not really > relevant on a PHP list though Whereas, SnippetMaster *is* PHP-based. Sad if it's the only one, I thought (hoped) there would be more. Ski |
|
|||
|
On Sun, 2008-05-04 at 17:27 -0500, Mike Potter wrote: > Oops, I replied to Paul only. > > On Sun, May 4, 2008 at 11:46 AM, Paul Scott wrote: > > > FCKEditor, TinyMCE and a host of others. All JS based, so not really > > relevant on a PHP list though > > Whereas, SnippetMaster *is* PHP-based. Sad if it's the only one, I > thought (hoped) there would be more. When you can't find what you want, feel free to pick up you keyboard and create the solution. Then be sure to share it with everyone else. Cheers, Rob. -- http://www.interjinn.com Application and Templating Framework for PHP |
|
|||
|
On Sun, May 4, 2008 at 5:49 PM, Robert Cummings wrote:
> > Whereas, SnippetMaster *is* PHP-based. Sad if it's the only one, I > > thought (hoped) there would be more. > > When you can't find what you want, feel free to pick up you keyboard and > create the solution. Then be sure to share it with everyone else. Perhaps I shall, in due time. As indicated earlier however, one of the goals is something free and turnkey, so we can move on to the next paying client. If time and money were no issue, I wouldn't have bothered Googling up SnippetMaster in the first place. I'd have started writing something from scratch as a first step. Alas... Ski |
|
|||
|
At 6:49 PM -0400 5/4/08, Robert Cummings wrote:
>On Sun, 2008-05-04 at 17:27 -0500, Mike Potter wrote: > > On Sun, May 4, 2008 at 11:46 AM, Paul Scott wrote: >> > > > FCKEditor, TinyMCE and a host of others. All JS based, so not really >> > relevant on a PHP list though >> > > Whereas, SnippetMaster *is* PHP-based. Sad if it's the only one, I >> thought (hoped) there would be more. > >When you can't find what you want, feel free to pick up you keyboard and >create the solution. Then be sure to share it with everyone else. > >Cheers, >Rob. To all: FCKEditor and TinyMCE are impressive in what they do, but they produce a mix of css and html -- that's not good in my book. SnippetMaster is kind of neat in that it is PHP and uses editable regions. I've been trying to come up with an alternative -- here's my twist: http://www.webbytedd.com/a/easy-page-db Please note the [Edit Mode] link on the top right of the page. I'm not willing to share the code at this point because I haven't worked out all the bugs, but I'm sure the demo expresses my idea. My quandary is how much freedom do I give the client in allowing them to use html tags? The client is not going to deliberately try to mess up their own site, but not having well formed html can create problems. I am open to comments and suggestions. Cheers, tedd -- ------- http://sperling.com http://ancientstones.com http://earthstones.com |
|
|||
|
On May 5, 2008, at 9:43 AM, tedd wrote: > At 6:49 PM -0400 5/4/08, Robert Cummings wrote: >> On Sun, 2008-05-04 at 17:27 -0500, Mike Potter wrote: >> > On Sun, May 4, 2008 at 11:46 AM, Paul Scott wrote: >>> >> > > FCKEditor, TinyMCE and a host of others. All JS based, so not >> really >>> > relevant on a PHP list though >>> >> > Whereas, SnippetMaster *is* PHP-based. Sad if it's the only one, I >>> thought (hoped) there would be more. >> >> When you can't find what you want, feel free to pick up you >> keyboard and >> create the solution. Then be sure to share it with everyone else. >> >> Cheers, >> Rob. > > To all: > > FCKEditor and TinyMCE are impressive in what they do, but they > produce a mix of css and html -- that's not good in my book. > > SnippetMaster is kind of neat in that it is PHP and uses editable > regions. > > I've been trying to come up with an alternative -- here's my twist: > > http://www.webbytedd.com/a/easy-page-db > > Please note the [Edit Mode] link on the top right of the page. > > I'm not willing to share the code at this point because I haven't > worked out all the bugs, but I'm sure the demo expresses my idea. > > My quandary is how much freedom do I give the client in allowing > them to use html tags? The client is not going to deliberately try > to mess up their own site, but not having well formed html can > create problems. > > I am open to comments and suggestions. Hey tedd, Just as an idea, would it be alot of work to do a "basic" editor, and then have an "advanced" button? That way, for the people who don't know as much they can just stay in the basic part that lets them pretty much type in the info and the editor changes it into HTML and advanced basically gives them a blank slate to work with? Just a thought.. -- Jason Pruim Raoset Inc. Technology Manager MQC Specialist 3251 132nd ave Holland, MI, 49424-9337 www.raoset.com japruim@raoset.com |
|
|||
|
On Mon, May 5, 2008 at 9:43 AM, tedd <tedd.sperling@gmail.com> wrote:
> FCKEditor and TinyMCE are impressive in what they do, but they produce a > mix of css and html -- that's not good in my book. This is an interesting idea. Most clients don't want to see a text area to input raw html though. In the many years I've done this only 3 people have ever requested it specifically out of hundreds. You might want to look into shoving generated markup through ext/tidy. It might have some options to clean up all that embedded css. Maybe I'll have to look into it later when I have some free time. I'm tired of seeing those mso styles from Word. ;) |
|
|||
|
At 9:52 AM -0400 5/5/08, Jason Pruim wrote:
>On May 5, 2008, at 9:43 AM, tedd wrote: >>I've been trying to come up with an alternative -- here's my twist: >> >>http://www.webbytedd.com/a/easy-page-db >> >>Please note the [Edit Mode] link on the top right of the page. >> >>I'm not willing to share the code at this point because I haven't >>worked out all the bugs, but I'm sure the demo expresses my idea. >> >>My quandary is how much freedom do I give the client in allowing >>them to use html tags? The client is not going to deliberately try >>to mess up their own site, but not having well formed html can >>create problems. >> >>I am open to comments and suggestions. > >Hey tedd, > >Just as an idea, would it be alot of work to do a "basic" editor, >and then have an "advanced" button? That way, for the people who >don't know as much they can just stay in the basic part that lets >them pretty much type in the info and the editor changes it into >HTML and advanced basically gives them a blank slate to work with? >Just a thought.. My idea was to have various web templates set up for the clients to chose from (my example was one) and then they could edit the text and images as they wanted. My only quandary was -- do I allow them to input html or not. Cheers, tedd -- ------- http://sperling.com http://ancientstones.com http://earthstones.com |
|
|||
|
On May 6, 2008, at 8:41 AM, tedd wrote: > At 9:52 AM -0400 5/5/08, Jason Pruim wrote: >> On May 5, 2008, at 9:43 AM, tedd wrote: >> >> Hey tedd, >> >> Just as an idea, would it be alot of work to do a "basic" editor, >> and then have an "advanced" button? That way, for the people who >> don't know as much they can just stay in the basic part that lets >> them pretty much type in the info and the editor changes it into >> HTML and advanced basically gives them a blank slate to work with? >> Just a thought.. > > My idea was to have various web templates set up for the clients to > chose from (my example was one) and then they could edit the text > and images as they wanted. > > My only quandary was -- do I allow them to input html or not. I misunderstood what you were going for... But this does give me another idea... Why not give them very simple things like [bold][/ bold] and then you can control it all from css and they don't need to understand much about HTML? In fact, if you are using variables in your css, you could set it so that they could set what color they want [bold] to be. IE: .bold {font-weight: bold; color: $boldColor;} Or how ever you would have to define it so that it displayed correctly.. :) Anyway, just the ideas of a dutch novice take them as such :) -- Jason Pruim Raoset Inc. Technology Manager MQC Specialist 3251 132nd ave Holland, MI, 49424-9337 www.raoset.com japruim@raoset.com |