All Projects → cutelyst → cutelee

cutelyst / cutelee

Licence: LGPL-2.1 License
A Qt Template Engine based on Django templates

Programming Languages

C++
36643 projects - #6 most used programming language
CMake
9771 projects
python
139335 projects - #7 most used programming language
HTML
75241 projects
CSS
56736 projects
c
50402 projects - #5 most used programming language

The Cutelee Libraries

OSX/Linux Build Status Windows Build status

  • About Cutelee
  • Installation
  • Licensing
  • Contributing

About Cutelee

Cutelee is a set of Free Software libraries written using the Qt framework. Currently two libraries are shipped with Cutelee: Cutelee Templates and Cutelee TextDocument.

The goal of Cutelee Templates is to make it easier for application developers to separate the structure of documents from the data they contain, opening the door for theming and advanced generation of other text such as code.

The syntax uses the syntax of the Django template system, and the core design of Django is reused in Cutelee.

<ul>
{% for athlete in athlete_list %}
<li>{{ athlete.name }}{% if athlete.isCaptain %} (C){% endif %}</li>
{% endfor %}
</ul>

Part of the design of both template systems is that application developers can extend the syntax by implementing their own tags and filters. For details of how to do that, see the API documentation.

Installation

To build Cutelee, you need at least Qt5.3 (with development packages) and CMake 3.1. Out-of-source builds are recommended:

mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=$prefix ..
cmake --build .
cmake --build . --target install

Licensing

Cutelee is covered by the GNU Lesser General Public License Version 2.1, or at your option, any later version. All contributions to Cutelee must be covered by the same license.

The details of the license are in the COPYING file in the source distribution.

Contributing

Cutelee is hosted on github, and welcomes pull requests and issues.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].