English 中文(简体)
更新ATOM条目的正确/接受方式
原标题:Correct/Accepted Way to Update an ATOM Entry

更新 ATOOM 种子条目的“ 正确” 表达方式是什么?

使用“正确”一词,我的意思是适合现有规格 < 坚固> 和 , 供读者使用的东西会注意到并标记为新/未读 。

所有我找到的规格都表示支持更新节点。 但是,当我尝试这样的时候

<entry>
    <title>Ipv4 For Sale</title>
    <link href="http://tech.slashdot.org/story/12/05/24/1526258/sales-of-unused-ipv4-addresses-gaining-steam"/>
    <id>urn:uuid:0fd0a227-1be0-bce4-9f53-8c47bf682eb7</id>
    <updated>2012-05-24T15:18:19-07:00</updated>
    <published>2012-05-24T13:11:37-07:00</published>
    <summary type="html"><![CDATA[<p>Web Content Here</p>]]></summary>
</entry>

我的 feed 阅读器将显示新内容, 但不会将此项目标记为新/ 未读 。 我使用 NetNewsWire 。 NetNewsWire 既是一个主流种子阅读器, 也是一个主流种子阅读器, < strong > 和 有设置“ 标记为未读 ” 任何“ 更新” 的项目 。

虽然我读到的这些问题证实了上述我所描述的行为,但没有(看来? )提供解决办法。

是否有办法做到这一点, 或者是“正确”的东西 张贴一个全新的条目?

如果重要的话, 使用 PHP s DATE_ ATOM 常数生成种子日期 。

最佳回答

规格文件规定,如果一个项目重新发布(即更新),其 id 可能不会改变。因此,如果一个读者提供特征,标记项目在 atom:更新后 字段更改时未读,而它随后没有这样做,那么这似乎是一个软件错误:)

在提到的新闻读者的网站上,我发现一个更新,虽然很旧,但可能会修正你现在所经历的: rel=“nofollow”>http://netnewswire.com/netnewswire-3-2-14-synking-sorting-fixes

问题回答

暂无回答




相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签