Skip to content

Instantly share code, notes, and snippets.

@stefanjenkner
Last active July 7, 2017 21:53
Show Gist options
  • Save stefanjenkner/5025341 to your computer and use it in GitHub Desktop.
Save stefanjenkner/5025341 to your computer and use it in GitHub Desktop.
Export Dropbox members of shared folders
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<!--
Export Dropbox members of shared folders.
Input: DOM or content of Dropbox's Shared-Folder preferences popup.
Output: List of members with mail address...
"Member Name <member@example.com>",
"Another Member <anothermember@example.org>",
-->
<xsl:template match="div[@class='member-container']/div/div">
<xsl:value-of select="concat('&quot;', div[1]/text(), ' &lt;' ,@title, '&gt;&quot;, ')" disable-output-escaping="yes" />
</xsl:template>
</xsl:stylesheet>
@slapdud12
Copy link

i am a dummy with computers, what will you charge for actually doing that for me?
Manny
jonahs.enterprises@gmail.com

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment