使用Augas在XML中添加新行和制表符



这与我上一篇关于使用Augas更新xml的文章有关。我手动调整了格式,并能够查看如何在augtool中添加和解析新行和选项卡。我尝试添加这些新行,但无法在items节点和子items点之间插入每个#text行。是否可以通过为项目/#text设置新变量来添加新行和制表符?

用Augas插入这些字符是可行的吗?

<FileTypes>
<items>
<item value="video/*"/>
<item value="audio/*"/>
<item value="application/rar"/>
</items>
</FileTypes>      
/files/opt/webapp/config.xml/File/FileTypes
/files/opt/webapp/config.xml/File/FileTypes/#text = "n"
/files/opt/webapp/config.xml/File/FileTypes/items
/files/opt/webapp/config.xml/File/FileTypes/items/#text[1] = "ntt"
/files/opt/webapp/config.xml/File/FileTypes/items/item[1] = "#empty"
/files/opt/webapp/config.xml/File/FileTypes/items/item[1]/#attribute
/files/opt/webapp/config.xml/File/FileTypes/items/item[1]/#attribute/value = "video/*"
/files/opt/webapp/config.xml/File/FileTypes/items/#text[2] = "tt"
/files/opt/webapp/config.xml/File/FileTypes/items/item[2] = "#empty"
/files/opt/webapp/config.xml/File/FileTypes/items/item[2]/#attribute
/files/opt/webapp/config.xml/File/FileTypes/items/item[2]/#attribute/value = "audio/*"
/files/opt/webapp/config.xml/File/FileTypes/items/#text[3] = "tt"
/files/opt/webapp/config.xml/File/FileTypes/items/item[3] = "#empty"
/files/opt/webapp/config.xml/File/FileTypes/items/item[3]/#attribute
/files/opt/webapp/config.xml/File/FileTypes/items/item[3]/#attribute/value = "application/rar"

我在下面有这样的东西来插入新行,但它似乎不起作用,只添加了一个字面上的新行和制表符。

set /files/opt/webapp/config.xml/File/FileTypes/items/#text ntt'

这将导致更糟糕的情况。

<FileTypes>
<items>ntt<item value="video/*"/>
<item value="audio/*"/>
<item value="application/rar"/>
</items>
</FileTypes>      

我绞尽脑汁想出了一个优雅的幂等解决方案,以确保您的<item>节点缩进一个表格。这里有一个建议:

# define $audio (see previous question)
defnode audio item[#attribute/value="audio/*"] "#empty"
# define $noindent as $audio if the immediate previous node is not a `#text` one
defvar noindent $audio[preceding-sibling::*[1][label()!="#text"]]
# insert a #text element before $noindent. Will fail silently if $noindent doesn't match anything, making the change idempotent
ins #text before $noindent
# Set the value of the next #text node, which we are sure exists now
set #text[following-sibling::*[1][#attribute/value="audio/*"]] "t"

一般来说,#text运行良好,您的问题很可能是对值的错误引用。

相关内容

  • 没有找到相关文章

最新更新