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 6 years ago: mwilck liked this project.
  • over 6 years ago: cbosdonnat liked this project.
  • over 6 years ago: dmdiss liked this project.
  • over 6 years ago: AndreasStieger added keyword "perl" to this project.
  • over 6 years ago: sparschauer liked this project.
  • over 6 years ago: suntorytimed liked this project.
  • over 6 years ago: hurhaj liked this project.
  • over 6 years ago: tampakrap liked this project.
  • over 6 years ago: bruclik liked this project.
  • over 6 years ago: mkoutny liked this project.
  • over 6 years ago: AndreasStieger originated this project.

  • Comments

    Be the first to comment!

    Similar Projects

    Create object oriented API for perl's YAML::XS module by tinita

    Description

    YAML::XS is a binding to libyaml and already quite old, but the most popular YAML module for perl. There are two main issues:

    • It uses global package variables to influence behaviour.
    • It didn't implement the loading of types like numbers and booleans according to the YAML spec (neither 1.1 nor 1.2).

    Goals

    Create a new interface which works object oriented. Currently YAML::XS exports a list of functions.

    • The new API will allow to create a YAML::XS object containing configuration influencing the behaviour of loading and dumping.
      • It keeps the libyaml parser and emitter structs in memory, so repeated calls can save the creation of those structs
    • It will by default implement the YAML 1.2 Core Schema, so it is compatible to other YAML processors in perl and in other languages
    • If I have time, I would like to add the merge << key feature as an option. We could then use it in openQA as a replacement for YAML::PP to be faster.

    I already created a proof of concept with a minimal functionality some weeks before this HackWeek.

    Resources

    • Work is currently happening on the oop branch