1 Personal Notes on Conversion
Desislava Mihaylova редактировал(а) эту страницу 2022-03-24 15:42:56 +02:00
Этот файл содержит невидимые символы Юникода!

Этот файл содержит невидимые символы Юникода, которые могут быть отображены не так, как показано ниже. Если это намеренно, можете спокойно проигнорировать это предупреждение. Используйте кнопку Экранировать, чтобы показать скрытые символы.

Peter Milchev - Ajax support

API Ref: template: /p:LatestBinariesPath={LatestBinariesPath};DocsRepoName={DocsRepoName};DocumentationBaseUrl={DocumentationBaseUrl};DocsRepoApiAssetsFolder={DocsRepoApiAssetsFolder}

Final - run in D:\Work msbuild /p:LatestBinariesPath="\telerik.com\distributions\DailyBuilds\REPORTING\2021-07-19\Reporting\R2 2021 SP1\03-48\DEV\bin";DocsRepoName=reporting-docs;DocumentationBaseUrl=https://docs.telerik.com/reporting/;DocsRepoApiAssetsFolder=_assetsApi docs-seed/_buildApi/BuildApiReference.proj

Test - run in D:\Work msbuild /p:LatestBinariesPath="D:\Work\MdDocs\Examples\CSharp.NET Framework\Html5IntegrationDemo\bin";DocsRepoName=reporting-docs;DocumentationBaseUrl=https://docs.telerik.com/reporting/;DocsRepoApiAssetsFolder=_assetsApi docs-seed/_buildApi/BuildApiReference.proj

REMAINING:

API reference redirect rules. Create custom rewriter https://docs.microsoft.com/en-us/iis/extensions/url-rewrite-module/developing-a-custom-rewrite-provider-for-url-rewrite-module

articles that are invisible in TOC??? - telerikreporting/designing-reports/report-structure/chart-(obsolete) Published: False if in TOC section that is invisible won't convert

The articles have Position tag that may be used to reorder them in the TOC

POSTPONED

relative links with {%slug ...%} don't work for KB articles - "...\designing-reports\converting-reports-from-other-reporting-solutions\overview.md" ----actually works with the correct slug taken from the KB meta data. Needs to be replaced manually.

Nested tables are not supported directly. The nested ones should be rendered in html and the generated HTML put inside the MD table without new lines. Example in http://localhost:1589/reporting/using-reports-in-applications/display-reports-in-applications/web-application/react-report-viewer/api-reference/options

Feedback: file:///D:/Work/2018/Hotfix/Documentation/Help/Content/report-sources-viewers.aml - links to sections at the end of the article (go to section link) not working http://arabadzhiev:1589/reporting/using-reports-in-applications/display-reports-in-applications/how-to-set-reportsource-for-report-viewers correct section links Links to article sections must be edited manually. The # should be added after slug: "{%slug ...%}"#referenceHere

how to pass the real tokes to _config.yml - manual edit

how to use tokens in code snippets (CDATA) - manually replace tokens "{{site.kendosubsetversion}}" and "{{site.buildversion}}" in MDs snippets

