Hi Andrey,

So do you need a rich text editor?

>From web2py Examples (http://www.web2py.com/init/default/examples)

Example 13
In controller: simple_examples.py

def makertf():
    import gluon.contrib.pyrtf as q
    doc=q.Document()
    section=q.Section()
    doc.Sections.append(section)
    section.append('Section Title')
    section.append('web2py is great. '*100)
    response.headers['Content-Type']='text/rtf'
    return q.dumps(doc)

web2py also includes gluon.contrib.pyrtf, developed by Simon Cusack and
revised by Grant Edwards. This module allows you to generate Rich Text
Format documents including colored formatted text and pictures.


2014-06-01 6:43 GMT-03:00 Andrey K <kmelevs...@gmail.com>:

> Thanks Yamandu and Massimo,
> I will check it out. I have found several others:
> https://github.com/espern/tiny_website
> https://github.com/mdipierro/w2cms
> Fabiano, I need it for my application, so content manager or designer
> could edit at least text and change colors without keep asking developer
> (me) to do it:)
>
>
>
> On Saturday, May 31, 2014 9:32:08 AM UTC+3, Massimo Di Pierro wrote:
>
>> kpax is so old I would recommend it any more.
>>
>> On Friday, 30 May 2014 16:28:04 UTC-5, yamandu wrote:
>>
>>> We have some options as I know.
>>>
>>> Kpax from Massimo
>>> http://vimeo.com/1098656
>>> https://github.com/mdipierro/web2py-appliances/tree/master/KPax2
>>>
>>>
>>> Quoca and Movuca (more lika a social app) from Bruno Rocha
>>> http://quokkaproject.org/
>>> https://github.com/rochacbruno/Movuca
>>>
>>> https://code.google.com/p/instant-press/
>>>
>>>
>>> 2014-05-30 17:52 GMT-03:00 Fabiano Almeida <fab...@techno7.com.br>:
>>>
>>>> Hi Andrey,
>>>>
>>>> Do you need a blog?
>>>>
>>>>
>>>> 2014-05-30 11:21 GMT-03:00 Andrey K <kmele...@gmail.com>:
>>>>
>>>> I am interested to add in CMS system for our web2py application.
>>>>>  Quick search does not give me any solutions. Is there any CMS plugin
>>>>> already or any recipes on it?
>>>>> Any thoughts, suggestions, links and comments would be very
>>>>> appreciated.
>>>>> Thank you in advance!
>>>>>
>>>>>  --
>>>>> Resources:
>>>>> - http://web2py.com
>>>>> - http://web2py.com/book (Documentation)
>>>>> - http://github.com/web2py/web2py (Source code)
>>>>> - https://code.google.com/p/web2py/issues/list (Report Issues)
>>>>> ---
>>>>> You received this message because you are subscribed to the Google
>>>>> Groups "web2py-users" group.
>>>>> To unsubscribe from this group and stop receiving emails from it, send
>>>>> an email to web2py+un...@googlegroups.com.
>>>>>
>>>>> For more options, visit https://groups.google.com/d/optout.
>>>>>
>>>>
>>>>  --
>>>> Resources:
>>>> - http://web2py.com
>>>> - http://web2py.com/book (Documentation)
>>>> - http://github.com/web2py/web2py (Source code)
>>>> - https://code.google.com/p/web2py/issues/list (Report Issues)
>>>> ---
>>>> You received this message because you are subscribed to the Google
>>>> Groups "web2py-users" group.
>>>> To unsubscribe from this group and stop receiving emails from it, send
>>>> an email to web2py+un...@googlegroups.com.
>>>>
>>>> For more options, visit https://groups.google.com/d/optout.
>>>>
>>>
>>>
>>>
>>> --
>>> Att.
>>>
>>> Carlos J. Costa
>>> Cientista da Computação
>>> Esp. Gestão em Telecom
>>>
>>> EL MELECH NEEMAN!
>>> אָמֵן
>>>
>>>   --
> Resources:
> - http://web2py.com
> - http://web2py.com/book (Documentation)
> - http://github.com/web2py/web2py (Source code)
> - https://code.google.com/p/web2py/issues/list (Report Issues)
> ---
> You received this message because you are subscribed to the Google Groups
> "web2py-users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to web2py+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to