This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<xsl:stylesheet version="1.0" | |
xmlns="http://www.w3.org/1999/xhtml" | |
xmlns:x="http://www.w3.org/1999/xhtml" | |
exclude-result-prefixes="x" | |
version="1.0"> | |
<!-- By default, copy everything unless we have a rule otherwise --> | |
<xsl:template match="@*|node()"> | |
<xsl:copy> | |
<xsl:apply-templates select="@*|node()"/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# encoding: utf-8 | |
""" | |
epub_to_opds_entry.py | |
Created by Keith Fahlgren on Tue Apr 5 21:21:02 PDT 2011 | |
Copyright (c) 2011 Threepress. All rights reserved. | |
All rights reserved. | |
Redistribution and use in source and binary forms, with or without |