Tabbed code snippets (C#+VB) in lists: Problematic pages:

	http://arabadzhiev:1589/reporting/designing-reports/report-designer-tools/desktop-designers/tools/data-source-wizards/objectdatasource-wizard
	Reason:
	...
		````c#
			[System.ComponentModel.DataObject()]
			public class Cars : List<Car>;
			{
			....
			}
	````
	````vb
			<System.ComponentModel.DataObject> _
			Public Class Cars
			Inherits List(Of Car)
			....
			End Class
	````
	...
	The above code is autogenerated and makes tabbed code snippet. This breaks the list items though.Changing it to the following (VB code is simply tabbed) fixes the lists but breaks the tabbed snippet:
	...
		````c#
			[System.ComponentModel.DataObject()]
			public class Cars : List<Car>;
			{
			....
			}
	````
		````vb
			<System.ComponentModel.DataObject> _
			Public Class Cars
			Inherits List(Of Car)
			....
			End Class
	````
	...



	http://arabadzhiev:1589/reporting/designing-reports/connecting-to-data/data-source-components/objectdatasource-component/connecting-the-objectdatasource-component-to-a-data-source
	Analysis:
	The VB snippet should start from the beginning of the line to become tabbed. However, if there is MD code starting without indent, the list is broken.
	working tabbed snippets, broken list
	...
		{{source=CodeSnippets\CS\API\Telerik\Reporting\ObjectDataSourceSnippets.cs region=SampleDataSource}}
		````C#
				class Product
				{
					//properties
				}
		
		
				[DataObject]
				class Products
				{
					//objects
				}
	````
	{{source=CodeSnippets\VB\API\Telerik\Reporting\ObjectDataSourceSnippets.vb region=SampleDataSource}}
	````VB
			Class Product
				'properties
			End Class
		
			<DataObject()>
			Class Products
				'objects
			End Class
		
	````
	...

	working list, broken tabbed snippets
	...
		{{source=CodeSnippets\CS\API\Telerik\Reporting\ObjectDataSourceSnippets.cs region=SampleDataSource}}
		````C#
				class Product
				{
					//properties
				}
		
		
				[DataObject]
				class Products
				{
					//objects
				}
		````
		{{source=CodeSnippets\VB\API\Telerik\Reporting\ObjectDataSourceSnippets.vb region=SampleDataSource}}
		````VB
			Class Product
				'properties
			End Class
		
			<DataObject()>
			Class Products
				'objects
			End Class
		
		````
	...

Tool for code snippets - change for Reporting: CodeMainPathCS = pathToSourceCodeFiles + @"\SamplesCS"; CodeMainPathVB = pathToSourceCodeFiles + @"\SamplesVB"; ... string workspaceName = "WinForms_Scrum"; string projectPath = @"$/WinForms_Scrum/Development/Help";

seems like the other paragraphs in the generated MD file - There are missing paragraphs in page sections consisting only of bullet lists. Thus, the 20px font size style is not applied and the text looks small. For example you can check the Prerequisites section here - https://reportinghost:446/reporting/installation !!!eplaced the list with a regular sentence as it is not relevant to have a list with single item.

FIXED:

Change _config.yml file for TOC, etc.

clear '\r\n' in ALERTS

add ' \r\n' before '!['

TABLES with multiple lines in the same cell - change '\r\n' with '
'.

BOLD externalLink - change XSLT schema for legacyBold

code tag - sourceFile fixed to the local one. Need to provide correct paths to jeqyll

TOKENS for the version - make tag to {{site.tokenName}} and set it value in _config.yml

For TITLES use normalize-space in XSLT

[CDATA] code handling in custom code like with CODE-with source

Change links from conceptual articles to api-ref articles like: M:Telerik.Reporting.Processing.ReportProcessor.RenderReport(System.String,Telerik.Reporting.ReportSource,System.Collections.Hashtable)

RenderReport

Code and other nodes in steps - 4 spaces indent

procedure/titles

section/titles

Handle The structure

kendosubsetversionthis nested elements were removed in the mamls: file:///D:/Work/2018/Hotfix/Documentation/Help/Content/report-items-html-text-box-validation.aml file:///D:/Work/2018/Hotfix/Documentation/Help/Content/report-sources-viewers.aml file:///D:/Work/2018/Hotfix/Documentation/Help/Content/report-viewer-localization2.aml file:///D:/Work/2018/Hotfix/Documentation/Help/Content/report-viewer-localization3.aml file:///D:/Work/2018/Hotfix/Documentation/Help/Content/MVCExtensions/mvc-report-viewer-howto-custom-parameters.aml

fixed feedback - The unordered list is not part of the whole list (the one under the second bullet item in the section), thus it is on the same level - https://reportinghost:446/reporting/installation#installing-telerik-reporting

fixed feedback, added a new line before the image - Images are not in a “mediaNear” div and thus there is missing top and bottom margins - https://reportinghost:446/reporting/installation#installing-telerik-reporting

Fixed listItems without

If is not in

(should be for correct maml) the entire procedure is not rendered. Fix the maml files in documentation: wpf-report-viewer-add-to-net-core-project.aml

code from source cannot be displayed if no region specified - wpf-report-viewer-add-to-net-core-project.aml

apply normalize-space to legacyBold/legacyItalic/legacyUnderline to remove whitespace/new lines as the new lines break it - cubedatasource-configuring-project.maml

designing-performance.maml - legacyBold/legacyItalic/legacyUnderline not correct - fixed by adding additional ' ' in the XSLT schema

[5:17 PM] Kaloyan Kotorov C#/VB code comment-ите са един под друг, вместо да с табове

SOLUTION 1 (AJAX) - no line between two codes;Language name next to the apostrophies, no intervals - ````C#. May have also {{source}} between snippets

{{source=CodeSnippets\CS\API\Telerik\Reporting\Processing\ReportProcessorSnippets.cs region=Export_Single_Stream_Snippet}}

\\code should start from the beginning of the line
var reportProcessor = ...

{{source=CodeSnippets\VB\API\Telerik\Reporting\Processing\ReportProcessorSnippets.vb region=Export_Single_Stream_Snippet}}

'code should start from the beginning of the line
Dim ...

Corrected with replacing '/' with '-' and '.' with 'dot' in converter: article names should not start with a dot '.'. Rename the article D:\Documentation migration tool-original\Help\telerikreporting\using-reports-in-applications.net-core-support.md -> D:\Documentation migration tool-original\Help\telerikreporting\using-reports-in-applications\dotnet-core-support.md Some article titles contain '/' that is interpreted as new subfolder and their names need to be updated manually - in the original MAML: D:\Work\reporting-docs\designing-reports\adding-interactivity-to-reports\actions\sorting-action\sorting-multiple-items\groups.md D:\Work\reporting-docs\designing-reports\adding-interactivity-to-reports\actions\how-to\how-to-add-a-drilldown\toggle-visibility-action.md D:\Work\reporting-docs\designing-reports\adding-interactivity-to-reports\actions\how-to\how-to-add-a-drillthrough\navigate-to-report-action.md D:\Work\reporting-docs\using-reports-in-applications\export-and-configure\configure-the-export-formats\wpfxaml\wpfxamlinteractive-device-information-settings.md

replace these code blocks with single blocks manually in the CS/VB snippets and correct the mamls. use Partial classes to avoid very long snippets: In some articles there are code blocks that have what should appear as a single code snippet by two code blocks - for example: VB codes in file:///D:/Work/2018/Hotfix/Documentation/Help/Content/report-items-html-text-box-validation.aml - done all code in file:///D:/Work/2018/Hotfix/Documentation/Help/Content/report-viewer-localization2.aml - done all code in file:///D:/Work/2018/Hotfix/Documentation/Help/Content/report-viewer-localization3.aml - done

http://arabadzhiev:1589/reporting/designing-reports/connecting-to-data/data-source-components/objectdatasource-component/overview Reason: legacyBold/externalLink transformation not working as expected Fix: new legacyBold template with choose

Kotorov - See Also секцията е празна навсякъде Looks like the problem is in the text 'See Also'. The MD file seems correct and when you change the text, e.g. "Seems Also" the section appears. This is a feature that moves element with ID 'see-also' on the side when it has only links Handled with code the codeEntityReference elements in relatedTopics (http://arabadzhiev:1589/reporting/designing-reports/connecting-to-data/how-to-set-a-no-data-message)

Removed all commented code in maml with xslt

There are 4 document types: developerTroubleshootingDocument developerWalkthroughDocument developerHowToDocument - handled developerConceptualDocument - handled

reports not being generated due to long names - solved:


D:\Work\2018\Hotfix\Documentation\Help\Content\asp-net-report-viewer-outproc-modify-textbox-value.aml--- ---d:\documentation migration tool-original\help\telerikreporting/using-reports-in-applications/display-reports-in-applications/web-application/asp.net-web-forms-report-viewer/design-considerations-for-out-proc-session-state-/how-to-modify-the-value-of-a-textbox-item-using-an-expression-and-a-report-parameter.md

D:\Work\2018\Hotfix\Documentation\Help\Content\asp-net-report-viewer-outproc-using report-params-to-retrieve-specific-data.aml --- ---"telerikreporting/using-reports-in-applications/display-reports-in-applications/web-application/asp.net-web-forms-report-viewer/design-considerations-for-out-proc-session-state-/how-to-using-report-parameters-to-retrieve-specific-data"

D:\Work\2018\Hotfix\Documentation\Help\Content\HTML5WebFormsControls\webforms-report-viewer-howto-use-it-with-reportserver.aml --- ---d:\documentation migration tool-original\help\telerikreporting\using-reports-in-applications\display-reports-in-applications\web-application\html5-asp.net-web-forms-report-viewer\how-to-use-html5-asp.net-web-forms-report-viewer-with-report-server.md

D:\Work\2018\Hotfix\Documentation\Help\Content\RESTService\telerik-reporting-rest-host-http-service-using-web-hosting.aml --- --- d:\documentation migration tool-original\help\telerikreporting\using-reports-in-applications\host-the-report-engine-remotely\telerik-reporting-rest-services\asp.net-web-api-implementation\how-to-add-telerik-reporting-rest-web-api-to-web-application.md

D:\Work\2018\Hotfix\Documentation\Help\Content\RESTService\telerik-reporting-rest-service-aspnetcore-mvc-core2.aml d:\documentation migration tool-original\help\telerikreporting\using-reports-in-applications\host-the-report-engine-remotely\telerik-reporting-rest-services\asp.net-core-web-api-implementation\how-to-host-reports-service-in-asp.net-core-2.1-and-2.2.md

D:\Work\2018\Hotfix\Documentation\Help\Content\RESTService\telerik-reporting-rest-service-aspnetcore-net5.aml d:\documentation migration tool-original\help\telerikreporting\using-reports-in-applications\host-the-report-engine-remotely\telerik-reporting-rest-services\asp.net-core-web-api-implementation\how-to-host-reports-service-in-asp.net-core-in-.net-5.md

D:\Work\2018\Hotfix\Documentation\Help\Content\RESTService\telerik-reporting-rest-servicestack-hosting-iis.aml d:\documentation migration tool-original\help\telerikreporting\using-reports-in-applications\host-the-report-engine-remotely\telerik-reporting-rest-services\servicestack-implementation\how-to-add-telerik-reporting-rest-servicestack-to-web-application.md

D:\Work\2018\Hotfix\Documentation\Help\Content\RESTService\telerik-reporting-rest-using-custom-report-resolver-and-document-resolver.aml d:\documentation migration tool-original\help\telerikreporting\using-reports-in-applications\host-the-report-engine-remotely\telerik-reporting-rest-services\rest-service-report-source-resolver\how-to-use-custom-report-source-resolver-and-custom-report-document-resolver.md


Fix just to generate the MD and leave original reference: Line 411: Failure converting D:\Work\2018\Hotfix\Documentation\Help\Content\web-report-designer-localization.aml to d:\d\help\telerikreporting\designing-reports\report-designer-tools\web-report-designer\localizing-the-web-report-designer.md --- Could not find a part of the path 'D:\Work\Source\Code\Telerik.WebReportDesigner\ClientApp\js\src\WebReportDesignerStringsBase.js'.

  • doesn't work

  • works

Document types to handle: developerTroubleshootingDocument developerWalkthroughDocument

When the article finishes with code snippet, there should be at least 2 LINES after the last snippet

relative links with {%slug ...%} in ">note " don't work - "...\designing-reports\localizing-reports.md", "..\rendering-and-paging\design-considerations-for-report-rendering
ANOTHER EXAMPLE: ">note You can change the field delimiter to any character that you want, by changing the device information settings. For more information, see CSV Device Information Settings." ----Fixed with only ">" or "> " rather than ">note " or ">tip " or ">important "

http://localhost:1589/reporting/designing-reports/connecting-to-data/expressions/using-expressions/overview - nothing to do with the original article https://docs.telerik.com/reporting/designing-reports-item-binding-expressions reason: folders D:\Work\2018\Hotfix\Documentation\Help\Content\Expressions and D:\Work\2018\Hotfix\Documentation\Help\Content have both the same article "designing-reports-item-binding-expressions". The correct one is from "D:\Work\2018\Hotfix\Documentation\Help\Content" Renamed the other one (.aml to .aml111) so that it is not found.

Merge TOC of documentation and API reference - D:\Work\reporting-docs_assetsApi\api\index.md - change this file accordingly

meta data is not displayed in the API Reference fixed by adding the XMLs along with the DLLs

Branch Development\MdDocs Once the converter generates the mapping between SandCastle article ID and the new MD article address, the tool should update the corresponding IDs in the API Reference of our code files OR replace them manually - 40 in 24 files. Search by "<conceptualLink target" Example that worked locally, from Telerik.Reporting.xml after build: "

Gets or sets the current text (aka label) in the check box. A started with "=" is interpreted as an expression to calculate the real data, otherwise - literal string.

Supports <conceptualLink target="e7d7b24c-decd-45c2-91b4-0f2b9e28271c">embedded expressions</conceptualLink> also.  -------------- OLD

Supports <a href="../designing-reports/connecting-to-data/expressions/using-expressions/embedded-expressions">embedded expressions</a> also. ----------- NEW - WORKS

</value>
" Implement this change for all occurrencies above:

DONE - 27 * "e7d7b24c-decd-45c2-91b4-0f2b9e28271c" > embedded expressions > https://testdocs.telerik.com/reporting/designing-reports/connecting-to-data/expressions/using-expressions/embedded-expressions

DONE - 1 * "2DCC7E20-E4CA-497D-B4C1-841CC2E9D19E#text-orientation" > Text Box - Text Orientation > https://testdocs.telerik.com/reporting/designing-reports/report-structure/textbox## Text Orientation

DONE - 7 * "935C2C81-69FB-4EE7-B104-C317A615D294" > Rendering Extensions > https://testdocs.telerik.com/reporting/using-reports-in-applications/export-and-configure/export-formats

DONE - 2 * "5f8e6a6f-1160-4d59-9554-fe3a14e2a286" > Configuring the Database Cache Provider > https://testdocs.telerik.com/reporting/using-reports-in-applications/export-and-configure/cache-management/other-reportviewer-controls/configuring-the-database-cache-provider

DONE - 3 * "7B7459C1-F91D-4220-BC72-68804CD6B554" > Device Information Settings > https://testdocs.telerik.com/reporting/using-reports-in-applications/export-and-configure/configure-the-export-formats/overview

the occurrencies are: Code File Line Column /// Supports embedded expressions also. D:\Work\2018\Hotfix\Source\Code\Telerik.Reporting\Model\CheckBox.cs 27 22 /// Supports embedded expressions also. D:\Work\2018\Hotfix\Source\Code\Telerik.Reporting\Model\DataItem.cs 145 22 /// Supports embedded expressions also. D:\Work\2018\Hotfix\Source\Code\Telerik.Reporting\Model\Drawing\TextWatermark.cs 23 22 /// Supports embedded expressions also. D:\Work\2018\Hotfix\Source\Code\Telerik.Reporting\Model\Graph\Axis\GraphAxis.cs 389 22 /// Supports embedded expressions also. D:\Work\2018\Hotfix\Source\Code\Telerik.Reporting\Model\Graph\GraphGroup.cs 56 22 /// Supports embedded expressions also. D:\Work\2018\Hotfix\Source\Code\Telerik.Reporting\Model\Graph\GraphLegend.cs 33 22 /// Supports embedded expressions also. D:\Work\2018\Hotfix\Source\Code\Telerik.Reporting\Model\Graph\GraphSeriesBase.cs 34 22 /// Supports embedded expressions also. D:\Work\2018\Hotfix\Source\Code\Telerik.Reporting\Model\Graph\GraphSeriesBase.cs 138 22 /// Supports embedded expressions also. D:\Work\2018\Hotfix\Source\Code\Telerik.Reporting\Model\Graph\GraphSeriesBase.cs 253 22 /// Supports embedded expressions also. D:\Work\2018\Hotfix\Source\Code\Telerik.Reporting\Model\Graph\GraphTitle.cs 24 22 /// Supports embedded expressions also. D:\Work\2018\Hotfix\Source\Code\Telerik.Reporting\Model\Group.cs 151 22 /// Supports embedded expressions also. D:\Work\2018\Hotfix\Source\Code\Telerik.Reporting\Model\Group.cs 176 22 /// Supports embedded expressions also. D:\Work\2018\Hotfix\Source\Code\Telerik.Reporting\Model\Group.cs 195 22 /// Supports embedded expressions also. D:\Work\2018\Hotfix\Source\Code\Telerik.Reporting\Model\IDesignTimeInterfaces.cs 30 22 /// Supports embedded expressions also. D:\Work\2018\Hotfix\Source\Code\Telerik.Reporting\Model\Map\Groups\GeoLocationMapGroup.cs 26 22 /// Supports embedded expressions also. D:\Work\2018\Hotfix\Source\Code\Telerik.Reporting\Model\Map\MapLegend.cs 22 22 /// Supports embedded expressions also. D:\Work\2018\Hotfix\Source\Code\Telerik.Reporting\Model\Map\MapTitle.cs 19 22 /// Supports embedded expressions also. D:\Work\2018\Hotfix\Source\Code\Telerik.Reporting\Model\ReportItemBase.cs 446 22 /// Supports embedded expressions also. D:\Work\2018\Hotfix\Source\Code\Telerik.Reporting\Model\ReportItemBase.cs 488 22 /// Supports embedded expressions also. D:\Work\2018\Hotfix\Source\Code\Telerik.Reporting\Model\ReportItemBase.cs 524 22 /// embedded expression D:\Work\2018\Hotfix\Source\Code\Telerik.Reporting\Model\ReportParameterAvailableValues.cs 32 13 /// embedded expression D:\Work\2018\Hotfix\Source\Code\Telerik.Reporting\Model\ReportParameterAvailableValues.cs 53 13 /// Supports embedded expressions also. D:\Work\2018\Hotfix\Source\Code\Telerik.Reporting\Model\Table\TableGroup.cs 124 22 /// Supports embedded expressions also. D:\Work\2018\Hotfix\Source\Code\Telerik.Reporting\Model\Table\TableGroup.cs 149 22 /// Supports embedded expressions also. D:\Work\2018\Hotfix\Source\Code\Telerik.Reporting\Model\Table\TableGroup.cs 168 22 /// More info on the Angle property behavior can be found at Text Box - Text Orientation D:\Work\2018\Hotfix\Source\Code\Telerik.Reporting\Model\TextItemBase.cs 23 70 /// Supports embedded expressions also. D:\Work\2018\Hotfix\Source\Code\Telerik.Reporting\Model\ToolTip.cs 45 22 /// Supports embedded expressions also. D:\Work\2018\Hotfix\Source\Code\Telerik.Reporting\Model\ToolTip.cs 76 22 /// See Rendering Extensions D:\Work\2018\Hotfix\Source\Code\Telerik.Reporting\Processing.ReportProcessor\ReportProcessor.RenderReport.cs 78 17 /// See Rendering Extensions D:\Work\2018\Hotfix\Source\Code\Telerik.Reporting\Processing.ReportProcessor\ReportProcessor.RenderReport.cs 94 17 /// See Rendering Extensions D:\Work\2018\Hotfix\Source\Code\Telerik.Reporting\Processing.ReportProcessor\ReportProcessor.RenderReport.cs 117 17 /// See Rendering Extensions D:\Work\2018\Hotfix\Source\Code\Telerik.Reporting\Processing.ReportProcessor\ReportProcessor.RenderReport.cs 138 17 /// See also: Configuring the Database Cache Provider D:\Work\2018\Hotfix\Source\Code\Telerik.Reporting\Services.Engine\CacheFactory.cs 41 23 /// Rendering Extensions D:\Work\2018\Hotfix\Source\Code\Telerik.Reporting.Services.AspNetCore\CreateDocumentArgs.cs 16 13 /// Device Information Settings D:\Work\2018\Hotfix\Source\Code\Telerik.Reporting.Services.AspNetCore\CreateDocumentArgs.cs 26 13 /// Rendering Extensions D:\Work\2018\Hotfix\Source\Code\Telerik.Reporting.Services.ServiceStack\DocumentsService.cs 41 13 /// Device Information Settings D:\Work\2018\Hotfix\Source\Code\Telerik.Reporting.Services.ServiceStack\DocumentsService.cs 50 13 /// See also:. Configuring the Database Cache Provider D:\Work\2018\Hotfix\Source\Code\Telerik.Reporting.Services.WebApi\CacheFactory.cs 48 24 /// Rendering Extensions D:\Work\2018\Hotfix\Source\Code\Telerik.Reporting.Services.WebApi\CreateDocumentArgs.cs 15 13 /// Device Information Settings D:\Work\2018\Hotfix\Source\Code\Telerik.Reporting.Services.WebApi\CreateDocumentArgs.cs 24 13

API REFEFENCE не излиза в началото а само като прецъкаш - за несъществуваш урл се оказа, че се отнася

дефолтен редирект кам knowledge-base - fixed in web.config

в API REFEFENCE излиза GoogleAnalytics - наш неймспейс е всичко, което започва с Telerik.Reporting.Design - да се изключи. Ванката ще види за други само определени асемблита влизат в апи рефа:

add URL redirects to web.config in reporting-docs. Пример от WPF - https://github.com/telerik/xaml-docs/blob/master/web.config https://stackoverflow.com/questions/34389866/rewrite-rules-in-separate-config-file - create redirect.config that is referenced in the web.config. WPF and WinForms use

http://arabadzhiev:1589/reporting/designing-reports/report-designer-tools/desktop-designers/tools/data-source-wizards/objectdatasource-wizard: second VB code snippet not full. I suspect this is due to character '<' that starts on the next line: '<System.ComponentModel.DataObjectMethod(System.ComponentModel.DataObjectMethodType.Select)>' !!!fixed

images in table don't work - https://docs.telerik.com/reporting/charttypes <-> https://testdocs.telerik.com/reporting/designing-reports/report-structure/graph/chart-types/overview used only in 1 file - do it manually: https://stackoverflow.com/questions/47344571/how-to-draw-checkbox-or-tick-mark-in-github-markdown-table/55523035 - doesn't work !!!Replaced the checkmark images with code '✓' images in tables are not converted, images are not copied !!!fixed

Table Column Widths are generated equal by default. To set specific width, use this styling before the table: