Skip to content

Commit

Permalink
HPCC-29554 Improve XSD form generation
Browse files Browse the repository at this point in the history
Converted form generation to use new schema generation using service
XML and XSLT transforms

Signed-Off-By: Kenneth Rowland [email protected]
  • Loading branch information
kenrowland committed Jul 13, 2023
1 parent 75bc83c commit f5cc2ad
Show file tree
Hide file tree
Showing 46 changed files with 260 additions and 489 deletions.
3 changes: 1 addition & 2 deletions dali/dfuplus/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ include_directories (
./../../system/xmllib
./../../esp/platform
./../../esp/clients
${HPCC_SOURCE_DIR}/esp/esdllib
./../../rtl/include
./../../system/include
./../../system/jlib
Expand All @@ -69,5 +70,3 @@ target_link_libraries ( dfuplus
xmllib
esphttp
)


1 change: 1 addition & 0 deletions ecl/ecl-bundle/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ include_directories (
${HPCC_SOURCE_DIR}/esp/bindings/SOAP/xpp
${HPCC_SOURCE_DIR}/esp/platform
${HPCC_SOURCE_DIR}/esp/smc/SMCLib
${HPCC_SOURCE_DIR}/esp/esdllib
${HPCC_SOURCE_DIR}/system/security/shared
${HPCC_SOURCE_DIR}/system/include
${HPCC_SOURCE_DIR}/system/xmllib
Expand Down
2 changes: 1 addition & 1 deletion ecl/ecl-package/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ include_directories (
${HPCC_SOURCE_DIR}/esp/bindings/SOAP/xpp
${HPCC_SOURCE_DIR}/esp/platform
${HPCC_SOURCE_DIR}/esp/smc/SMCLib
${HPCC_SOURCE_DIR}/esp/esdllib
${HPCC_SOURCE_DIR}/system/security/shared
${HPCC_SOURCE_DIR}/system/include
${HPCC_SOURCE_DIR}/system/xmllib
Expand All @@ -73,4 +74,3 @@ if ( UNIX )
install ( PROGRAMS ecl-package.install DESTINATION etc/init.d/install COMPONENT Runtime )
install ( PROGRAMS ecl-package.uninstall DESTINATION etc/init.d/uninstall COMPONENT Runtime )
endif ( UNIX )

1 change: 1 addition & 0 deletions ecl/eclcmd/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ include_directories (
./../../esp/bindings/http/client
./../../system/include
./../../esp/bindings
${HPCC_SOURCE_DIR}/esp/esdllib
./../../ecl/hql
./../../ecl/eclcc
./../../dali/base
Expand Down
1 change: 1 addition & 0 deletions ecl/eclcmd/queries/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ include_directories (
${HPCC_SOURCE_DIR}/esp/bindings/SOAP/xpp
${HPCC_SOURCE_DIR}/esp/platform
${HPCC_SOURCE_DIR}/esp/smc/SMCLib
${HPCC_SOURCE_DIR}/esp/esdllib
${HPCC_SOURCE_DIR}/system/security/shared
${HPCC_SOURCE_DIR}/system/include
${HPCC_SOURCE_DIR}/system/xmllib
Expand Down
1 change: 1 addition & 0 deletions ecl/eclcmd/roxie/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ include_directories (
${HPCC_SOURCE_DIR}/esp/bindings/SOAP/xpp
${HPCC_SOURCE_DIR}/esp/platform
${HPCC_SOURCE_DIR}/esp/smc/SMCLib
${HPCC_SOURCE_DIR}/esp/esdllib
${HPCC_SOURCE_DIR}/system/security/shared
${HPCC_SOURCE_DIR}/system/include
${HPCC_SOURCE_DIR}/system/xmllib
Expand Down
62 changes: 31 additions & 31 deletions ecl/eclplus/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,53 +15,54 @@
################################################################################


# Component: eclplus
# Component: eclplus
#####################################################
# Description:
# ------------
# Cmake Input File for eclplus
#####################################################

project( eclplus )
project( eclplus )

include(${HPCC_SOURCE_DIR}/esp/scm/smcscm.cmake)
include(${HPCC_SOURCE_DIR}/esp/scm/espscm.cmake)


set ( SRCS
../../esp/bindings/bindutil.cpp
set ( SRCS
../../esp/bindings/bindutil.cpp
${ESPSCM_GENERATED_DIR}/common_esp.cpp
${ESPSCM_GENERATED_DIR}/ws_workunits_struct_esp.cpp
${ESPSCM_GENERATED_DIR}/ws_workunits_req_resp_esp.cpp
${ESPSCM_GENERATED_DIR}/ws_workunits_queryset_req_resp_esp.cpp
${ESPSCM_GENERATED_DIR}/ws_workunits_esp.cpp
${ESPSCM_GENERATED_DIR}/ws_workunits_esp.cpp
${ESPSCM_GENERATED_DIR}/ws_logaccess_esp.cpp
DeleteHelper.cpp
DumpHelper.cpp
eclplus.cpp
formattypes.cpp
ListHelper.cpp
main.cpp
QueryHelper.cpp
ViewHelper.cpp
DeleteHelper.cpp
DumpHelper.cpp
eclplus.cpp
formattypes.cpp
ListHelper.cpp
main.cpp
QueryHelper.cpp
ViewHelper.cpp
)

include_directories (
include_directories (
./../../system/security/shared
./../../system/mp
./../../common/dllserver
./../../common/fileview2
./../../common/workunit
./../../esp/clients
./../../common/environment
./../../esp/bindings/SOAP/xpp
./../../system/include
./../../esp/bindings
./../../ecl/hql
./../../dali/base
./../../esp/platform
./../../system/jlib
./../../system/xmllib
./../../system/mp
./../../common/dllserver
./../../common/fileview2
./../../common/workunit
./../../esp/clients
./../../common/environment
./../../esp/bindings/SOAP/xpp
./../../system/include
./../../esp/bindings
${HPCC_SOURCE_DIR}/esp/esdllib
./../../ecl/hql
./../../dali/base
./../../esp/platform
./../../system/jlib
./../../system/xmllib
${HPCC_SOURCE_DIR}/common/thorhelper
)

Expand All @@ -70,8 +71,7 @@ ADD_DEFINITIONS( -DECLPLUS_EXPORTS -D_CONSOLE -DWSWU_API_LOCAL -Dws_logaccess_AP
HPCC_ADD_EXECUTABLE ( eclplus ${SRCS} )
add_dependencies ( eclplus espscm )
install ( TARGETS eclplus RUNTIME DESTINATION ${EXEC_DIR} )
target_link_libraries ( eclplus
target_link_libraries ( eclplus
jlib
esphttp
esphttp
)

Loading

0 comments on commit f5cc2ad

Please sign in to comment.