Review Request 117407: Add a project name validation in the project creation dialog

Simon Wächter waechter.simon at gmail.com
Sun May 11 14:35:56 UTC 2014


-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://git.reviewboard.kde.org/r/117407/
-----------------------------------------------------------

(Updated May 11, 2014, 4:35 p.m.)


Review request for KDevelop, Aleix Pol Gonzalez and Sven Brauch.


Changes
-------

This patch adds the project name validation according to the discussion. The updated KDevelop templates will follow if this patch is accepted


Repository: kdevplatform


Description (updated)
-------

This patch adds a regex validation for the project name in the project creation dialog. The user can break KDevelop with an abnormal project name. The first attempt was to add a general regex, but this would be to static. So the idea and the following implementation is:

- If the project template file, for example 'cmake_plaincpp.kdevtemplate', provides a 'ValidProjectName' value, this value will be used. This value is a normal regex. For example 'ValidProjectName=^[a-zA-Z][a-zA-Z]+$' is a valid configuration
- If there is no 'ValidProjectName' value, kdevplatform will use a normal regex, in this case '^[a-zA-Z][a-zA-Z0-9_]+$'. With this fallback mode we can guarantee, that templates without a 'ValidProjectName' also have a validation.

If this patch gets accepted I will add this configuration to the templates provided by KDevelop. I will also write a (bigger) patch to add these feature in KAppTemplate - if wished.


Diffs (updated)
-----

  plugins/appwizard/appwizarddialog.cpp f33b52c 
  plugins/appwizard/projectselectionpage.h 7aeef58 
  plugins/appwizard/projectselectionpage.cpp 6270869 

Diff: https://git.reviewboard.kde.org/r/117407/diff/


Testing (updated)
-------

Testing was done under a Debian Testing and a Kubuntu 14.04 x64. The value check and fallback mode are working. More testing from other users is welcomed


Thanks,

Simon Wächter

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.kde.org/pipermail/kdevelop-devel/attachments/20140511/4da502fd/attachment.html>


More information about the KDevelop-devel mailing list