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
KMuddy
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Games
KMuddy
Commits
463c0525
Commit
463c0525
authored
Jun 06, 2020
by
Tomas Mecir
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libmxp fix
parent
aa394bee
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
2 deletions
+10
-2
libmxp/ChangeLog
libmxp/ChangeLog
+5
-0
libmxp/NEWS
libmxp/NEWS
+3
-0
libmxp/src/CMakeLists.txt
libmxp/src/CMakeLists.txt
+1
-1
libmxp/src/celementmanager.cpp
libmxp/src/celementmanager.cpp
+1
-1
No files found.
libmxp/ChangeLog
View file @
463c0525
ChangeLog for libMXP
--------------------
*** RELEASED THIS AS VERSION 0.2.5 ***
2020-06-06
* Fixed entity expansion in custom tags, shouldn't be quoted
*** RELEASED THIS AS VERSION 0.2.4 ***
2009-11-28
...
...
libmxp/NEWS
View file @
463c0525
News in libmxp 0.2.5:
- fix entity expansion in custom tags
News in libmxp 0.2.4:
- fix element parsing so that parameters can include spaces
...
...
libmxp/src/CMakeLists.txt
View file @
463c0525
...
...
@@ -14,7 +14,7 @@ set (mxp_SRCS
add_library
(
mxp SHARED
${
mxp_SRCS
}
)
set_target_properties
(
mxp PROPERTIES VERSION 0.0.
4
SOVERSION 0
)
set_target_properties
(
mxp PROPERTIES VERSION 0.0.
5
SOVERSION 0
)
install
(
TARGETS mxp DESTINATION lib
${
LIB_SUFFIX
}
)
install
(
FILES libmxp.h DESTINATION include/libmxp
)
...
...
libmxp/src/celementmanager.cpp
View file @
463c0525
...
...
@@ -1448,7 +1448,7 @@ void cElementManager::processCustomTag (const string &name, const list<sParam> &
list
<
sParam
>::
const_iterator
itp
;
for
(
itp
=
params
.
begin
();
itp
!=
params
.
end
();
++
itp
)
//assign parameter value... default values and stuff were already expanded
paramexpander
->
addEntity
((
*
itp
).
name
,
"'"
+
(
*
itp
).
value
+
"'"
);
paramexpander
->
addEntity
((
*
itp
).
name
,
/*"'" +*/
(
*
itp
).
value
/*+ "'"*/
);
//process tag contents one by one
list
<
sElementPart
*>::
iterator
it
;
...
...
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