Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

make-id handle operator<< and operator>> #13

Closed
vinniefalco opened this issue Nov 7, 2016 · 2 comments
Closed

make-id handle operator<< and operator>> #13

vinniefalco opened this issue Nov 7, 2016 · 2 comments

Comments

@vinniefalco
Copy link
Member

Simple fix, just add:

    <xsl:when test="substring($name, string-length($name) - 1) = '&lt;&lt;'">
      <xsl:call-template name="make-id">
        <xsl:with-param name="name"
         select="concat(substring-before($name, '&lt;&lt;'), '_ls_')"/>
      </xsl:call-template>
    </xsl:when>
    <xsl:when test="substring($name, string-length($name) - 1) = '&gt;&gt;'">
      <xsl:call-template name="make-id">
        <xsl:with-param name="name"
         select="concat(substring-before($name, '&gt;&gt;'), '_rs_')"/>
      </xsl:call-template>
    </xsl:when>
@evanlenz
Copy link
Contributor

Is this issue still a requirement? If I understand correctly, it would mean that the output URI for, for example, this page:

https://www.boost.org/doc/libs/1_75_0/libs/beast/doc/html/beast/ref/boost__beast__http__operator_lt__lt_.html

Would instead look like this:

https://www.boost.org/doc/libs/1_75_0/libs/beast/doc/html/beast/ref/boost__beast__http__operator_ls_.html

Other than that, it wouldn't produce any changes visible to the user. @vinniefalco, let me know if you'd like me to make that change to the latest code. (It would of course use the new code's mechanism but produce the same result as your fix above to the old code would have produced).

@vinniefalco
Copy link
Member Author

I thought it was broken, but it looks like it works? We can close this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants