<feed xmlns='http://www.w3.org/2005/Atom'>
<title>nvim-lspconfig/lua/lspconfig/health.lua, branch v2.4.0</title>
<subtitle>[no description]</subtitle>
<id>http://git.sudomsg.com/mirror/nvim-lspconfig/atom/lua/lspconfig/health.lua?h=v2.4.0</id>
<link rel='self' href='http://git.sudomsg.com/mirror/nvim-lspconfig/atom/lua/lspconfig/health.lua?h=v2.4.0'/>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-lspconfig/'/>
<updated>2025-04-10T22:48:31Z</updated>
<entry>
<title>refactor: replace vim.loop with vim.uv #3703</title>
<updated>2025-04-10T22:48:31Z</updated>
<author>
<name>Chris Bandy</name>
<email>bandy.chris@gmail.com</email>
</author>
<published>2025-04-10T22:48:31Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-lspconfig/commit/?id=4ea9083b6d3dff4ddc6da17c51334c3255b7eba5'/>
<id>urn:sha1:4ea9083b6d3dff4ddc6da17c51334c3255b7eba5</id>
<content type='text'>
The former is deprecated in neovim 0.10. Remove the check added in
9b89ba5f158f73779cd58d0bb2783dfb40b28b0e.

See: https://github.com/neovim/neovim/blob/v0.10.0/runtime/doc/deprecated.txt#L55</content>
</entry>
<entry>
<title>refactor: deprecate util.get_lsp_clients #3694</title>
<updated>2025-04-05T23:29:56Z</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2025-04-05T23:29:56Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-lspconfig/commit/?id=3dbc4a61e58f632b05c04087c5e788480e5ef81b'/>
<id>urn:sha1:3dbc4a61e58f632b05c04087c5e788480e5ef81b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>fix: ":checkhealth lspconfig" fails on Nvim 0.11 #3668</title>
<updated>2025-03-27T12:56:20Z</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2025-03-27T12:56:20Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-lspconfig/commit/?id=85e0dd26b710e834a105d679200d01e326a3d2b0'/>
<id>urn:sha1:85e0dd26b710e834a105d679200d01e326a3d2b0</id>
<content type='text'>
Problem:
`:checkhealth lspconfig` fails:

    E5009: Invalid $VIMRUNTIME: .../share/nvim/runtime
    Error executing lua: Vim:E21: Cannot make changes, 'modifiable' is off
    stack traceback:
            [C]: in function 'append'
            .../share/nvim/runtime/lua/vim/health.lua:443: in function '_check'

`:checkhealth` cannot call itself recursively. And even if it did work,
it would show a duplicate report since `:checkhealth vim.lsp` will also
be part of the report.

Solution:
On Nvim 0.11,
- show a deprecation message if invoked directly.
- show a softer message if invoked as part of the "full report".

fix #3664</content>
</entry>
<entry>
<title>feat: alias :LspInfo to `:checkhealth vim.lsp` #3663</title>
<updated>2025-03-26T19:13:08Z</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2025-03-26T19:13:08Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-lspconfig/commit/?id=401e50fae626c4707af12114b5ddb7bb9f4236a4'/>
<id>urn:sha1:401e50fae626c4707af12114b5ddb7bb9f4236a4</id>
<content type='text'>
Problem:
`:checkhealth lspconfig` has no benefits vs `:checkhealth vim.lsp`.

Solution:
- on Nvim 0.11+, `:LspInfo` is an alias to `:checkhealth vim.lsp`
  instead of `:checkhealth lspconfig`.
