The Tsvncmd URL handler does currently not support "properties" command:
tsvncmd:command:properties?path:....
I created a path for that. I testet it. It works fine.
--
You received this message because you are subscribed to the Google Groups
"TortoiseSVN" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/tortoisesvn/db69c950-412e-4daf-81fe-fd1b6246e95fn%40googlegroups.com.
Index: doc/source/en/TortoiseSVN/tsvn_app_automation.xml
===================================================================
--- doc/source/en/TortoiseSVN/tsvn_app_automation.xml (revision 29048)
+++ doc/source/en/TortoiseSVN/tsvn_app_automation.xml (working copy)
@@ -940,6 +940,9 @@
<listitem>
<literal condition="pot">:log</literal>
</listitem>
+ <listitem>
+ <literal condition="pot">:properties</literal>
+ </listitem>
</itemizedlist>
</para>
<para>
Index: src/Utils/CmdUrlParser.cpp
===================================================================
--- src/Utils/CmdUrlParser.cpp (revision 29048)
+++ src/Utils/CmdUrlParser.cpp (working copy)
@@ -72,6 +72,8 @@
isCmdAllowed = true;
else if (cmd.CompareNoCase(L"log") == 0)
isCmdAllowed = true;
+ else if (cmd.CompareNoCase(L"properties") == 0)
+ isCmdAllowed = true;
if (!isCmdAllowed)
return CString(); // command is not on the allowed list,
return empty command line