Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Julien Ledoux
lemonldap-ng
Commits
5c421f8b
Commit
5c421f8b
authored
Feb 07, 2017
by
Yadd
Browse files
Spelling parser
parent
d7455038
Changes
4
Hide whitespace changes
Inline
Side-by-side
Makefile
View file @
5c421f8b
...
...
@@ -1077,3 +1077,16 @@ install_%_doc_site:
rm
-rvf
$(DOCLIBSTOREMOVEFORDEBIAN)
;
\
fi
&&
cd
-
html_spelling
:
@
for
i
in
$$
(
find doc/
-type
f
-name
'*.html'
)
;
do
\
text
=
$$
(
html2text
$$
i|spellintian
--picky
)
;
\
if
[
"
$$
text"
!=
""
]
;
then
echo
"###
$$
i ###"
;
echo
$$
text
;
fi
\
done
spelling
:
@
for
i
in
$$
(
find
*
-type
f
-name
'*.pm'
)
;
do
\
if
grep
'=head1'
$$
i
>
/dev/null
;
then
\
text
=
$$
(
pod2text
$$
i|spellintian
--picky
)
;
\
if
[
"
$$
text"
!=
""
]
;
then
echo
"###
$$
i ###"
;
echo
$$
text
;
fi
\
fi
\
done
lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf.pm
View file @
5c421f8b
...
...
@@ -474,7 +474,7 @@ Web-SSO configuration.
use Lemonldap::NG::Common::Conf;
# Lemonldap::NG::Common::Conf reads loacl configuration from lemonldap-ng.ini.
# Parameters can be overriden in a hash:
# Parameters can be overrid
d
en in a hash:
my $confAccess = new Lemonldap::NG::Common::Conf(
{
type=>'File',
...
...
lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Build.pm
View file @
5c421f8b
...
...
@@ -630,7 +630,7 @@ system.
Lemonldap::NG::Manager::Build is used only to build javascript files and
Lemonldap::NG constants Perl files. It has to be launched after each change.
=head2 DEVELOP
P
ER CORNER
=head2 DEVELOPER CORNER
To add a new parameter, you have to:
...
...
lemonldap-ng-portal/lib/Lemonldap/NG/Portal.pm
View file @
5c421f8b
...
...
@@ -53,7 +53,7 @@ declared during initialization.
=head2 Initialization
The intialisation process subscribes portal to handler configuration reload and
The in
i
tialisation process subscribes portal to handler configuration reload and
ask for handler initialization (L<Lemonldap::NG::Portal::Main::Init>).
So configuration read is triggered by handler at each reload.
...
...
@@ -82,7 +82,7 @@ methods to call in the process and call do().
do() stores methods to call in $req->steps and launches
Lemonldap::NG::Portal::Main::Process::process(). This method removes each method
stored in $req->steps and launches it. If the result is PE_OK, proces()
stored in $req->steps and launches it. If the result is PE_OK, proces
s
()
continues, else it returns the error code.
If the request was an Ajax one, do() responds in JSON format else it manages
...
...
Write
Preview
Supports
Markdown
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