- `lua/lspconfig/health.lua` will be removed in a few months.</content>
</entry>
<entry>
<title>fix(health.lua): increased version check cmd timeout (#3601)</title>
<updated>2025-02-04T01:43:07Z</updated>
<author>
<name>snowdroppe</name>
<email>stefanrieche@gmail.com</email>
</author>
<published>2025-02-04T01:43:07Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-lspconfig/commit/?id=66bc018936c6ff76beb75f89d986af6442db4001'/>
<id>urn:sha1:66bc018936c6ff76beb75f89d986af6442db4001</id>
<content type='text'>
Problem:
LspInfo returns '?' for version string when using the codeqlls
language server. This is because codeql is slow to return its
version number due to the underlying JVM.

Solution:
Increase the timeout from 300ms to 500ms.
1000 iterations of `codeql version` resulted in (349 +- 13) ms
which informed the choice of 500ms.</content>
</entry>
<entry>
<title>revert: "refactor!: make available_servers function private" #3589</title>
<updated>2025-01-27T21:04:47Z</updated>
<author>
<name>dundargoc</name>
<email>33953936+dundargoc@users.noreply.github.com</email>
</author>
<published>2025-01-27T21:04:47Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-lspconfig/commit/?id=1f941b3668151963fca3e1230922c433ea4b7b64'/>
<id>urn:sha1:1f941b3668151963fca3e1230922c433ea4b7b64</id>
<content type='text'>
This reverts commit e118ce58dab72c17216292eef7df4cee3cf60885.

It turns out `util.available_servers` is used more than anticipated, so
we revert the privatization for the time being.

Closes https://github.com/neovim/nvim-lspconfig/issues/3588</content>
</entry>
<entry>
<title>refactor!: make available_servers function private</title>
<updated>2025-01-21T05:21:29Z</updated>
<author>
<name>dundargoc</name>
<email>gocdundar@gmail.com</email>
</author>
<published>2025-01-20T22:06:18Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-lspconfig/commit/?id=e118ce58dab72c17216292eef7df4cee3cf60885'/>
<id>urn:sha1:e118ce58dab72c17216292eef7df4cee3cf60885</id>
<content type='text'>
Work on https://github.com/neovim/nvim-lspconfig/issues/2079.
</content>
</entry>
<entry>
<title>refactor: remove outdated code</title>
<updated>2024-12-08T17:38:48Z</updated>
<author>
<name>dundargoc</name>
<email>gocdundar@gmail.com</email>
</author>
<published>2024-12-01T14:41:11Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-lspconfig/commit/?id=687fcb939b7de052a3ba6c300348fcd5eb128e83'/>
<id>urn:sha1:687fcb939b7de052a3ba6c300348fcd5eb128e83</id>
<content type='text'>
Lspconfig requires neovim version 0.9 at the time of writing this, so
discard any version checks and code for older versions.
</content>
</entry>
<entry>
<title>refactor: replace all instances of vim.uv with vim.loop</title>
<updated>2024-12-02T10:12:18Z</updated>
<author>
<name>dundargoc</name>
<email>gocdundar@gmail.com</email>
</author>
<published>2024-12-01T12:01:51Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-lspconfig/commit/?id=9b89ba5f158f73779cd58d0bb2783dfb40b28b0e'/>
<id>urn:sha1:9b89ba5f158f73779cd58d0bb2783dfb40b28b0e</id>
<content type='text'>
We still support neovim 0.9 currently, so we can't use vim.uv. Also add
a check so we don't accidentally reintroduce it.
</content>
</entry>
<entry>
<title>fix(health): improve format of root dir and doc in checkhealth (#3416)</title>
<updated>2024-11-03T11:48:12Z</updated>
<author>
<name>glepnir</name>
<email>glephunter@gmail.com</email>
</author>
<published>2024-11-03T11:48:12Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-lspconfig/commit/?id=bc6ada4b0892b7f10852c0b8ca7209fd39a6d754'/>
<id>urn:sha1:bc6ada4b0892b7f10852c0b8ca7209fd39a6d754</id>
<content type='text'>
</content>
</entry>
<entry>
<title>fix(health): "root directory" not reported #3402</title>
<updated>2024-10-25T14:50:39Z</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2024-10-25T14:50:39Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-lspconfig/commit/?id=4ae8ea049034a4f1b95b3e671ab9d35c16eeafb9'/>
<id>urn:sha1:4ae8ea049034a4f1b95b3e671ab9d35c16eeafb9</id>
<content type='text'>
Problem:
"root directory" not reported.

Solution:
report root_dir. regression from b55b9659de9ac17e05df4787bb023e4c7ef45329</content>
</entry>
<entry>
<title>fix(health): version fails for jdtls #3399</title>
<updated>2024-10-24T16:56:32Z</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2024-10-24T16:56:32Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-lspconfig/commit/?id=fb41274c6418634f59d45efa808b6a8a2d6887f2'/>
<id>urn:sha1:fb41274c6418634f59d45efa808b6a8a2d6887f2</id>
<content type='text'>
Problem:
version fails for jdtls

Solution:
Try `-version` (one hyphen). Drop `-v`, it's probably not useful. Also
drop `-h` because it is unlikely to work if `--help` didn't work.

TODO: make a smarter guess about the actual "argv0" of `cmd`.</content>
</entry>
<entry>
<title>fix(health): "attempt to index cmd (function)" #3390</title>
<updated>2024-10-20T18:56:47Z</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2024-10-20T18:56:47Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-lspconfig/commit/?id=84f867753f659bfd9319f75bd5eb273a315f2da5'/>
<id>urn:sha1:84f867753f659bfd9319f75bd5eb273a315f2da5</id>
<content type='text'>
Problem:
`cmd` may be a random function instead of an executable command.

    ERROR Failed to run healthcheck for "lspconfig" plugin. Exception:
    .../lua/lspconfig/health.lua:127: attempt to index field 'cmd' (a function value)

Solution:
Skip attempt to invoke `&lt;cmd&gt; --version` if `cmd` is a function.</content>
</entry>
<entry>
<title>fix(health): improve version reporting #3388</title>
<updated>2024-10-19T15:55:21Z</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2024-10-19T15:55:21Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-lspconfig/commit/?id=fd49d5863e873891be37afac79b1f56fb34bb5d3'/>
<id>urn:sha1:fd49d5863e873891be37afac79b1f56fb34bb5d3</id>
<content type='text'>
- try the next command if:
  - version pattern is not matched
  - exitcode is nonzero or timeout.
- truncate long output</content>
</entry>
<entry>
<title>fix(health): support gopls version command (#3386)</title>
<updated>2024-10-19T05:53:43Z</updated>
<author>
<name>Scott Penrose</name>
<email>penrose@gmail.com</email>
</author>
<published>2024-10-19T05:53:43Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-lspconfig/commit/?id=b58d56c0c7b3dfb1c71797013ad7b4aca5e6b898'/>
<id>urn:sha1:b58d56c0c7b3dfb1c71797013ad7b4aca5e6b898</id>
<content type='text'>
</content>
</entry>
<entry>
<title>fix(lspinfo): improve version check, deduplicate #3383</title>
<updated>2024-10-18T15:48:14Z</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2024-10-18T15:48:14Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-lspconfig/commit/?id=b55b9659de9ac17e05df4787bb023e4c7ef45329'/>
<id>urn:sha1:b55b9659de9ac17e05df4787bb023e4c7ef45329</id>
<content type='text'>
- improve version handling: try --version, -v, etc.
- avoid hanging commands (timeout after 1s).
- also collect stderr.
- show "Tried: ..." on failure.
- omit "custom handlers" if none found.</content>
</entry>
<entry>
<title>feat(lspinfo): also show version in make_client_info #3382</title>
<updated>2024-10-18T13:47:24Z</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2024-10-18T13:47:24Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-lspconfig/commit/?id=d6b0c3b38cdb45dcbd658efc2bb721568f68d93f'/>
<id>urn:sha1:d6b0c3b38cdb45dcbd658efc2bb721568f68d93f</id>
<content type='text'>
Problem:
version is only printed for make_config_info.

Solution:
Add it to make_client_info.</content>
</entry>
<entry>
<title>feat(lspinfo): print `&lt;cmd&gt; --version` result</title>
<updated>2024-10-18T12:20:14Z</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2024-10-18T12:16:29Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-lspconfig/commit/?id=2c812ad934d6d1a89fe608d164e2b6ce7d31d4f2'/>
<id>urn:sha1:2c812ad934d6d1a89fe608d164e2b6ce7d31d4f2</id>
<content type='text'>
</content>
</entry>
<entry>
<title>fix(lspinfo)!: remove config.lspinfo</title>
<updated>2024-10-18T10:30:55Z</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2024-10-16T10:23:13Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-lspconfig/commit/?id=679d978e644778abcf7b4552f9b763c040a8f0b5'/>
<id>urn:sha1:679d978e644778abcf7b4552f9b763c040a8f0b5</id>
<content type='text'>
Problem:
`config.lspinfo` is an undocumented feature that allows extending the
info shown in `:LspInfo` (`:checkhealth lspconfig`).
This feature is unwanted because:
- it's undocumented
- it adds a maintenance burden
- it provides info that should be derived from the LSP protocol itself.

Solution:
Remove support for `config.lspinfo`.
Instead, `:LspInfo` (`:checkhealth lspconfig`) should be enhanced to
automatically gather this kind of extra info from the server response.
</content>
</entry>
<entry>
<title>fix(health): skip format root when in single file mode (#3348)</title>
<updated>2024-10-04T10:18:56Z</updated>
<author>
<name>glepnir</name>
<email>glephunter@gmail.com</email>
</author>
<published>2024-10-04T10:18:56Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-lspconfig/commit/?id=f5c2a085110923d2f6aa8d62306b02a563b965b7'/>
<id>urn:sha1:f5c2a085110923d2f6aa8d62306b02a563b965b7</id>
<content type='text'>
</content>
</entry>
<entry>
<title>fix(health): root directory always "single file mode"</title>
<updated>2024-10-03T19:25:20Z</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2024-10-03T19:25:20Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-lspconfig/commit/?id=dd0d9be48f7bf008661105299410cdd3ccf79332'/>
<id>urn:sha1:dd0d9be48f7bf008661105299410cdd3ccf79332</id>
<content type='text'>
Problem:
Root directory is always reported as "Running in single file mode".

Solution:
Don't prettify the filepath until "presenting" it.

fix #3346
</content>
</entry>
<entry>
<title>fix(health): support Nvim 0.9</title>
<updated>2024-10-02T19:21:27Z</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2024-10-02T19:21:27Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-lspconfig/commit/?id=38cd54b7063c4c45fb37c73ebfbd776939d0cfde'/>
<id>urn:sha1:38cd54b7063c4c45fb37c73ebfbd776939d0cfde</id>
<content type='text'>
fix #3342
</content>
</entry>
<entry>
<title>feat(lspinfo): replace :LspInfo with :checkhealth #3339</title>
<updated>2024-10-02T13:57:18Z</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2024-10-02T13:57:18Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-lspconfig/commit/?id=e6569c18c21be5166e4b9cc7530e828b8285c84e'/>
<id>urn:sha1:e6569c18c21be5166e4b9cc7530e828b8285c84e</id>
<content type='text'>
Problem:
:LspInfo has its own "inner platlform" of highlights, mappings etc. And
it doesn't integrate with :checkhealth.

Solution:
- Move the lspinfo code to a healthcheck.
- LspInfo features such as highlights, "floating window" presentation,
  etc., should be added to :checkhealth in Nvim core, if they are really
  needed.
- Define a "q" mapping until Nvim stable has that in :checkhealth.</content>
</entry>
<entry>
<title>chore: remove healthcheck (#1636)</title>
<updated>2022-01-05T19:04:18Z</updated>
<author>
<name>Michael Lingelbach</name>
<email>m.j.lbach@gmail.com</email>
</author>
<published>2022-01-05T19:04:18Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-lspconfig/commit/?id=3b275bb7cafd7d77be5fd3cf8d46eaa3a7deddf3'/>
<id>urn:sha1:3b275bb7cafd7d77be5fd3cf8d46eaa3a7deddf3</id>
<content type='text'>
Previously, lspconfig had a recommended healthcheck. This was mostly
noise as its predominant use was to check if a server was installed.

This check was not accurate as vim.fn.executable is extremely primitive
and does not consider cmd_env (forwarded to uv_spawn) or language servers
that are run via an interpreter.

Furthermore, checking if a language server is executable will no longer
be a useful signal once TCP support (which allows for connecting to
already running or remote servers).

Remove for now.</content>
</entry>
<entry>
<title>chore: clean up imports</title>
<updated>2021-11-26T04:46:21Z</updated>
<author>
<name>Michael Lingelbach</name>
<email>m.j.lbach@gmail.com</email>
</author>
<published>2021-11-25T17:40:39Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-lspconfig/commit/?id=97da7ed12e7e0d86e735e38a8170e941d4ed3e9a'/>
<id>urn:sha1:97da7ed12e7e0d86e735e38a8170e941d4ed3e9a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>fix(health): fix problem of always showing warning (#1466)</title>
<updated>2021-11-21T15:45:54Z</updated>
<author>
<name>erw7</name>
<email>erw7.github@gmail.com</email>
</author>
<published>2021-11-21T15:45:54Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-lspconfig/commit/?id=65c12df7ea685663aa0b628438ee26347e7cfdb8'/>
<id>urn:sha1:65c12df7ea685663aa0b628438ee26347e7cfdb8</id>
<content type='text'>
</content>
</entry>
<entry>
<title>fix(health): fix problem that could return empty results (#1461)</title>
<updated>2021-11-20T14:30:49Z</updated>
<author>
<name>Michael Lingelbach</name>
<email>m.j.lbach@gmail.com</email>
</author>
<published>2021-11-20T14:30:49Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-lspconfig/commit/?id=2e6c94069e92cb4a43416b3ac0267e941b3fd47e'/>
<id>urn:sha1:2e6c94069e92cb4a43416b3ac0267e941b3fd47e</id>
<content type='text'>
Co-authored-by: erw7 &lt;erw7.github@gmail.com&gt;</content>
</entry>
<entry>
<title>fix(checkhealth): rename check_health to check (#1296)</title>
<updated>2021-10-05T23:22:26Z</updated>
<author>
<name>Matthieu Coudron</name>
<email>teto@users.noreply.github.com</email>
</author>
<published>2021-10-05T23:22:26Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-lspconfig/commit/?id=66659884c36dadd1f445f9012fcf4e7600286d3e'/>
<id>urn:sha1:66659884c36dadd1f445f9012fcf4e7600286d3e</id>
<content type='text'>
as mandated by https://github.com/neovim/neovim/pull/15259#issuecomment-934241413</content>
</entry>
<entry>
<title>chore: change stylua to single quotes (#1068)</title>
<updated>2021-07-13T17:41:39Z</updated>
<author>
<name>Michael Lingelbach</name>
<email>m.j.lbach@gmail.com</email>
</author>
<published>2021-07-13T17:41:39Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-lspconfig/commit/?id=cd1ccf056be9cbcc3d5cbefff08135276bc476ed'/>
<id>urn:sha1:cd1ccf056be9cbcc3d5cbefff08135276bc476ed</id>
<content type='text'>
</content>
</entry>
<entry>
<title>ci: lint and format with stylua</title>
<updated>2021-07-03T22:49:27Z</updated>
<author>
<name>Michael Lingelbach</name>
<email>m.j.lbach@gmail.com</email>
</author>
<published>2021-07-03T21:45:08Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-lspconfig/commit/?id=ec11b85df73cce4edb2925cb7f1d0e8db3a07b1c'/>
<id>urn:sha1:ec11b85df73cce4edb2925cb7f1d0e8db3a07b1c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Remove all installers and install logic</title>
<updated>2021-01-03T14:53:43Z</updated>
<author>
<name>Michael Lingelbach</name>
<email>m.j.lbach@gmail.com</email>
</author>
<published>2020-12-29T01:32:20Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-lspconfig/commit/?id=93c34311581ed9db125b1c41c87b8d3af7dc4c41'/>
<id>urn:sha1:93c34311581ed9db125b1c41c87b8d3af7dc4c41</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Rename nvim_lsp to lspconfig</title>
<updated>2020-09-06T08:49:21Z</updated>
<author>
<name>Hirokazu Hata</name>
<email>h.hata.ai.t@gmail.com</email>
</author>
<published>2020-09-06T08:49:21Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-lspconfig/commit/?id=ddcd9e6aae50d6397e43e4fc9ba0cf7a82cc79de'/>
<id>urn:sha1:ddcd9e6aae50d6397e43e4fc9ba0cf7a82cc79de</id>
<content type='text'>
</content>
</entry>
</feed>
