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
FusionIAM
FusionIAM
Commits
f19c3e6a
Commit
f19c3e6a
authored
Sep 20, 2021
by
Clément OUDOT
Browse files
Add some vendor dependencies (
#5
)
parent
692067c3
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
build/centos8/fusiondirectory/ansible/files/vendor/prototype/prototype.js
0 → 100644
View file @
f19c3e6a
This diff is collapsed.
Click to expand it.
build/centos8/fusiondirectory/ansible/files/vendor/smarty-gettext/block.t.php
0 → 100644
View file @
f19c3e6a
<?php
/*
* This file is part of the smarty-gettext package.
*
* @copyright (c) Elan Ruusamäe
* @license GNU Lesser General Public License, version 2.1
* @see https://github.com/smarty-gettext/smarty-gettext/
*
* For the full copyright and license information,
* please see the LICENSE and AUTHORS files
* that were distributed with this source code.
*/
/**
* Replaces arguments in a string with their values.
* Arguments are represented by % followed by their number.
*
* @param string $str Source string
* @param mixed mixed Arguments, can be passed in an array or through single variables
* @return string Modified string
*/
function
smarty_gettext_strarg
(
$str
/*, $varargs... */
)
{
$tr
=
array
();
$p
=
0
;
$nargs
=
func_num_args
();
for
(
$i
=
1
;
$i
<
$nargs
;
$i
++
)
{
$arg
=
func_get_arg
(
$i
);
if
(
is_array
(
$arg
))
{
foreach
(
$arg
as
$aarg
)
{
$tr
[
'%'
.
++
$p
]
=
$aarg
;
}
}
else
{
$tr
[
'%'
.
++
$p
]
=
$arg
;
}
}
return
strtr
(
$str
,
$tr
);
}
/**
* Smarty block function, provides gettext support for smarty.
*
* The block content is the text that should be translated.
*
* Any parameter that is sent to the function will be represented as %n in the translation text,
* where n is 1 for the first parameter. The following parameters are reserved:
* - escape - sets escape mode:
* - 'html' for HTML escaping, this is the default.
* - 'js' for javascript escaping.
* - 'url' for url escaping.
* - 'no'/'off'/0 - turns off escaping
* - plural - The plural version of the text (2nd parameter of ngettext())
* - count - The item count for plural mode (3rd parameter of ngettext())
* - domain - Textdomain to be used, default if skipped (dgettext() instead of gettext())
* - context - gettext context. reserved for future use.
*
* @param array $params
* @param string $text
* @see http://www.smarty.net/docs/en/plugins.block.functions.tpl
* @return string
*/
function
smarty_block_t
(
$params
,
$text
)
{
if
(
!
isset
(
$text
))
{
return
$text
;
}
// set escape mode, default html escape
if
(
isset
(
$params
[
'escape'
]))
{
$escape
=
$params
[
'escape'
];
unset
(
$params
[
'escape'
]);
}
else
{
$escape
=
'html'
;
}
// set plural parameters 'plural' and 'count'.
if
(
isset
(
$params
[
'plural'
]))
{
$plural
=
$params
[
'plural'
];
unset
(
$params
[
'plural'
]);
// set count
if
(
isset
(
$params
[
'count'
]))
{
$count
=
$params
[
'count'
];
unset
(
$params
[
'count'
]);
}
}
// get domain param
if
(
isset
(
$params
[
'domain'
]))
{
$domain
=
$params
[
'domain'
];
unset
(
$params
[
'domain'
]);
}
else
{
$domain
=
null
;
}
// get context param
if
(
isset
(
$params
[
'context'
]))
{
$context
=
$params
[
'context'
];
unset
(
$params
[
'context'
]);
}
else
{
$context
=
null
;
}
// use plural if required parameters are set
if
(
isset
(
$count
)
&&
isset
(
$plural
))
{
// use specified textdomain if available
if
(
isset
(
$domain
)
&&
isset
(
$context
))
{
$text
=
dnpgettext
(
$domain
,
$context
,
$text
,
$plural
,
$count
);
}
elseif
(
isset
(
$domain
))
{
$text
=
dngettext
(
$domain
,
$text
,
$plural
,
$count
);
}
elseif
(
isset
(
$context
))
{
$text
=
npgettext
(
$context
,
$text
,
$plural
,
$count
);
}
else
{
$text
=
ngettext
(
$text
,
$plural
,
$count
);
}
}
else
{
// use specified textdomain if available
if
(
isset
(
$domain
)
&&
isset
(
$context
))
{
$text
=
dpgettext
(
$domain
,
$context
,
$text
);
}
elseif
(
isset
(
$domain
))
{
$text
=
dgettext
(
$domain
,
$text
);
}
elseif
(
isset
(
$context
))
{
$text
=
pgettext
(
$context
,
$text
);
}
else
{
$text
=
gettext
(
$text
);
}
}
// run strarg if there are parameters
if
(
count
(
$params
))
{
$text
=
smarty_gettext_strarg
(
$text
,
$params
);
}
switch
(
$escape
)
{
case
'html'
:
$text
=
nl2br
(
htmlspecialchars
(
$text
));
break
;
case
'javascript'
:
case
'js'
:
// javascript escape
$text
=
strtr
(
$text
,
array
(
'\\'
=>
'\\\\'
,
"'"
=>
"
\\
'"
,
'"'
=>
'\\"'
,
"
\r
"
=>
'\\r'
,
"
\n
"
=>
'\\n'
,
'</'
=>
'<\/'
));
break
;
case
'url'
:
// url escape
$text
=
urlencode
(
$text
);
break
;
}
return
$text
;
}
build/centos8/fusiondirectory/ansible/files/vendor/smarty-gettext/function.locale.php
0 → 100644
View file @
f19c3e6a
<?php
/*
* This file is part of the smarty-gettext package.
*
* @copyright (c) Elan Ruusamäe
* @license GNU Lesser General Public License, version 2.1
* @see https://github.com/smarty-gettext/smarty-gettext/
*
* For the full copyright and license information,
* please see the LICENSE and AUTHORS files
* that were distributed with this source code.
*/
function
smarty_function_locale
(
$params
,
$smarty
)
{
static
$stack
;
// init stack as array
if
(
$stack
===
null
)
{
$stack
=
array
();
}
$path
=
null
;
$template_dirs
=
method_exists
(
$smarty
,
'getTemplateDir'
)
?
$smarty
->
getTemplateDir
()
:
$smarty
->
template_dir
;
$path_param
=
isset
(
$params
[
'path'
])
?
$params
[
'path'
]
:
''
;
$domain
=
isset
(
$params
[
'domain'
])
?
$params
[
'domain'
]
:
'messages'
;
$stack_operation
=
isset
(
$params
[
'stack'
])
?
$params
[
'stack'
]
:
'push'
;
foreach
((
array
)
$template_dirs
as
$template_dir
)
{
$path
=
$template_dir
.
$path_param
;
if
(
is_dir
(
$path
))
{
break
;
}
}
if
(
!
$path
&&
$stack_operation
!==
'pop'
)
{
trigger_error
(
"Directory for locales not found (path='
{
$path_param
}
')"
,
E_USER_ERROR
);
}
if
(
$stack_operation
===
'push'
)
{
$stack
[]
=
array
(
$domain
,
$path
);
}
elseif
(
$stack_operation
===
'pop'
)
{
if
(
count
(
$stack
)
>
1
)
{
array_pop
(
$stack
);
}
list
(
$domain
,
$path
)
=
end
(
$stack
);
}
else
{
trigger_error
(
"Unknown stack operation '
{
$stack_operation
}
'"
,
E_USER_ERROR
);
}
bind_textdomain_codeset
(
$domain
,
'UTF-8'
);
bindtextdomain
(
$domain
,
$path
);
textdomain
(
$domain
);
}
build/centos8/fusiondirectory/ansible/install.yaml
View file @
f19c3e6a
...
...
@@ -76,6 +76,12 @@
-
perl-XML-Twig
state
:
present
-
name
:
Allow all locales
shell
:
sed -i -e /override_install_langs/d /etc/yum.conf
-
name
:
Reinstall glibc-common
shell
:
yum -y -q reinstall glibc-common
-
name
:
Install php-fpm configuration
copy
:
src
:
php-fpm.www.conf
...
...
@@ -150,6 +156,25 @@
-
/usr/local/share/fusiondirectory/include/variables.inc
-
/usr/local/bin/fusiondirectory-setup
-
name
:
Install Smarty gettext plugin
copy
:
src
:
vendor/smarty-gettext/{{ item }}
dest
:
/usr/share/php/Smarty/plugins/
owner
:
root
group
:
root
mode
:
0644
with_items
:
-
block.t.php
-
function.locale.php
-
name
:
Install prototype.js
copy
:
src
:
vendor/prototype/prototype.js
dest
:
/usr/local/share/fusiondirectory/html/include/
owner
:
root
group
:
root
mode
:
0644
-
name
:
Check directories
command
:
/usr/local/bin/fusiondirectory-setup --set-fd_home=/usr/local/share/fusiondirectory --yes --check-directories
...
...
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