Bug Reporting and Feature Request Tracking on GitHub


 
Thread Tools Search this Thread
The Lounge What is on Your Mind? Bug Reporting and Feature Request Tracking on GitHub
# 1  
Old 04-05-2019
Dear All,

I created a "new public repo" on GitHub (without the code for now but will post the code there as needed if anyone wants to fix a bug)

You can report any forum bugs and report issues in the GitHub "Issues Tab" for this repo here:

Code:
https://github.com/unixneo/unix.com.bugtracker

To report bugs, create issues, update the code wiki, etc, you will need a GitHub account.

FYI, all our code base on this site is managed in private repos on GitHub and has been that way for a few months now.

Cheers and Thanks.

Image
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Get data from GitHub using Curl

Dear friends, I am working on a bash script to get data from the github by hitting the API using curl and this is quite straight forward. However the authentication mechanism we have in our github servers makes this intricate. Here is the situation : * The github uses SSO / SAML / opensso... (0 Replies)
Discussion started by: Kochappa
0 Replies

2. Shell Programming and Scripting

Newbie question: modulo operator with negative operand, bug or feature?

Hi, I'm new to the Ash shell so my apologies if this is well known. In normal maths and other shells and languages I've used, the modulo operator always returns a positive remainder. For example see this discussion (first post so I can't hyperlink it): ... (11 Replies)
Discussion started by: FleetFoot
11 Replies

3. UNIX for Dummies Questions & Answers

GitHub documentation :: GitHub for dummies

Hi I wish to "develop" for brew. It is hosted on GitHub. What book (or online documentation) do you recommend me for GitHub and/or Git? Prefer small physical book. (1 Reply)
Discussion started by: slashdotweenie
1 Replies
Login or Register to Ask a Question
Class::Meta::Constructor(3pm)				User Contributed Perl Documentation			     Class::Meta::Constructor(3pm)

NAME
Class::Meta::Constructor - Class::Meta class constructor introspection SYNOPSIS
# Assuming MyApp::Thingy was generated by Class::Meta. my $class = MyApp::Thingy->my_class; print " Constructors: "; for my $ctor ($class->constructors) { print " o ", $ctor->name, $/; my $thingy = $ctor->call($class->package); } DESCRIPTION
This class provides an interface to the "Class::Meta" objects that describe class constructors. It supports a simple description of the constructor, a label, and the constructor visibility (private, protected, trusted,or public). Class::Meta::Constructor objects are created by Class::Meta; they are never instantiated directly in client code. To access the constructor objects for a Class::Meta-generated class, simply call its "my_class()" method to retrieve its Class::Meta::Class object, and then call the "constructors()" method on the Class::Meta::Class object. INTERFACE
Constructors new A protected method for constructing a Class::Meta::Constructor object. Do not call this method directly; Call the "add_constructor()" method on a Class::Meta object, instead. Instance Methods name my $name = $ctor->name; Returns the constructor name. package my $package = $ctor->package; Returns the package name of the class that constructor is associated with. desc my $desc = $ctor->desc; Returns the description of the constructor. label my $desc = $ctor->label; Returns label for the constructor. view my $view = $ctor->view; Returns the view of the constructor, reflecting its visibility. The possible values are defined by the following constants: Class::Meta::PUBLIC Class::Meta::PRIVATE Class::Meta::TRUSTED Class::Meta::PROTECTED class my $class = $ctor->class; Returns the Class::Meta::Class object that this constructor is associated with. Note that this object will always represent the class in which the constructor is defined, and not any of its subclasses. call my $obj = $ctor->call($package, @params); Executes the constructor. Pass in the name of the class for which it is being executed (since, thanks to subclassing, it may be different than the class with which the constructor is associated). All other parameters will be passed to the constructor. Note that it uses a "goto" to execute the constructor, so the call to "call()" itself will not appear in a call stack trace. build $ctor->build($class); This is a protected method, designed to be called only by the Class::Meta class or a subclass of Class::Meta. It takes a single argument, the Class::Meta::Class object for the class in which the constructor was defined, and generates constructor method for the Class::Meta::Constructor, either by installing the code reference passed in the "code" parameter or by creating the constructor from scratch. Although you should never call this method directly, subclasses of Class::Meta::Constructor may need to override its behavior. BUGS
Please send bug reports to <bug-class-meta@rt.cpan.org> or report them via the CPAN Request Tracker at http://rt.cpan.org/NoAuth/Bugs.html?Dist=Class-Meta <http://rt.cpan.org/NoAuth/Bugs.html?Dist=Class-Meta>. SUPPORT
This module is stored in an open GitHub repository <http://github.com/theory/class-meta/>. Feel free to fork and contribute! Please file bug reports via GitHub Issues <http://github.com/theory/class-meta/issues/> or by sending mail to bug-Class-Meta.cpan.org <mailto:bug-Class-Meta.cpan.org>. AUTHOR
David E. Wheeler <david@justatheory.com> SEE ALSO
Other classes of interest within the Class::Meta distribution include: Class::Meta Class::Meta::Class Class::Meta::Method Class::Meta::Attribute COPYRIGHT AND LICENSE
Copyright (c) 2002-2011, David E. Wheeler. Some Rights Reserved. This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.12.4 2011-08-06 Class::Meta::Constructor(3pm)