Commit 5e2042d47fea7c209d3cf2e1a6439ecd1392db0c
1 parent
3710904b
add minimal website example and AMI test example, sync with xlib 1.14.210103
Showing
9 changed files
with
536 additions
and
210 deletions
Show diff stats
.gitignore
| 1 | +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
| 2 | + <PropertyGroup> | |
| 3 | + <ProjectGuid>{C1016FEA-33CF-4348-8EEA-E4E4243CD9D1}</ProjectGuid> | |
| 4 | + <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | |
| 5 | + <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | |
| 6 | + <OutputType>Exe</OutputType> | |
| 7 | + <RootNamespace>ami_test</RootNamespace> | |
| 8 | + <AssemblyName>ami_test</AssemblyName> | |
| 9 | + <StartupObject>xlib_test\asterisk\ami_test.anubis</StartupObject> | |
| 10 | + <IncludePaths>./</IncludePaths> | |
| 11 | + </PropertyGroup> | |
| 12 | + <PropertyGroup Condition=" '$(Configuration)' == 'Debug' "> | |
| 13 | + <OutputPath>bin\Debug\</OutputPath> | |
| 14 | + <DebugSymbols>True</DebugSymbols> | |
| 15 | + <DebugType>Full</DebugType> | |
| 16 | + <Optimize>False</Optimize> | |
| 17 | + </PropertyGroup> | |
| 18 | + <PropertyGroup Condition=" '$(Configuration)' == 'Release' "> | |
| 19 | + <OutputPath>bin\Release\</OutputPath> | |
| 20 | + <DebugSymbols>False</DebugSymbols> | |
| 21 | + <DebugType>None</DebugType> | |
| 22 | + <Optimize>True</Optimize> | |
| 23 | + </PropertyGroup> | |
| 24 | + <Import Project="$(AnubisBinPath)\Anubis.Build.targets" /> | |
| 25 | + <ItemGroup> | |
| 26 | + <Folder Include="xlib" /> | |
| 27 | + <Folder Include="xlib\asterisk" /> | |
| 28 | + <Folder Include="xlib\database" /> | |
| 29 | + <Folder Include="xlib\database\model" /> | |
| 30 | + <Folder Include="xlib\database\types" /> | |
| 31 | + <Folder Include="xlib\ds_files" /> | |
| 32 | + <Folder Include="xlib\extensions" /> | |
| 33 | + <Folder Include="xlib\file_processor_io" /> | |
| 34 | + <Folder Include="xlib\file_processor_io\yaml" /> | |
| 35 | + <Folder Include="xlib\generic" /> | |
| 36 | + <Folder Include="xlib\generic\types" /> | |
| 37 | + <Folder Include="xlib\mail" /> | |
| 38 | + <Folder Include="xlib\mail\lexers" /> | |
| 39 | + <Folder Include="xlib\mail\types" /> | |
| 40 | + <Folder Include="xlib\mail\types\generated" /> | |
| 41 | + <Folder Include="xlib\network" /> | |
| 42 | + <Folder Include="xlib\net_services" /> | |
| 43 | + <Folder Include="xlib\net_services_protocols" /> | |
| 44 | + <Folder Include="xlib\obj" /> | |
| 45 | + <Folder Include="xlib\os_tools" /> | |
| 46 | + <Folder Include="xlib\os_tools\freebsd" /> | |
| 47 | + <Folder Include="xlib\os_tools\linux" /> | |
| 48 | + <Folder Include="xlib\os_tools\linux\config" /> | |
| 49 | + <Folder Include="xlib\string" /> | |
| 50 | + <Folder Include="xlib\types" /> | |
| 51 | + <Folder Include="xlib\types\generated" /> | |
| 52 | + <Folder Include="xlib\unit_test" /> | |
| 53 | + <Folder Include="xlib\web" /> | |
| 54 | + <Folder Include="xlib\web\color" /> | |
| 55 | + <Folder Include="xlib\web\fonts" /> | |
| 56 | + <Folder Include="xlib\web\jQuery" /> | |
| 57 | + <Folder Include="xlib\web\jQuery\ui-addon" /> | |
| 58 | + <Folder Include="xlib\web\js" /> | |
| 59 | + <Folder Include="xlib\web\piwik" /> | |
| 60 | + <Folder Include="xlib\web\plugin" /> | |
| 61 | + <Folder Include="xlib\web\types" /> | |
| 62 | + <Folder Include="xlib\web\widgets" /> | |
| 63 | + <Folder Include="xlib\web_controllers" /> | |
| 64 | + <Folder Include="xlib\web_controllers\fs" /> | |
| 65 | + <Folder Include="xlib\web_controllers\language" /> | |
| 66 | + <Folder Include="xlib_examples" /> | |
| 67 | + <Folder Include="xlib_examples\web" /> | |
| 68 | + <Folder Include="xlib_examples\web\bin" /> | |
| 69 | + <Folder Include="xlib_examples\web\bin\Debug" /> | |
| 70 | + <Folder Include="xlib_examples\web\obj" /> | |
| 71 | + <Folder Include="xlib_examples\web\obj\Debug" /> | |
| 72 | + <Folder Include="xlib_test" /> | |
| 73 | + <Folder Include="xlib_test\asterisk" /> | |
| 74 | + <Folder Include="xlib_test\asterisk\bin" /> | |
| 75 | + <Folder Include="xlib_test\asterisk\bin\Debug" /> | |
| 76 | + <Folder Include="xlib_test\asterisk\obj" /> | |
| 77 | + <Folder Include="xlib_test\asterisk\obj\Debug" /> | |
| 78 | + <Compile Include="xlib\asterisk\ami.anubis" /> | |
| 79 | + <Compile Include="xlib\asterisk\ami_commands.anubis" /> | |
| 80 | + <Compile Include="xlib\asterisk\ami_types.anubis" /> | |
| 81 | + <Compile Include="xlib\CXM_errors.anubis" /> | |
| 82 | + <Compile Include="xlib\CXM_message_constants.anubis" /> | |
| 83 | + <Compile Include="xlib\database\alter_table.anubis" /> | |
| 84 | + <Compile Include="xlib\database\csv_import_status.anubis" /> | |
| 85 | + <Compile Include="xlib\database\csv_tools.anubis" /> | |
| 86 | + <Compile Include="xlib\database\db_binds.anubis" /> | |
| 87 | + <Compile Include="xlib\database\db_get_helpers.anubis" /> | |
| 88 | + <Compile Include="xlib\database\db_types.anubis" /> | |
| 89 | + <Compile Include="xlib\database\db_update_fields.anubis" /> | |
| 90 | + <Compile Include="xlib\database\db_utils.anubis" /> | |
| 91 | + <Compile Include="xlib\database\db_version.anubis" /> | |
| 92 | + <Compile Include="xlib\database\migration.anubis" /> | |
| 93 | + <Compile Include="xlib\database\migration_common.anubis" /> | |
| 94 | + <Compile Include="xlib\database\migration_common_sqlite3.anubis" /> | |
| 95 | + <Compile Include="xlib\database\migration_sqlite3.anubis" /> | |
| 96 | + <Compile Include="xlib\database\model\db_model.anubis" /> | |
| 97 | + <Compile Include="xlib\database\settings.anubis" /> | |
| 98 | + <Compile Include="xlib\database\settings_sqlite3.anubis" /> | |
| 99 | + <Compile Include="xlib\database\sqlite_foreign_key.anubis" /> | |
| 100 | + <Compile Include="xlib\database\types\db_date.anubis" /> | |
| 101 | + <Compile Include="xlib\database\types\db_datetime.anubis" /> | |
| 102 | + <Compile Include="xlib\database\types\db_id.anubis" /> | |
| 103 | + <Compile Include="xlib\database\types\db_integer.anubis" /> | |
| 104 | + <Compile Include="xlib\database\types\db_migration.anubis" /> | |
| 105 | + <Compile Include="xlib\database\types\db_time.anubis" /> | |
| 106 | + <Compile Include="xlib\densaku_types.anubis" /> | |
| 107 | + <Compile Include="xlib\ds_files\ds_messages.anubis" /> | |
| 108 | + <Compile Include="xlib\ds_files\ds_types.anubis" /> | |
| 109 | + <Compile Include="xlib\extensions\json.anubis" /> | |
| 110 | + <Compile Include="xlib\file_processor_io\yaml\yaml.anubis" /> | |
| 111 | + <Compile Include="xlib\file_processor_io\yaml\yaml_parser.anubis" /> | |
| 112 | + <Compile Include="xlib\file_processor_io\yaml\yaml_type.anubis" /> | |
| 113 | + <Compile Include="xlib\generic\session.anubis" /> | |
| 114 | + <Compile Include="xlib\generic\types\session.anubis" /> | |
| 115 | + <Compile Include="xlib\generic\types\stepper.anubis" /> | |
| 116 | + <Compile Include="xlib\mail\authentication.anubis" /> | |
| 117 | + <Compile Include="xlib\mail\compose_email.anubis" /> | |
| 118 | + <Compile Include="xlib\mail\decode_mail.anubis" /> | |
| 119 | + <Compile Include="xlib\mail\encode_mail.anubis" /> | |
| 120 | + <Compile Include="xlib\mail\lexers\enhanced_status.anubis" /> | |
| 121 | + <Compile Include="xlib\mail\lexers\fqa.anubis" /> | |
| 122 | + <Compile Include="xlib\mail\send_mail.anubis" /> | |
| 123 | + <Compile Include="xlib\mail\send_mail_type.anubis" /> | |
| 124 | + <Compile Include="xlib\mail\smtp_client.anubis" /> | |
| 125 | + <Compile Include="xlib\mail\smtp_server_extensions.anubis" /> | |
| 126 | + <Compile Include="xlib\mail\tools.anubis" /> | |
| 127 | + <Compile Include="xlib\mail\types\generated\email_address.anubis" /> | |
| 128 | + <Compile Include="xlib\mail\types\generated\email_to_send.anubis" /> | |
| 129 | + <Compile Include="xlib\network\socket_pool.anubis" /> | |
| 130 | + <Compile Include="xlib\net_services\CXM_generic_client.anubis" /> | |
| 131 | + <Compile Include="xlib\net_services\CXM_generic_protocol.anubis" /> | |
| 132 | + <Compile Include="xlib\net_services\CXM_net_services.anubis" /> | |
| 133 | + <Compile Include="xlib\net_services\get_file.anubis" /> | |
| 134 | + <Compile Include="xlib\net_services\send_file.anubis" /> | |
| 135 | + <Compile Include="xlib\net_services_protocols\ftp_client.anubis" /> | |
| 136 | + <Compile Include="xlib\net_services_protocols\logger_client.anubis" /> | |
| 137 | + <Compile Include="xlib\net_services_protocols\logger_server.anubis" /> | |
| 138 | + <Compile Include="xlib\net_services_protocols\logger_service_deprecated.anubis" /> | |
| 139 | + <Compile Include="xlib\net_services_protocols\logger_test.anubis" /> | |
| 140 | + <Compile Include="xlib\net_services_protocols\pkg_updater_protocol.anubis" /> | |
| 141 | + <Compile Include="xlib\os_tools\freebsd\rc_conf.anubis" /> | |
| 142 | + <Compile Include="xlib\os_tools\linux\config\network_interface_file.anubis" /> | |
| 143 | + <Compile Include="xlib\string\crlf.anubis" /> | |
| 144 | + <Compile Include="xlib\types\generated\file_ref.anubis" /> | |
| 145 | + <Compile Include="xlib\types\version.anubis" /> | |
| 146 | + <Compile Include="xlib\unit_test\test.anubis" /> | |
| 147 | + <Compile Include="xlib\unit_test\xml_rpc.unit_test.anubis" /> | |
| 148 | + <Compile Include="xlib\web\color\color.anubis" /> | |
| 149 | + <Compile Include="xlib\web\controllers_web_site.anubis" /> | |
| 150 | + <Compile Include="xlib\web\counter.anubis" /> | |
| 151 | + <Compile Include="xlib\web\CXM_common.anubis" /> | |
| 152 | + <Compile Include="xlib\web\CXM_cookies.anubis" /> | |
| 153 | + <Compile Include="xlib\web\CXM_dojo.anubis" /> | |
| 154 | + <Compile Include="xlib\web\CXM_dropzone.anubis" /> | |
| 155 | + <Compile Include="xlib\web\CXM_form.anubis" /> | |
| 156 | + <Compile Include="xlib\web\CXM_generic_form.anubis" /> | |
| 157 | + <Compile Include="xlib\web\CXM_generic_login.anubis" /> | |
| 158 | + <Compile Include="xlib\web\CXM_generic_table.anubis" /> | |
| 159 | + <Compile Include="xlib\web\CXM_html_tooltip.anubis" /> | |
| 160 | + <Compile Include="xlib\web\CXM_https_get.anubis" /> | |
| 161 | + <Compile Include="xlib\web\CXM_http_get.anubis" /> | |
| 162 | + <Compile Include="xlib\web\CXM_http_get_common.anubis" /> | |
| 163 | + <Compile Include="xlib\web\CXM_jquery.anubis" /> | |
| 164 | + <Compile Include="xlib\web\CXM_json.anubis" /> | |
| 165 | + <Compile Include="xlib\web\CXM_making_a_web_site.anubis" /> | |
| 166 | + <Compile Include="xlib\web\CXM_mime.anubis" /> | |
| 167 | + <Compile Include="xlib\web\CXM_multihost_http_server.anubis" /> | |
| 168 | + <Compile Include="xlib\web\CXM_page_message.anubis" /> | |
| 169 | + <Compile Include="xlib\web\CXM_style_tools.anubis" /> | |
| 170 | + <Compile Include="xlib\web\CXM_urllib.anubis" /> | |
| 171 | + <Compile Include="xlib\web\CXM_web_action.anubis" /> | |
| 172 | + <Compile Include="xlib\web\CXM_web_arg_encode.anubis" /> | |
| 173 | + <Compile Include="xlib\web\CXM_web_arg_utils.anubis" /> | |
| 174 | + <Compile Include="xlib\web\CXM_web_dump.anubis" /> | |
| 175 | + <Compile Include="xlib\web\CXM_web_session.anubis" /> | |
| 176 | + <Compile Include="xlib\web\CXM_widgets.anubis" /> | |
| 177 | + <Compile Include="xlib\web\CXM_xml_rpc.anubis" /> | |
| 178 | + <Compile Include="xlib\web\CXM_xml_rpc_parser.anubis" /> | |
| 179 | + <Compile Include="xlib\web\CXM_xml_rpc_types.anubis" /> | |
| 180 | + <Compile Include="xlib\web\fonts\awesome.anubis" /> | |
| 181 | + <Compile Include="xlib\web\jQuery\CXM_jquery_animate.anubis" /> | |
| 182 | + <Compile Include="xlib\web\jQuery\CXM_jquery_button.anubis" /> | |
| 183 | + <Compile Include="xlib\web\jQuery\CXM_jquery_datatable.anubis" /> | |
| 184 | + <Compile Include="xlib\web\jQuery\CXM_jquery_datatable_plugins.anubis" /> | |
| 185 | + <Compile Include="xlib\web\jQuery\CXM_jquery_datatable_server_side.anubis" /> | |
| 186 | + <Compile Include="xlib\web\jQuery\CXM_jquery_datatable_translation.anubis" /> | |
| 187 | + <Compile Include="xlib\web\jQuery\CXM_jquery_datatable_types.anubis" /> | |
| 188 | + <Compile Include="xlib\web\jQuery\CXM_jquery_dialog.anubis" /> | |
| 189 | + <Compile Include="xlib\web\jQuery\CXM_jquery_easing.anubis" /> | |
| 190 | + <Compile Include="xlib\web\jQuery\CXM_jquery_eudock.anubis" /> | |
| 191 | + <Compile Include="xlib\web\jQuery\CXM_jquery_eudock_types.anubis" /> | |
| 192 | + <Compile Include="xlib\web\jQuery\CXM_jquery_icons.anubis" /> | |
| 193 | + <Compile Include="xlib\web\jQuery\CXM_jquery_jqplot.anubis" /> | |
| 194 | + <Compile Include="xlib\web\jQuery\CXM_jquery_tabs.anubis" /> | |
| 195 | + <Compile Include="xlib\web\jQuery\CXM_jquery_tiptip.anubis" /> | |
| 196 | + <Compile Include="xlib\web\jQuery\CXM_jquery_toolbar.anubis" /> | |
| 197 | + <Compile Include="xlib\web\jQuery\CXM_jq_checkbox.anubis" /> | |
| 198 | + <Compile Include="xlib\web\jQuery\CXM_jq_form.anubis" /> | |
| 199 | + <Compile Include="xlib\web\jQuery\CXM_jq_radio.anubis" /> | |
| 200 | + <Compile Include="xlib\web\jQuery\jqgrid.anubis" /> | |
| 201 | + <Compile Include="xlib\web\jQuery\jq_flot.anubis" /> | |
| 202 | + <Compile Include="xlib\web\jQuery\ui-addon\datetimepicker.anubis" /> | |
| 203 | + <Compile Include="xlib\web\js_tools.anubis" /> | |
| 204 | + <Compile Include="xlib\web\load_content.anubis" /> | |
| 205 | + <Compile Include="xlib\web\piwik\CXM_piwik.anubis" /> | |
| 206 | + <Compile Include="xlib\web\plugin\plugin.anubis" /> | |
| 207 | + <Compile Include="xlib\web\types\controllers_web_site.anubis" /> | |
| 208 | + <Compile Include="xlib\web\types\making_a_web_site.anubis" /> | |
| 209 | + <Compile Include="xlib\web\types\web_action_name.anubis" /> | |
| 210 | + <Compile Include="xlib\web\types\web_session.anubis" /> | |
| 211 | + <Compile Include="xlib\web\types\XL_web_stepper.anubis" /> | |
| 212 | + <Compile Include="xlib\web\widgets\button.anubis" /> | |
| 213 | + <Compile Include="xlib\web\widgets\css_helper.anubis" /> | |
| 214 | + <Compile Include="xlib\web\widgets\dashboard.anubis" /> | |
| 215 | + <Compile Include="xlib\web\widgets\fisheye_menu.anubis" /> | |
| 216 | + <Compile Include="xlib\web\widgets\icon.anubis" /> | |
| 217 | + <Compile Include="xlib\web\widgets\icons_set.anubis" /> | |
| 218 | + <Compile Include="xlib\web\widgets\left_menu.anubis" /> | |
| 219 | + <Compile Include="xlib\web\widgets\left_menu_html.anubis" /> | |
| 220 | + <Compile Include="xlib\web\widgets\menu.anubis" /> | |
| 221 | + <Compile Include="xlib\web\widgets\pager.anubis" /> | |
| 222 | + <Compile Include="xlib\web\widgets\specialized_elements.anubis" /> | |
| 223 | + <Compile Include="xlib\web\XL_web_stepper.anubis" /> | |
| 224 | + <Compile Include="xlib\web_controllers\fs\fs_core.anubis" /> | |
| 225 | + <Compile Include="xlib\web_controllers\language\language_management.anubis" /> | |
| 226 | + <Compile Include="xlib\web_controllers\language\load_web_controller.anubis" /> | |
| 227 | + <Compile Include="xlib_examples\web\minimal_web_site.anubis" /> | |
| 228 | + <Compile Include="xlib_examples\web\minimal_web_site_vc.anubis" /> | |
| 229 | + <Compile Include="xlib_test\asterisk\ami_test.anubis" /> | |
| 230 | + <None Include="xlib\.git" /> | |
| 231 | + <None Include="xlib\.gitignore" /> | |
| 232 | + <None Include="xlib\examples.ide" /> | |
| 233 | + <None Include="xlib\minimal_web_site.aproj" /> | |
| 234 | + <None Include="xlib\obj\unit_test.aproj.FileListAbsolute.txt" /> | |
| 235 | + <None Include="xlib\unit_test.aproj" /> | |
| 236 | + <None Include="xlib\unit_test.ide" /> | |
| 237 | + <None Include="xlib\web\js\cxm_jquery_animate.js" /> | |
| 238 | + </ItemGroup> | |
| 239 | +</Project> | |
| 0 | 240 | \ No newline at end of file | ... | ... |
| 1 | + | |
| 2 | +Microsoft Visual Studio Solution File, Format Version 9.00 | |
| 3 | +# Visual Studio 2005 | |
| 4 | +# SharpDevelop 1.0.12.108 | |
| 5 | +Project("{B6712916-30DE-4a3e-A54C-2A79AC984AEE}") = "ami_test", "ami_test.aproj", "{C1016FEA-33CF-4348-8EEA-E4E4243CD9D1}" | |
| 6 | +EndProject | |
| 7 | +Global | |
| 8 | + GlobalSection(SolutionConfigurationPlatforms) = preSolution | |
| 9 | + Debug|Any CPU = Debug|Any CPU | |
| 10 | + Release|Any CPU = Release|Any CPU | |
| 11 | + EndGlobalSection | |
| 12 | + GlobalSection(ProjectConfigurationPlatforms) = postSolution | |
| 13 | + {C1016FEA-33CF-4348-8EEA-E4E4243CD9D1}.Debug|Any CPU.Build.0 = Debug|Any CPU | |
| 14 | + {C1016FEA-33CF-4348-8EEA-E4E4243CD9D1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | |
| 15 | + {C1016FEA-33CF-4348-8EEA-E4E4243CD9D1}.Release|Any CPU.Build.0 = Release|Any CPU | |
| 16 | + {C1016FEA-33CF-4348-8EEA-E4E4243CD9D1}.Release|Any CPU.ActiveCfg = Release|Any CPU | |
| 17 | + EndGlobalSection | |
| 18 | +EndGlobal | ... | ... |
44.2 KB
minimal_web_site.aproj
| ... | ... | @@ -6,7 +6,7 @@ |
| 6 | 6 | <OutputType>Exe</OutputType> |
| 7 | 7 | <RootNamespace>minimal_web_site</RootNamespace> |
| 8 | 8 | <AssemblyName>minimal_web_site</AssemblyName> |
| 9 | - <StartupObject>calexium_lib_examples\web\minimal_web_site_vc.anubis</StartupObject> | |
| 9 | + <StartupObject>xlib_examples\web\minimal_web_site_vc.anubis</StartupObject> | |
| 10 | 10 | <IncludePaths>./%3b./../</IncludePaths> |
| 11 | 11 | </PropertyGroup> |
| 12 | 12 | <PropertyGroup Condition=" '$(Configuration)' == 'Debug' "> |
| ... | ... | @@ -23,205 +23,210 @@ |
| 23 | 23 | </PropertyGroup> |
| 24 | 24 | <Import Project="$(AnubisBinPath)\Anubis.Build.targets" /> |
| 25 | 25 | <ItemGroup> |
| 26 | - <Folder Include="calexium_lib" /> | |
| 27 | - <Folder Include="calexium_lib\asterisk" /> | |
| 28 | - <Folder Include="calexium_lib\bin" /> | |
| 29 | - <Folder Include="calexium_lib\bin\Debug" /> | |
| 30 | - <Folder Include="calexium_lib\database" /> | |
| 31 | - <Folder Include="calexium_lib\database\model" /> | |
| 32 | - <Folder Include="calexium_lib\database\types" /> | |
| 33 | - <Folder Include="calexium_lib\ds_files" /> | |
| 34 | - <Folder Include="calexium_lib\examples" /> | |
| 35 | - <Folder Include="calexium_lib\extensions" /> | |
| 36 | - <Folder Include="calexium_lib\file_processor_io" /> | |
| 37 | - <Folder Include="calexium_lib\file_processor_io\yaml" /> | |
| 38 | - <Folder Include="calexium_lib\generic\types" /> | |
| 39 | - <Folder Include="calexium_lib\mail" /> | |
| 40 | - <Folder Include="calexium_lib\mail\lexers" /> | |
| 41 | - <Folder Include="calexium_lib\mail\types" /> | |
| 42 | - <Folder Include="calexium_lib\mail\types\generated" /> | |
| 43 | - <Folder Include="calexium_lib\network" /> | |
| 44 | - <Folder Include="calexium_lib\net_services" /> | |
| 45 | - <Folder Include="calexium_lib\net_services_protocols" /> | |
| 46 | - <Folder Include="calexium_lib\generic" /> | |
| 47 | - <Folder Include="calexium_lib\obj" /> | |
| 48 | - <Folder Include="calexium_lib\obj\Debug" /> | |
| 49 | - <Folder Include="calexium_lib\os_tools" /> | |
| 50 | - <Folder Include="calexium_lib\os_tools\freebsd" /> | |
| 51 | - <Folder Include="calexium_lib\os_tools\linux" /> | |
| 52 | - <Folder Include="calexium_lib\os_tools\linux\config" /> | |
| 53 | - <Folder Include="calexium_lib\string" /> | |
| 54 | - <Folder Include="calexium_lib\types" /> | |
| 55 | - <Folder Include="calexium_lib\types\generated" /> | |
| 56 | - <Folder Include="calexium_lib\unit_test" /> | |
| 57 | - <Folder Include="calexium_lib\web" /> | |
| 58 | - <Folder Include="calexium_lib\web\color" /> | |
| 59 | - <Folder Include="calexium_lib\web\fonts" /> | |
| 60 | - <Folder Include="calexium_lib\web\jQuery" /> | |
| 61 | - <Folder Include="calexium_lib\web\jQuery\ui-addon" /> | |
| 62 | - <Folder Include="calexium_lib\web\js" /> | |
| 63 | - <Folder Include="calexium_lib\web\piwik" /> | |
| 64 | - <Folder Include="calexium_lib\web\plugin" /> | |
| 65 | - <Folder Include="calexium_lib\web\types" /> | |
| 66 | - <Folder Include="calexium_lib\web\widgets" /> | |
| 67 | - <Folder Include="calexium_lib_examples" /> | |
| 68 | - <Folder Include="calexium_lib_examples\web" /> | |
| 69 | - <Compile Include="calexium_lib\asterisk\ami.anubis" /> | |
| 70 | - <Compile Include="calexium_lib\asterisk\ami_commands.anubis" /> | |
| 71 | - <Compile Include="calexium_lib\asterisk\ami_types.anubis" /> | |
| 72 | - <Compile Include="calexium_lib\CXM_errors.anubis" /> | |
| 73 | - <Compile Include="calexium_lib\CXM_message_constants.anubis" /> | |
| 74 | - <Compile Include="calexium_lib\database\alter_table.anubis" /> | |
| 75 | - <Compile Include="calexium_lib\database\csv_import_status.anubis" /> | |
| 76 | - <Compile Include="calexium_lib\database\csv_tools.anubis" /> | |
| 77 | - <Compile Include="calexium_lib\database\db_binds.anubis" /> | |
| 78 | - <Compile Include="calexium_lib\database\db_get_helpers.anubis" /> | |
| 79 | - <Compile Include="calexium_lib\database\db_types.anubis" /> | |
| 80 | - <Compile Include="calexium_lib\database\db_update_fields.anubis" /> | |
| 81 | - <Compile Include="calexium_lib\database\db_utils.anubis" /> | |
| 82 | - <Compile Include="calexium_lib\database\db_version.anubis" /> | |
| 83 | - <Compile Include="calexium_lib\database\migration.anubis" /> | |
| 84 | - <Compile Include="calexium_lib\database\migration_common.anubis" /> | |
| 85 | - <Compile Include="calexium_lib\database\migration_common_sqlite3.anubis" /> | |
| 86 | - <Compile Include="calexium_lib\database\migration_sqlite3.anubis" /> | |
| 87 | - <Compile Include="calexium_lib\database\model\db_model.anubis" /> | |
| 88 | - <Compile Include="calexium_lib\database\settings.anubis" /> | |
| 89 | - <Compile Include="calexium_lib\database\settings_sqlite3.anubis" /> | |
| 90 | - <Compile Include="calexium_lib\database\sqlite_foreign_key.anubis" /> | |
| 91 | - <Compile Include="calexium_lib\database\types\db_date.anubis" /> | |
| 92 | - <Compile Include="calexium_lib\database\types\db_datetime.anubis" /> | |
| 93 | - <Compile Include="calexium_lib\database\types\db_id.anubis" /> | |
| 94 | - <Compile Include="calexium_lib\database\types\db_integer.anubis" /> | |
| 95 | - <Compile Include="calexium_lib\database\types\db_migration.anubis" /> | |
| 96 | - <Compile Include="calexium_lib\database\types\db_time.anubis" /> | |
| 97 | - <Compile Include="calexium_lib\densaku_types.anubis" /> | |
| 98 | - <Compile Include="calexium_lib\ds_files\ds_messages.anubis" /> | |
| 99 | - <Compile Include="calexium_lib\ds_files\ds_types.anubis" /> | |
| 100 | - <Compile Include="calexium_lib\examples\minimal_web_site.anubis" /> | |
| 101 | - <Compile Include="calexium_lib\examples\minimal_web_site_vc.anubis" /> | |
| 102 | - <Compile Include="calexium_lib\extensions\json.anubis" /> | |
| 103 | - <Compile Include="calexium_lib\file_processor_io\yaml\yaml.anubis" /> | |
| 104 | - <Compile Include="calexium_lib\file_processor_io\yaml\yaml_parser.anubis" /> | |
| 105 | - <Compile Include="calexium_lib\file_processor_io\yaml\yaml_type.anubis" /> | |
| 106 | - <Compile Include="calexium_lib\generic\session.anubis" /> | |
| 107 | - <Compile Include="calexium_lib\generic\types\session.anubis" /> | |
| 108 | - <Compile Include="calexium_lib\mail\authentication.anubis" /> | |
| 109 | - <Compile Include="calexium_lib\mail\compose_email.anubis" /> | |
| 110 | - <Compile Include="calexium_lib\mail\decode_mail.anubis" /> | |
| 111 | - <Compile Include="calexium_lib\mail\encode_mail.anubis" /> | |
| 112 | - <Compile Include="calexium_lib\mail\lexers\enhanced_status.anubis" /> | |
| 113 | - <Compile Include="calexium_lib\mail\lexers\fqa.anubis" /> | |
| 114 | - <Compile Include="calexium_lib\mail\send_mail.anubis" /> | |
| 115 | - <Compile Include="calexium_lib\mail\send_mail_type.anubis" /> | |
| 116 | - <Compile Include="calexium_lib\mail\smtp_client.anubis" /> | |
| 117 | - <Compile Include="calexium_lib\mail\smtp_server_extensions.anubis" /> | |
| 118 | - <Compile Include="calexium_lib\mail\tools.anubis" /> | |
| 119 | - <Compile Include="calexium_lib\mail\types\generated\email_address.anubis" /> | |
| 120 | - <Compile Include="calexium_lib\mail\types\generated\email_to_send.anubis" /> | |
| 121 | - <Compile Include="calexium_lib\network\socket_pool.anubis" /> | |
| 122 | - <Compile Include="calexium_lib\net_services\CXM_generic_client.anubis" /> | |
| 123 | - <Compile Include="calexium_lib\net_services\CXM_generic_protocol.anubis" /> | |
| 124 | - <Compile Include="calexium_lib\net_services\CXM_net_services.anubis" /> | |
| 125 | - <Compile Include="calexium_lib\net_services\get_file.anubis" /> | |
| 126 | - <Compile Include="calexium_lib\net_services\send_file.anubis" /> | |
| 127 | - <Compile Include="calexium_lib\net_services_protocols\ftp_client.anubis" /> | |
| 128 | - <Compile Include="calexium_lib\net_services_protocols\logger_client.anubis" /> | |
| 129 | - <Compile Include="calexium_lib\net_services_protocols\logger_server.anubis" /> | |
| 130 | - <Compile Include="calexium_lib\net_services_protocols\logger_service_deprecated.anubis" /> | |
| 131 | - <Compile Include="calexium_lib\net_services_protocols\logger_test.anubis" /> | |
| 132 | - <Compile Include="calexium_lib\net_services_protocols\pkg_updater_protocol.anubis" /> | |
| 133 | - <Compile Include="calexium_lib\os_tools\freebsd\rc_conf.anubis" /> | |
| 134 | - <Compile Include="calexium_lib\os_tools\linux\config\network_interface_file.anubis" /> | |
| 135 | - <Compile Include="calexium_lib\string\crlf.anubis" /> | |
| 136 | - <Compile Include="calexium_lib\types\generated\file_ref.anubis" /> | |
| 137 | - <Compile Include="calexium_lib\types\version.anubis" /> | |
| 138 | - <Compile Include="calexium_lib\unit_test\test.anubis" /> | |
| 139 | - <Compile Include="calexium_lib\unit_test\xml_rpc.unit_test.anubis" /> | |
| 140 | - <Compile Include="calexium_lib\web\color\color.anubis" /> | |
| 141 | - <Compile Include="calexium_lib\web\controllers_web_site.anubis" /> | |
| 142 | - <Compile Include="calexium_lib\web\counter.anubis" /> | |
| 143 | - <Compile Include="calexium_lib\web\CXM_common.anubis" /> | |
| 144 | - <Compile Include="calexium_lib\web\CXM_cookies.anubis" /> | |
| 145 | - <Compile Include="calexium_lib\web\CXM_dojo.anubis" /> | |
| 146 | - <Compile Include="calexium_lib\web\CXM_dropzone.anubis" /> | |
| 147 | - <Compile Include="calexium_lib\web\CXM_form.anubis" /> | |
| 148 | - <Compile Include="calexium_lib\web\CXM_generic_form.anubis" /> | |
| 149 | - <Compile Include="calexium_lib\web\CXM_generic_login.anubis" /> | |
| 150 | - <Compile Include="calexium_lib\web\CXM_generic_table.anubis" /> | |
| 151 | - <Compile Include="calexium_lib\web\CXM_html_tooltip.anubis" /> | |
| 152 | - <Compile Include="calexium_lib\web\CXM_https_get.anubis" /> | |
| 153 | - <Compile Include="calexium_lib\web\CXM_http_get.anubis" /> | |
| 154 | - <Compile Include="calexium_lib\web\CXM_http_get_common.anubis" /> | |
| 155 | - <Compile Include="calexium_lib\web\CXM_jquery.anubis" /> | |
| 156 | - <Compile Include="calexium_lib\web\CXM_json.anubis" /> | |
| 157 | - <Compile Include="calexium_lib\web\CXM_making_a_web_site.anubis" /> | |
| 158 | - <Compile Include="calexium_lib\web\CXM_mime.anubis" /> | |
| 159 | - <Compile Include="calexium_lib\web\CXM_multihost_http_server.anubis" /> | |
| 160 | - <Compile Include="calexium_lib\web\CXM_page_message.anubis" /> | |
| 161 | - <Compile Include="calexium_lib\web\CXM_style_tools.anubis" /> | |
| 162 | - <Compile Include="calexium_lib\web\CXM_urllib.anubis" /> | |
| 163 | - <Compile Include="calexium_lib\web\CXM_web_action.anubis" /> | |
| 164 | - <Compile Include="calexium_lib\web\CXM_web_arg_encode.anubis" /> | |
| 165 | - <Compile Include="calexium_lib\web\CXM_web_arg_utils.anubis" /> | |
| 166 | - <Compile Include="calexium_lib\web\CXM_web_dump.anubis" /> | |
| 167 | - <Compile Include="calexium_lib\web\CXM_web_session.anubis" /> | |
| 168 | - <Compile Include="calexium_lib\web\CXM_widgets.anubis" /> | |
| 169 | - <Compile Include="calexium_lib\web\CXM_xml_rpc.anubis" /> | |
| 170 | - <Compile Include="calexium_lib\web\CXM_xml_rpc_parser.anubis" /> | |
| 171 | - <Compile Include="calexium_lib\web\CXM_xml_rpc_types.anubis" /> | |
| 172 | - <Compile Include="calexium_lib\web\fonts\awesome.anubis" /> | |
| 173 | - <Compile Include="calexium_lib\web\jQuery\CXM_jquery_animate.anubis" /> | |
| 174 | - <Compile Include="calexium_lib\web\jQuery\CXM_jquery_button.anubis" /> | |
| 175 | - <Compile Include="calexium_lib\web\jQuery\CXM_jquery_datatable.anubis" /> | |
| 176 | - <Compile Include="calexium_lib\web\jQuery\CXM_jquery_datatable_plugins.anubis" /> | |
| 177 | - <Compile Include="calexium_lib\web\jQuery\CXM_jquery_datatable_server_side.anubis" /> | |
| 178 | - <Compile Include="calexium_lib\web\jQuery\CXM_jquery_datatable_translation.anubis" /> | |
| 179 | - <Compile Include="calexium_lib\web\jQuery\CXM_jquery_datatable_types.anubis" /> | |
| 180 | - <Compile Include="calexium_lib\web\jQuery\CXM_jquery_dialog.anubis" /> | |
| 181 | - <Compile Include="calexium_lib\web\jQuery\CXM_jquery_easing.anubis" /> | |
| 182 | - <Compile Include="calexium_lib\web\jQuery\CXM_jquery_eudock.anubis" /> | |
| 183 | - <Compile Include="calexium_lib\web\jQuery\CXM_jquery_eudock_types.anubis" /> | |
| 184 | - <Compile Include="calexium_lib\web\jQuery\CXM_jquery_icons.anubis" /> | |
| 185 | - <Compile Include="calexium_lib\web\jQuery\CXM_jquery_jqplot.anubis" /> | |
| 186 | - <Compile Include="calexium_lib\web\jQuery\CXM_jquery_tabs.anubis" /> | |
| 187 | - <Compile Include="calexium_lib\web\jQuery\CXM_jquery_tiptip.anubis" /> | |
| 188 | - <Compile Include="calexium_lib\web\jQuery\CXM_jquery_toolbar.anubis" /> | |
| 189 | - <Compile Include="calexium_lib\web\jQuery\CXM_jq_checkbox.anubis" /> | |
| 190 | - <Compile Include="calexium_lib\web\jQuery\CXM_jq_form.anubis" /> | |
| 191 | - <Compile Include="calexium_lib\web\jQuery\CXM_jq_radio.anubis" /> | |
| 192 | - <Compile Include="calexium_lib\web\jQuery\jqgrid.anubis" /> | |
| 193 | - <Compile Include="calexium_lib\web\jQuery\jq_flot.anubis" /> | |
| 194 | - <Compile Include="calexium_lib\web\jQuery\ui-addon\datetimepicker.anubis" /> | |
| 195 | - <Compile Include="calexium_lib\web\js_tools.anubis" /> | |
| 196 | - <Compile Include="calexium_lib\web\load_content.anubis" /> | |
| 197 | - <Compile Include="calexium_lib\web\piwik\CXM_piwik.anubis" /> | |
| 198 | - <Compile Include="calexium_lib\web\plugin\plugin.anubis" /> | |
| 199 | - <Compile Include="calexium_lib\web\types\controllers_web_site.anubis" /> | |
| 200 | - <Compile Include="calexium_lib\web\types\making_a_web_site.anubis" /> | |
| 201 | - <Compile Include="calexium_lib\web\types\web_action_name.anubis" /> | |
| 202 | - <Compile Include="calexium_lib\web\types\web_session.anubis" /> | |
| 203 | - <Compile Include="calexium_lib\web\widgets\button.anubis" /> | |
| 204 | - <Compile Include="calexium_lib\web\widgets\css_helper.anubis" /> | |
| 205 | - <Compile Include="calexium_lib\web\widgets\dashboard.anubis" /> | |
| 206 | - <Compile Include="calexium_lib\web\widgets\fisheye_menu.anubis" /> | |
| 207 | - <Compile Include="calexium_lib\web\widgets\icon.anubis" /> | |
| 208 | - <Compile Include="calexium_lib\web\widgets\icons_set.anubis" /> | |
| 209 | - <Compile Include="calexium_lib\web\widgets\left_menu.anubis" /> | |
| 210 | - <Compile Include="calexium_lib\web\widgets\left_menu_html.anubis" /> | |
| 211 | - <Compile Include="calexium_lib\web\widgets\menu.anubis" /> | |
| 212 | - <Compile Include="calexium_lib\web\widgets\pager.anubis" /> | |
| 213 | - <Compile Include="calexium_lib\web\widgets\specialized_elements.anubis" /> | |
| 214 | - <Compile Include="calexium_lib_examples\web\minimal_web_site.anubis" /> | |
| 215 | - <Compile Include="calexium_lib_examples\web\minimal_web_site_vc.anubis" /> | |
| 216 | - <None Include="calexium_lib\.git" /> | |
| 217 | - <None Include="calexium_lib\.gitignore" /> | |
| 218 | - <None Include="calexium_lib\examples.ide" /> | |
| 219 | - <None Include="calexium_lib\minimal_web_site.aproj" /> | |
| 220 | - <None Include="calexium_lib\minimal_web_site.ide" /> | |
| 221 | - <None Include="calexium_lib\obj\ami_test.aproj.FileListAbsolute.txt" /> | |
| 222 | - <None Include="calexium_lib\obj\unit_test.aproj.FileListAbsolute.txt" /> | |
| 223 | - <None Include="calexium_lib\unit_test.aproj" /> | |
| 224 | - <None Include="calexium_lib\unit_test.ide" /> | |
| 225 | - <None Include="calexium_lib\web\js\cxm_jquery_animate.js" /> | |
| 26 | + <Folder Include="xlib" /> | |
| 27 | + <Folder Include="xlib\asterisk" /> | |
| 28 | + <Folder Include="xlib\database" /> | |
| 29 | + <Folder Include="xlib\database\model" /> | |
| 30 | + <Folder Include="xlib\database\types" /> | |
| 31 | + <Folder Include="xlib\ds_files" /> | |
| 32 | + <Folder Include="xlib\extensions" /> | |
| 33 | + <Folder Include="xlib\file_processor_io" /> | |
| 34 | + <Folder Include="xlib\file_processor_io\yaml" /> | |
| 35 | + <Folder Include="xlib\generic" /> | |
| 36 | + <Folder Include="xlib\generic\types" /> | |
| 37 | + <Folder Include="xlib\mail" /> | |
| 38 | + <Folder Include="xlib\mail\lexers" /> | |
| 39 | + <Folder Include="xlib\mail\types" /> | |
| 40 | + <Folder Include="xlib\mail\types\generated" /> | |
| 41 | + <Folder Include="xlib\network" /> | |
| 42 | + <Folder Include="xlib\net_services" /> | |
| 43 | + <Folder Include="xlib\net_services_protocols" /> | |
| 44 | + <Folder Include="xlib\obj" /> | |
| 45 | + <Folder Include="xlib\os_tools" /> | |
| 46 | + <Folder Include="xlib\os_tools\freebsd" /> | |
| 47 | + <Folder Include="xlib\os_tools\linux" /> | |
| 48 | + <Folder Include="xlib\os_tools\linux\config" /> | |
| 49 | + <Folder Include="xlib\string" /> | |
| 50 | + <Folder Include="xlib\types" /> | |
| 51 | + <Folder Include="xlib\types\generated" /> | |
| 52 | + <Folder Include="xlib\unit_test" /> | |
| 53 | + <Folder Include="xlib\web" /> | |
| 54 | + <Folder Include="xlib\web\color" /> | |
| 55 | + <Folder Include="xlib\web\fonts" /> | |
| 56 | + <Folder Include="xlib\web\jQuery" /> | |
| 57 | + <Folder Include="xlib\web\jQuery\ui-addon" /> | |
| 58 | + <Folder Include="xlib\web\js" /> | |
| 59 | + <Folder Include="xlib\web\piwik" /> | |
| 60 | + <Folder Include="xlib\web\plugin" /> | |
| 61 | + <Folder Include="xlib\web\types" /> | |
| 62 | + <Folder Include="xlib\web\widgets" /> | |
| 63 | + <Folder Include="xlib\web_controllers" /> | |
| 64 | + <Folder Include="xlib\web_controllers\fs" /> | |
| 65 | + <Folder Include="xlib\web_controllers\language" /> | |
| 66 | + <Folder Include="xlib_examples" /> | |
| 67 | + <Folder Include="xlib_examples\web" /> | |
| 68 | + <Folder Include="xlib_examples\web\bin" /> | |
| 69 | + <Folder Include="xlib_examples\web\bin\Debug" /> | |
| 70 | + <Folder Include="xlib_examples\web\obj" /> | |
| 71 | + <Folder Include="xlib_examples\web\obj\Debug" /> | |
| 72 | + <Compile Include="xlib\asterisk\ami.anubis" /> | |
| 73 | + <Compile Include="xlib\asterisk\ami_commands.anubis" /> | |
| 74 | + <Compile Include="xlib\asterisk\ami_types.anubis" /> | |
| 75 | + <Compile Include="xlib\CXM_errors.anubis" /> | |
| 76 | + <Compile Include="xlib\CXM_message_constants.anubis" /> | |
| 77 | + <Compile Include="xlib\database\alter_table.anubis" /> | |
| 78 | + <Compile Include="xlib\database\csv_import_status.anubis" /> | |
| 79 | + <Compile Include="xlib\database\csv_tools.anubis" /> | |
| 80 | + <Compile Include="xlib\database\db_binds.anubis" /> | |
| 81 | + <Compile Include="xlib\database\db_get_helpers.anubis" /> | |
| 82 | + <Compile Include="xlib\database\db_types.anubis" /> | |
| 83 | + <Compile Include="xlib\database\db_update_fields.anubis" /> | |
| 84 | + <Compile Include="xlib\database\db_utils.anubis" /> | |
| 85 | + <Compile Include="xlib\database\db_version.anubis" /> | |
| 86 | + <Compile Include="xlib\database\migration.anubis" /> | |
| 87 | + <Compile Include="xlib\database\migration_common.anubis" /> | |
| 88 | + <Compile Include="xlib\database\migration_common_sqlite3.anubis" /> | |
| 89 | + <Compile Include="xlib\database\migration_sqlite3.anubis" /> | |
| 90 | + <Compile Include="xlib\database\model\db_model.anubis" /> | |
| 91 | + <Compile Include="xlib\database\settings.anubis" /> | |
| 92 | + <Compile Include="xlib\database\settings_sqlite3.anubis" /> | |
| 93 | + <Compile Include="xlib\database\sqlite_foreign_key.anubis" /> | |
| 94 | + <Compile Include="xlib\database\types\db_date.anubis" /> | |
| 95 | + <Compile Include="xlib\database\types\db_datetime.anubis" /> | |
| 96 | + <Compile Include="xlib\database\types\db_id.anubis" /> | |
| 97 | + <Compile Include="xlib\database\types\db_integer.anubis" /> | |
| 98 | + <Compile Include="xlib\database\types\db_migration.anubis" /> | |
| 99 | + <Compile Include="xlib\database\types\db_time.anubis" /> | |
| 100 | + <Compile Include="xlib\densaku_types.anubis" /> | |
| 101 | + <Compile Include="xlib\ds_files\ds_messages.anubis" /> | |
| 102 | + <Compile Include="xlib\ds_files\ds_types.anubis" /> | |
| 103 | + <Compile Include="xlib\extensions\json.anubis" /> | |
| 104 | + <Compile Include="xlib\file_processor_io\yaml\yaml.anubis" /> | |
| 105 | + <Compile Include="xlib\file_processor_io\yaml\yaml_parser.anubis" /> | |
| 106 | + <Compile Include="xlib\file_processor_io\yaml\yaml_type.anubis" /> | |
| 107 | + <Compile Include="xlib\generic\session.anubis" /> | |
| 108 | + <Compile Include="xlib\generic\types\session.anubis" /> | |
| 109 | + <Compile Include="xlib\generic\types\stepper.anubis" /> | |
| 110 | + <Compile Include="xlib\mail\authentication.anubis" /> | |
| 111 | + <Compile Include="xlib\mail\compose_email.anubis" /> | |
| 112 | + <Compile Include="xlib\mail\decode_mail.anubis" /> | |
| 113 | + <Compile Include="xlib\mail\encode_mail.anubis" /> | |
| 114 | + <Compile Include="xlib\mail\lexers\enhanced_status.anubis" /> | |
| 115 | + <Compile Include="xlib\mail\lexers\fqa.anubis" /> | |
| 116 | + <Compile Include="xlib\mail\send_mail.anubis" /> | |
| 117 | + <Compile Include="xlib\mail\send_mail_type.anubis" /> | |
| 118 | + <Compile Include="xlib\mail\smtp_client.anubis" /> | |
| 119 | + <Compile Include="xlib\mail\smtp_server_extensions.anubis" /> | |
| 120 | + <Compile Include="xlib\mail\tools.anubis" /> | |
| 121 | + <Compile Include="xlib\mail\types\generated\email_address.anubis" /> | |
| 122 | + <Compile Include="xlib\mail\types\generated\email_to_send.anubis" /> | |
| 123 | + <Compile Include="xlib\network\socket_pool.anubis" /> | |
| 124 | + <Compile Include="xlib\net_services\CXM_generic_client.anubis" /> | |
| 125 | + <Compile Include="xlib\net_services\CXM_generic_protocol.anubis" /> | |
| 126 | + <Compile Include="xlib\net_services\CXM_net_services.anubis" /> | |
| 127 | + <Compile Include="xlib\net_services\get_file.anubis" /> | |
| 128 | + <Compile Include="xlib\net_services\send_file.anubis" /> | |
| 129 | + <Compile Include="xlib\net_services_protocols\ftp_client.anubis" /> | |
| 130 | + <Compile Include="xlib\net_services_protocols\logger_client.anubis" /> | |
| 131 | + <Compile Include="xlib\net_services_protocols\logger_server.anubis" /> | |
| 132 | + <Compile Include="xlib\net_services_protocols\logger_service_deprecated.anubis" /> | |
| 133 | + <Compile Include="xlib\net_services_protocols\logger_test.anubis" /> | |
| 134 | + <Compile Include="xlib\net_services_protocols\pkg_updater_protocol.anubis" /> | |
| 135 | + <Compile Include="xlib\os_tools\freebsd\rc_conf.anubis" /> | |
| 136 | + <Compile Include="xlib\os_tools\linux\config\network_interface_file.anubis" /> | |
| 137 | + <Compile Include="xlib\string\crlf.anubis" /> | |
| 138 | + <Compile Include="xlib\types\generated\file_ref.anubis" /> | |
| 139 | + <Compile Include="xlib\types\version.anubis" /> | |
| 140 | + <Compile Include="xlib\unit_test\test.anubis" /> | |
| 141 | + <Compile Include="xlib\unit_test\xml_rpc.unit_test.anubis" /> | |
| 142 | + <Compile Include="xlib\web\color\color.anubis" /> | |
| 143 | + <Compile Include="xlib\web\controllers_web_site.anubis" /> | |
| 144 | + <Compile Include="xlib\web\counter.anubis" /> | |
| 145 | + <Compile Include="xlib\web\CXM_common.anubis" /> | |
| 146 | + <Compile Include="xlib\web\CXM_cookies.anubis" /> | |
| 147 | + <Compile Include="xlib\web\CXM_dojo.anubis" /> | |
| 148 | + <Compile Include="xlib\web\CXM_dropzone.anubis" /> | |
| 149 | + <Compile Include="xlib\web\CXM_form.anubis" /> | |
| 150 | + <Compile Include="xlib\web\CXM_generic_form.anubis" /> | |
| 151 | + <Compile Include="xlib\web\CXM_generic_login.anubis" /> | |
| 152 | + <Compile Include="xlib\web\CXM_generic_table.anubis" /> | |
| 153 | + <Compile Include="xlib\web\CXM_html_tooltip.anubis" /> | |
| 154 | + <Compile Include="xlib\web\CXM_https_get.anubis" /> | |
| 155 | + <Compile Include="xlib\web\CXM_http_get.anubis" /> | |
| 156 | + <Compile Include="xlib\web\CXM_http_get_common.anubis" /> | |
| 157 | + <Compile Include="xlib\web\CXM_jquery.anubis" /> | |
| 158 | + <Compile Include="xlib\web\CXM_json.anubis" /> | |
| 159 | + <Compile Include="xlib\web\CXM_making_a_web_site.anubis" /> | |
| 160 | + <Compile Include="xlib\web\CXM_mime.anubis" /> | |
| 161 | + <Compile Include="xlib\web\CXM_multihost_http_server.anubis" /> | |
| 162 | + <Compile Include="xlib\web\CXM_page_message.anubis" /> | |
| 163 | + <Compile Include="xlib\web\CXM_style_tools.anubis" /> | |
| 164 | + <Compile Include="xlib\web\CXM_urllib.anubis" /> | |
| 165 | + <Compile Include="xlib\web\CXM_web_action.anubis" /> | |
| 166 | + <Compile Include="xlib\web\CXM_web_arg_encode.anubis" /> | |
| 167 | + <Compile Include="xlib\web\CXM_web_arg_utils.anubis" /> | |
| 168 | + <Compile Include="xlib\web\CXM_web_dump.anubis" /> | |
| 169 | + <Compile Include="xlib\web\CXM_web_session.anubis" /> | |
| 170 | + <Compile Include="xlib\web\CXM_widgets.anubis" /> | |
| 171 | + <Compile Include="xlib\web\CXM_xml_rpc.anubis" /> | |
| 172 | + <Compile Include="xlib\web\CXM_xml_rpc_parser.anubis" /> | |
| 173 | + <Compile Include="xlib\web\CXM_xml_rpc_types.anubis" /> | |
| 174 | + <Compile Include="xlib\web\fonts\awesome.anubis" /> | |
| 175 | + <Compile Include="xlib\web\jQuery\CXM_jquery_animate.anubis" /> | |
| 176 | + <Compile Include="xlib\web\jQuery\CXM_jquery_button.anubis" /> | |
| 177 | + <Compile Include="xlib\web\jQuery\CXM_jquery_datatable.anubis" /> | |
| 178 | + <Compile Include="xlib\web\jQuery\CXM_jquery_datatable_plugins.anubis" /> | |
| 179 | + <Compile Include="xlib\web\jQuery\CXM_jquery_datatable_server_side.anubis" /> | |
| 180 | + <Compile Include="xlib\web\jQuery\CXM_jquery_datatable_translation.anubis" /> | |
| 181 | + <Compile Include="xlib\web\jQuery\CXM_jquery_datatable_types.anubis" /> | |
| 182 | + <Compile Include="xlib\web\jQuery\CXM_jquery_dialog.anubis" /> | |
| 183 | + <Compile Include="xlib\web\jQuery\CXM_jquery_easing.anubis" /> | |
| 184 | + <Compile Include="xlib\web\jQuery\CXM_jquery_eudock.anubis" /> | |
| 185 | + <Compile Include="xlib\web\jQuery\CXM_jquery_eudock_types.anubis" /> | |
| 186 | + <Compile Include="xlib\web\jQuery\CXM_jquery_icons.anubis" /> | |
| 187 | + <Compile Include="xlib\web\jQuery\CXM_jquery_jqplot.anubis" /> | |
| 188 | + <Compile Include="xlib\web\jQuery\CXM_jquery_tabs.anubis" /> | |
| 189 | + <Compile Include="xlib\web\jQuery\CXM_jquery_tiptip.anubis" /> | |
| 190 | + <Compile Include="xlib\web\jQuery\CXM_jquery_toolbar.anubis" /> | |
| 191 | + <Compile Include="xlib\web\jQuery\CXM_jq_checkbox.anubis" /> | |
| 192 | + <Compile Include="xlib\web\jQuery\CXM_jq_form.anubis" /> | |
| 193 | + <Compile Include="xlib\web\jQuery\CXM_jq_radio.anubis" /> | |
| 194 | + <Compile Include="xlib\web\jQuery\jqgrid.anubis" /> | |
| 195 | + <Compile Include="xlib\web\jQuery\jq_flot.anubis" /> | |
| 196 | + <Compile Include="xlib\web\jQuery\ui-addon\datetimepicker.anubis" /> | |
| 197 | + <Compile Include="xlib\web\js_tools.anubis" /> | |
| 198 | + <Compile Include="xlib\web\load_content.anubis" /> | |
| 199 | + <Compile Include="xlib\web\piwik\CXM_piwik.anubis" /> | |
| 200 | + <Compile Include="xlib\web\plugin\plugin.anubis" /> | |
| 201 | + <Compile Include="xlib\web\types\controllers_web_site.anubis" /> | |
| 202 | + <Compile Include="xlib\web\types\making_a_web_site.anubis" /> | |
| 203 | + <Compile Include="xlib\web\types\web_action_name.anubis" /> | |
| 204 | + <Compile Include="xlib\web\types\web_session.anubis" /> | |
| 205 | + <Compile Include="xlib\web\types\XL_web_stepper.anubis" /> | |
| 206 | + <Compile Include="xlib\web\widgets\button.anubis" /> | |
| 207 | + <Compile Include="xlib\web\widgets\css_helper.anubis" /> | |
| 208 | + <Compile Include="xlib\web\widgets\dashboard.anubis" /> | |
| 209 | + <Compile Include="xlib\web\widgets\fisheye_menu.anubis" /> | |
| 210 | + <Compile Include="xlib\web\widgets\icon.anubis" /> | |
| 211 | + <Compile Include="xlib\web\widgets\icons_set.anubis" /> | |
| 212 | + <Compile Include="xlib\web\widgets\left_menu.anubis" /> | |
| 213 | + <Compile Include="xlib\web\widgets\left_menu_html.anubis" /> | |
| 214 | + <Compile Include="xlib\web\widgets\menu.anubis" /> | |
| 215 | + <Compile Include="xlib\web\widgets\pager.anubis" /> | |
| 216 | + <Compile Include="xlib\web\widgets\specialized_elements.anubis" /> | |
| 217 | + <Compile Include="xlib\web\XL_web_stepper.anubis" /> | |
| 218 | + <Compile Include="xlib\web_controllers\fs\fs_core.anubis" /> | |
| 219 | + <Compile Include="xlib\web_controllers\language\language_management.anubis" /> | |
| 220 | + <Compile Include="xlib\web_controllers\language\load_web_controller.anubis" /> | |
| 221 | + <Compile Include="xlib_examples\web\minimal_web_site.anubis" /> | |
| 222 | + <Compile Include="xlib_examples\web\minimal_web_site_vc.anubis" /> | |
| 223 | + <None Include="xlib\.git" /> | |
| 224 | + <None Include="xlib\.gitignore" /> | |
| 225 | + <None Include="xlib\examples.ide" /> | |
| 226 | + <None Include="xlib\minimal_web_site.aproj" /> | |
| 227 | + <None Include="xlib\obj\unit_test.aproj.FileListAbsolute.txt" /> | |
| 228 | + <None Include="xlib\unit_test.aproj" /> | |
| 229 | + <None Include="xlib\unit_test.ide" /> | |
| 230 | + <None Include="xlib\web\js\cxm_jquery_animate.js" /> | |
| 226 | 231 | </ItemGroup> |
| 227 | 232 | </Project> |
| 228 | 233 | \ No newline at end of file | ... | ... |
| 1 | + | |
| 2 | +Microsoft Visual Studio Solution File, Format Version 9.00 | |
| 3 | +# Visual Studio 2005 | |
| 4 | +# SharpDevelop 1.0.12.108 | |
| 5 | +Project("{B6712916-30DE-4a3e-A54C-2A79AC984AEE}") = "minimal_web_site", "minimal_web_site.aproj", "{F2C65267-0D20-4964-A5D8-602BD42C01A4}" | |
| 6 | +EndProject | |
| 7 | +Global | |
| 8 | + GlobalSection(SolutionConfigurationPlatforms) = preSolution | |
| 9 | + Debug|Any CPU = Debug|Any CPU | |
| 10 | + Release|Any CPU = Release|Any CPU | |
| 11 | + EndGlobalSection | |
| 12 | + GlobalSection(ProjectConfigurationPlatforms) = postSolution | |
| 13 | + {F2C65267-0D20-4964-A5D8-602BD42C01A4}.Debug|Any CPU.Build.0 = Debug|Any CPU | |
| 14 | + {F2C65267-0D20-4964-A5D8-602BD42C01A4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | |
| 15 | + {F2C65267-0D20-4964-A5D8-602BD42C01A4}.Release|Any CPU.Build.0 = Release|Any CPU | |
| 16 | + {F2C65267-0D20-4964-A5D8-602BD42C01A4}.Release|Any CPU.ActiveCfg = Release|Any CPU | |
| 17 | + EndGlobalSection | |
| 18 | +EndGlobal | ... | ... |
xlib @ b223a43c317
xlib_examples/web/minimal_web_site_vc.anubis
| ... | ... | @@ -23,15 +23,15 @@ |
| 23 | 23 | read tools/basis.anubis // required for 'make_directory' and . |
| 24 | 24 | read system/convert.anubis |
| 25 | 25 | read system/logger.anubis |
| 26 | -read calexium_lib/web/CXM_common.anubis // required for type 'Web_arg' | |
| 27 | -read calexium_lib/web/CXM_multihost_http_server.anubis // required for type 'HTTP_Info' | |
| 28 | -read calexium_lib/web/controllers_web_site.anubis | |
| 29 | -read calexium_lib/web/CXM_making_a_web_site.anubis | |
| 26 | +read xlib/web/CXM_common.anubis // required for type 'Web_arg' | |
| 27 | +read xlib/web/CXM_multihost_http_server.anubis // required for type 'HTTP_Info' | |
| 28 | +read xlib/web/controllers_web_site.anubis | |
| 29 | +read xlib/web/CXM_making_a_web_site.anubis | |
| 30 | 30 | read web/mime.anubis // required for list of known MIME types |
| 31 | -read calexium_lib/web/CXM_web_arg_utils.anubis | |
| 32 | -read calexium_lib/web/CXM_web_session.anubis | |
| 33 | -read calexium_lib/web/CXM_form.anubis | |
| 34 | -read calexium_lib/web/jQuery/CXM_jquery_button.anubis | |
| 31 | +read xlib/web/CXM_web_arg_utils.anubis | |
| 32 | +read xlib/web/CXM_web_session.anubis | |
| 33 | +read xlib/web/CXM_form.anubis | |
| 34 | +read xlib/web/jQuery/CXM_jquery_button.anubis | |
| 35 | 35 | |
| 36 | 36 | *** Server directory. |
| 37 | 37 | ... | ... |
| 1 | +/* | |
| 2 | + * Created by PyramIDE. | |
| 3 | + * User: Totoro | |
| 4 | + * Date: 13/07/2013 | |
| 5 | + * Time: 02:07 | |
| 6 | + * | |
| 7 | + */ | |
| 8 | + | |
| 9 | +read system/string.anubis | |
| 10 | +read tools/basis.anubis | |
| 11 | +read tools/connections.anubis | |
| 12 | + | |
| 13 | +read xlib/asterisk/ami_types.anubis | |
| 14 | +read xlib/asterisk/ami.anubis | |
| 15 | +read xlib/asterisk/ami_commands.anubis | |
| 16 | +read xlib/web/CXM_http_get_common.anubis | |
| 17 | + | |
| 18 | + | |
| 19 | +global define One | |
| 20 | + send_sms | |
| 21 | + ( | |
| 22 | + List(String) args | |
| 23 | + )= | |
| 24 | + if asterisk_new_client("192.168.4.153:5038", auth("admin","admin")) is | |
| 25 | + { | |
| 26 | + failure then println(" asterisk new client failure"), | |
| 27 | + success(ami_client) then | |
| 28 | + forget(send_action(ami_client, ami_openvox_gsm_send_sync_sms("1", "+33609362507","AnubisのAMIでsmsを送る...","5"))) | |
| 29 | + }. | |
| 30 | + | |
| 31 | + global define One | |
| 32 | + ami_test | |
| 33 | + ( | |
| 34 | + List(String) args | |
| 35 | + )= | |
| 36 | + if asterisk_new_client("192.168.4.5:5038", auth("admin","calexium")) is | |
| 37 | + { | |
| 38 | + failure then println(" asterisk new client failure"), | |
| 39 | + success(ami_client) then | |
| 40 | + forget(send_action(ami_client, ami_originate_call("1049", "1149"))) | |
| 41 | + }. | |
| 42 | + | |
| 43 | + | ... | ... |