aboutsummaryrefslogtreecommitdiffstats
path: root/pdml2html.xsl
AgeCommit message (Collapse)AuthorFilesLines
2022-04-25Move some configuration and data files to resources/share.Gerald Combs1-221/+0
Create resources/share/wireshark and resources/share/logwolf. Move various data and configuration files to resources/share/wireshark and add resources/share/logwolf/colorfilters.
2020-10-02Clean up URLs.Guy Harris1-1/+2
Add ui/urls.h to define some URLs on various of our websites. Use the GitLab URL for the wiki. Add a macro to generate wiki URLs. Update wiki URLs in comments etc. Use the #defined URL for the docs page in WelcomePage::on_helpLabel_clicked; that removes the last user of topic_online_url(), so get rid of it and swallow it up into topic_action_url().
2019-07-20epan,packaging: convert http URLs to httpsPeter Wu1-1/+1
Ensure that public text in error messages and dialogs point to https. Ensure that the generated PDML files include scripts over https. Change-Id: I75d42704c2bbb33b05492261b3e1d45dc6e301f9 Reviewed-on: https://code.wireshark.org/review/34027 Petri-Dish: Peter Wu <peter@lekensteyn.nl> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
2018-03-09spdx: more licenses converted.Dario Lombardo1-13/+1
Change-Id: Ia1650bc02511f7bd47fb90be91b623177f05bcbd Reviewed-on: https://code.wireshark.org/review/26337 Reviewed-by: Anders Broman <a.broman58@gmail.com>
2016-09-18add link to Wireshark wiki to pdml2html.xslDirk Jagdmann1-2/+4
Change-Id: Id756cc51d2f30f48994ec9ee07941b2680aa0ba9 Reviewed-on: https://code.wireshark.org/review/17772 Reviewed-by: Martin Kaiser <wireshark@kaiser.cx>
2016-01-08Fix a lot of typos and misspellingsmoshekaplan1-1/+1
Change-Id: I8512cfa1d424f82a873a0e0e1d22c7b075fdd7f3 Reviewed-on: https://code.wireshark.org/review/13069 Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com> Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
2014-06-08Bugfix pdml2html.xsl fails to expand multiple identical 'proto' tagsChugzilla1-1/+1
bug:10106 Change-Id: Iaeb63325ddd7a67345c538c0688b5efc332f1963 Reviewed-on: https://code.wireshark.org/review/2032 Reviewed-by: Michael Mann <mmann78@netscape.net>
2013-10-09Add some license headers after emailing the respective authors to confirm.Evan Huus1-1/+20
svn path=/trunk/; revision=52471
2011-05-19From Dirk Jagdmann via bug 5875:Gerald Combs1-0/+211
My attachment adds a link to a XSLT file to the preamble of the PDML. The XSLT will transform the PDML to a HTML page, and the HTML page features a look similar to Wireshark. See http://cubic.org/~doj/ebay/a.pdml for an example. The patch also contains a small perl program which converts the Wireshark colortable into javascript code which is used in the XSLT file. If you want to use a different color scheme you would execute the perl program and insert the generated javascript function into your XSLT file. To view the HTML you could either place the PDML and XSLT file on your webserver and verify that your webserver sends the PDML file as "text/xml". Then your webbrowser will find the linked XSLT file, download that as well and convert the PDML to HTML on the fly. You could also use an XSLT processor like xsltproc to convert the PDML and XSLT into a static HTML file. From me: Minor fixups. svn path=/trunk/; revision=37298