Bugzilla supports automatic username completion.

This project is to extend this feature to allow restriction of the nick completion feature by user and on the data returned.

The following selectors need to be supported:

  • requesting user (bugzilla group, or rather LDAP attributes/groups)
  • scope of returned users (same)

Looking for hackers with the skills:

perl

This project is part of:

Hack Week 17

Activity

  • over 7 years ago: mwilck liked this project.
  • over 7 years ago: cbosdonnat liked this project.
  • over 7 years ago: dmdiss liked this project.
  • over 7 years ago: AndreasStieger added keyword "perl" to this project.
  • over 7 years ago: sparschauer liked this project.
  • over 7 years ago: suntorytimed liked this project.
  • over 7 years ago: hurhaj liked this project.
  • over 7 years ago: tampakrap liked this project.
  • over 7 years ago: bruclik liked this project.
  • over 7 years ago: mkoutny liked this project.
  • over 7 years ago: AndreasStieger originated this project.

  • Comments

    Be the first to comment!

    Similar Projects

    MCP Perl SDK by kraih

    Description

    We've been using the MCP Perl SDK to connect openQA with AI. And while the basics are working pretty well, the SDK is not fully spec compliant yet. So let's change that!

    Goals

    • Support for Resources
    • All response types (Audio, Resource Links, Embedded Resources...)
    • Tool/Prompt/Resource update notifications
    • Dynamic Tool/Prompt/Resource lists
    • New authentication mechanisms

    Resources


    Create a page with all devel:languages:perl packages and their versions by tinita

    Description

    Perl projects now live in git: https://src.opensuse.org/perl

    It would be useful to have an easy way to check which version of which perl module is in devel:languages:perl. Also we have meta overrides and patches for various modules, and it would be good to have them at a central place, so it is easier to lookup, and we can share with other vendors.

    I did some initial data dump here a while ago: https://github.com/perlpunk/cpan-meta

    But I never had the time to automate this.

    I can also use the data to check if there are necessary updates (currently it uses data from download.opensuse.org, so there is some delay and it depends on building).

    Goals

    • Have a script that updates a central repository (e.g. https://src.opensuse.org/perl/_metadata) with metadata by looking at https://src.opensuse.org/perl/_ObsPrj (check if there are any changes from the last run)
    • Create a HTML page with the list of packages (use Javascript and some table library to make it easily searchable)

    Resources

    Results

    Day 1

    Day 2

    • HTML Page has now links to src.opensuse.org and the date of the last update, plus a short info at the top
    • Code is now 100% covered by tests: https://app.codecov.io/gh/perlpunk/opensuse-perl-meta
    • I used the modern perl class feature, which makes perl classes even nicer and shorter. See example
    • Tests
      • I tried out the mocking feature of the modern Test2::V0 library which provides call tracking. See example
      • I tried out comparing data structures with the new Test2::V0 library. It let's you compare parts of the structure with the like function, which only compares the date that is mentioned in the expected data. example

    Day 3

    • Added various things to the table
      • Dependencies column
      • Show popup with info for cpanspec, patches and dependencies
      • Added last date / commit to the data export.

    Plan: With the added date / commit we can now daily check _ObsPrj for changes and only fetch the data for changed packages.

    Day 4