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

Allow wildcards (or regex) in the project include list #15

Closed
GoogleCodeExporter opened this issue Oct 9, 2015 · 1 comment
Closed

Comments

@GoogleCodeExporter
Copy link

Instead of configuring this way:

<setting name="ProjectNamesToInclude" serializeAs="Xml">
        <value>
          <ArrayOfString xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
            xmlns:xsd="http://www.w3.org/2001/XMLSchema">
            <string>Web (trunk)</string>
            <string>Web (branches-9.x)</string>
            <string>Web (branches-8.x)</string>
          </ArrayOfString>
        </value>
      </setting>

...perhaps we can configure this way:

<setting name="ProjectNamesToInclude" serializeAs="Xml">
        <value>
          <ArrayOfString xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
            xmlns:xsd="http://www.w3.org/2001/XMLSchema">
            <string>Web *</string>
          </ArrayOfString>
        </value>
      </setting>

...or even this way:

<setting name="ProjectNamesToInclude" serializeAs="Xml">
        <value>
          <ArrayOfString xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
            xmlns:xsd="http://www.w3.org/2001/XMLSchema">
            <string>*</string>
          </ArrayOfString>
        </value>
      </setting>

Original issue reported on code.google.com by trevor%t...@gtempaccount.com on 13 Dec 2007 at 7:18

@GoogleCodeExporter
Copy link
Author

You can currently get the last scenario by removing the setting from the
configuration file (by default, all projects are retrieved).

I really prefer the explicitness of putting in the entire name of the project.

Original comment by benca...@gmail.com on 13 Dec 2007 at 12:25

  • Changed state: Deferred
  • Added labels: Type-Enhancement
  • Removed labels: Type-Defect

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

No branches or pull requests

1 participant