简体   繁体   English

什么是VHTML? 这个怎么运作? 在哪里可以找到有关它的信息?

[英]What is VHTML? How it works? Where can I find information about it?

The code below continues many lines until it ends with a expected /veotherwise /vechoose. 下面的代码继续多行,直到以预期的/ veotherwise / vechoose结尾。 I started working on a development firm a little ago where they use this html version called vhtml. 我刚开始在一家开发公司工作,他们在这里使用称为vhtml的html版本。 I have search the web but it brings different definitions for vhtml. 我已经在网上搜索了,但是它为vhtml带来了不同的定义。 I have seen some posts in Joomla about vhtml but they don't look like the code below. 我在Joomla中看到了一些有关vhtml的帖子,但它们看起来不像下面的代码。 I was expecting to get a pointer on how to understand the language. 我期待获得如何理解该语言的指导。

It looks very similar to normal html with even very similar commands, or maybe smalltalk. 它看起来与普通的html非常相似,甚至带有非常相似的命令,甚至可能是Smalltalk。 But I just can decipher it. 但是我可以破译它。 Any help will be appreciated. 任何帮助将不胜感激。 Please post comments if you want more information. 如果您需要更多信息,请发表评论。

<vechoose>
  <vewhen criteria='isPortalEdit'>
    widget: practices-landing-page
  </vewhen>
  <veotherwise>
    <veinclude src='private/webportal/webtemplate-content.vhtml'>
      <vesection name='content-body'>

        <% // Determine portlet visibility %>
        <vecalc expression='isEmpty = false' output='none' />

        <vechoose>
          <vewhen criteria='isEmpty'>
            <veif criteria='portlet.ifEmptyDo == "Hide"'>
              <script>getTag( 'portlet_<%=portlet.order%>' ).style.display = "none";</script>
            </veif>
            <veif criteria='portlet.ifEmptyDo == "Show Message"'>
              <%#portlet.ifEmptyMessage%>
            </veif>
          </vewhen>
...

Managed to find this: http://vitrage.sibweb.ru/english/ Looks like it could be an Apache Module called VITRAGE. 设法找到了它: http ://vitrage.sibweb.ru/english/看起来它可能是一个名为VITRAGE的Apache模块。 Not much available in English however so am really unsure if it's a match. 但是英语并没有很多,所以我真的不确定这是否匹配。

On reading the code sample you posted, it looks like a XML styled procedural language. 阅读您发布的代码示例后,它看起来像一种XML样式的过程语言。 Are you sure it's available elsewhere or perhaps something that was developed internally? 您确定它在其他地方可用,还是内部开发的?

I think this is an internal language between to bring server side aspect to a display on the browser. 我认为这是在浏览器上显示服务器端方面之间的一种内部语言。 I have been unable to find documentation on this language, and I don't think Vitrage explains it. 我无法找到有关该语言的文档,并且我不认为Vitrage会对此进行解释。 The server uses coyote as web browser, tomcat as a servlet handler and java as the backend. 服务器使用土狼作为Web浏览器,使用tomcat作为servlet处理程序,并使用java作为后端。

Any new information please post. 任何新信息,请发布。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 我在哪里可以找到有关新画布HTML元素如何工作的一些好信息? - Where can I find some good information about how the new canvas HTML element works? 如何使用Ajax获取有关ID的所有信息 - How can I get all the information about an ID using Ajax 在哪里可以找到有关 WebM 直播 http 流媒体的信息? - Where can I find information on the WebM live http streaming? 我可以使用什么HTML属性来获取有关ap标签的更多信息? - What HTML attribute can I use to get extra information about a p tag? 在哪里可以找到有关Outlook 2007 / Microsoft word html布局引擎的更多信息? - Where can I find out more about the Outlook 2007/Microsoft word html layout engine? 我找不到上传文件的位置或确保代码有效 - I can't find where to upload the files or make sure the code works 如何找到元素的变化? - How can I find what changes an element? 如何获取有关从 codeigniter 中选择了哪个“optgroup”的信息? - How can I get information about which “optgroup” was selected from codeigniter? 如何在html页面中找到文件用作链接的位置? - How can I find where files are used as links in html pages? 如何找出点击事件被捕获的位置? - How can I find out where a click event gets caught?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM