Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
lemonldap-ng
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
258
Issues
258
List
Boards
Labels
Service Desk
Milestones
Merge Requests
5
Merge Requests
5
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
LemonLDAP NG
lemonldap-ng
Commits
990006ce
Commit
990006ce
authored
Jan 10, 2017
by
Yadd
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move conf regexp constants to common (#970)
parent
7234f907
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
13 additions
and
13 deletions
+13
-13
Makefile
Makefile
+1
-1
lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/RESTServer.pm
...ldap-ng-common/lib/Lemonldap/NG/Common/Conf/RESTServer.pm
+2
-2
lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/ReConstants.pm
...dap-ng-common/lib/Lemonldap/NG/Common/Conf/ReConstants.pm
+1
-1
lemonldap-ng-manager/lib/Lemonldap/NG/Manager.pm
lemonldap-ng-manager/lib/Lemonldap/NG/Manager.pm
+1
-1
lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Build.pm
lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Build.pm
+2
-2
lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Cli.pm
lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Cli.pm
+1
-1
lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Conf/Parser.pm
lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Conf/Parser.pm
+1
-1
lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Notifications.pm
...ldap-ng-manager/lib/Lemonldap/NG/Manager/Notifications.pm
+1
-1
lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Sessions.pm
lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Sessions.pm
+1
-1
lemonldap-ng-manager/t/20-test-coverage.t
lemonldap-ng-manager/t/20-test-coverage.t
+1
-1
scripts/jsongenerator.pl
scripts/jsongenerator.pl
+1
-1
No files found.
Makefile
View file @
990006ce
...
...
@@ -190,7 +190,7 @@ MANAGERJSONSRC= scripts/jsongenerator.pl \
MANAGERJSONDST
=
$(SRCMANAGERDIR)
/site/static/struct.json
\
$(SRCMANAGERDIR)
/site/static/js/conftree.js
\
$(SRCMANAGERDIR)
/lib/Lemonldap/NG/Manager/Attributes.pm
\
$(SRC
MANAGERDIR)
/lib/Lemonldap/NG/Manager/
Constants.pm
\
$(SRC
COMMONDIR)
/lib/Lemonldap/NG/Common/Conf/Re
Constants.pm
\
$(SRCCOMMONDIR)
/lib/Lemonldap/NG/Common/Conf/DefaultValues.pm
\
$(SRCCOMMONDIR)
/lib/Lemonldap/NG/Common/Conf/Constants.pm
\
_example/conf/lmConf-1.js
...
...
lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/RESTServer.pm
View file @
990006ce
...
...
@@ -3,7 +3,7 @@ package Lemonldap::NG::Common::Conf::RESTServer;
use
strict
;
use
Mouse
;
use
Lemonldap::NG::Common::Conf::
Constants
;
use
Lemonldap::NG::
Manager::
Constants
;
use
Lemonldap::NG::
Common::Conf::
Re
Constants
;
our
$VERSION
=
'
2.0.0
';
...
...
@@ -290,7 +290,7 @@ sub _samlMetaDataNodes {
}
# These regexps are generated by jsongenerator.pl and stored in
# Lemonldap::NG::
Manager::
Constants
# Lemonldap::NG::
Common::Conf::Re
Constants
elsif
(
$query
=~
{
IDP
=>
qr/^$samlIDPMetaDataNodeKeys$/
o
,
...
...
lemonldap-ng-
manager/lib/Lemonldap/NG/Manager/
Constants.pm
→
lemonldap-ng-
common/lib/Lemonldap/NG/Common/Conf/Re
Constants.pm
View file @
990006ce
# This file is generated by Lemonldap::NG::Manager::Build. Don't modify it by hand
package
Lemonldap::NG::
Manager::
Constants
;
package
Lemonldap::NG::
Common::Conf::
Re
Constants
;
use
strict
;
use
Exporter
'
import
';
...
...
lemonldap-ng-manager/lib/Lemonldap/NG/Manager.pm
View file @
990006ce
...
...
@@ -180,7 +180,7 @@ the main file that contains the tree view;
generates sub tree for virtualhosts and SAML and OpenID-Connect partners;
=item `Lemonldap::NG::
Manager::
Constants`:
=item `Lemonldap::NG::
Common::Conf::Re
Constants`:
constants used by all Perl manager components;
...
...
lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Build.pm
View file @
990006ce
...
...
@@ -161,7 +161,7 @@ sub run {
.
'
Keys $specialNodeHash $authParameters $issuerParameters $samlServiceParameters $oidcServiceParameters
';
print
F
<<EOF;
# This file is generated by $module. Don't modify it by hand
package Lemonldap::NG::
Manager::
Constants;
package Lemonldap::NG::
Common::Conf::Re
Constants;
use strict;
use Exporter 'import';
...
...
@@ -616,7 +616,7 @@ system.
Lemonldap::NG::Manager::Build->run(
structFile => "site/static/struct.json",
confTreeFile => "site/static/js/conftree.js",
managerConstantsFile => "lib/Lemonldap/NG/
Manager/
Constants.pm",
managerConstantsFile => "lib/Lemonldap/NG/
Common/Conf/Re
Constants.pm",
managerAttributesFile => 'lib/Lemonldap/NG/Manager/Attributes.pm',
defaultValuesFile => "lib/Lemonldap/NG/Common/Conf/DefaultValues.pm",
firstLmConfFile => "_example/conf/lmConf-1.js",
...
...
lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Cli.pm
View file @
990006ce
...
...
@@ -3,7 +3,7 @@ package Lemonldap::NG::Manager::Cli;
use
strict
;
use
Mouse
;
use
Data::
Dumper
;
use
Lemonldap::NG::
Manager::
Constants
;
use
Lemonldap::NG::
Common::Conf::
Re
Constants
;
extends
('
Lemonldap::NG::Manager::Cli::Lib
');
...
...
lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Conf/Parser.pm
View file @
990006ce
...
...
@@ -21,7 +21,7 @@ package Lemonldap::NG::Manager::Conf::Parser;
use
strict
;
use
utf8
;
use
Mouse
;
use
Lemonldap::NG::
Manager::
Constants
;
use
Lemonldap::NG::
Common::Conf::
Re
Constants
;
use
Lemonldap::NG::Manager::
Attributes
;
our
$VERSION
=
'
2.0.0
';
...
...
lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Notifications.pm
View file @
990006ce
...
...
@@ -6,7 +6,7 @@ use Mouse;
use
Lemonldap::NG::Common::Conf::
Constants
;
use
Lemonldap::NG::Common::PSGI::
Constants
;
use
Lemonldap::NG::
Manager::
Constants
;
use
Lemonldap::NG::
Common::Conf::
Re
Constants
;
use
Lemonldap::NG::Common::
Notifications
;
use
feature
'
state
';
...
...
lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Sessions.pm
View file @
990006ce
...
...
@@ -9,7 +9,7 @@ use Lemonldap::NG::Common::Session;
use
Lemonldap::NG::Common::Conf::
Constants
;
use
Lemonldap::NG::Common::
Session
;
use
Lemonldap::NG::Common::PSGI::
Constants
;
use
Lemonldap::NG::
Manager::
Constants
;
use
Lemonldap::NG::
Common::Conf::
Re
Constants
;
use
feature
'
state
';
...
...
lemonldap-ng-manager/t/20-test-coverage.t
View file @
990006ce
...
...
@@ -4,7 +4,7 @@
use
Test::
More
;
use
strict
;
use
Lemonldap::NG::
Manager::
Constants
;
use
Lemonldap::NG::
Common::Conf::
Re
Constants
;
use_ok
('
Lemonldap::NG::Manager::Build::Attributes
');
my
$count
=
1
;
...
...
scripts/jsongenerator.pl
View file @
990006ce
...
...
@@ -5,7 +5,7 @@ use Lemonldap::NG::Manager::Build;
Lemonldap::NG::Manager::
Build
->
run
(
structFile
=>
'
lemonldap-ng-manager/site/static/struct.json
',
confTreeFile
=>
'
lemonldap-ng-manager/site/static/js/conftree.js
',
managerConstantsFile
=>
'
lemonldap-ng-
manager/lib/Lemonldap/NG/Manager/
Constants.pm
',
managerConstantsFile
=>
'
lemonldap-ng-
common/lib/Lemonldap/NG/Common/Conf/Re
Constants.pm
',
managerAttributesFile
=>
'
lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Attributes.pm
',
defaultValuesFile
=>
'
lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/DefaultValues.pm
',
confConstantsFile
=>
'
lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Constants.pm
',
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment