Giter Site home page Giter Site logo

j2bugzilla's People

Contributors

jinsem avatar thorn1089 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

j2bugzilla's Issues

Make j2bugzilla able to handle multiple values "alias" field

Since Bugzilla release 5.0, bugs can now have multiple aliases assigned to them. Before each bug could only have a single value. So j2bugzilla crash when try to get alias from a bug;

Caused by: java.lang.ClassCastException: [Ljava.lang.Object; cannot be cast to java.lang.String
at com.j2bugzilla.base.Bug.getAlias(Bug.java:109)

Is it possible to make j2bugzilla handle alias properly?

Thanks

GetAttachments in Bugzilla 3.6

What steps will reproduce the problem?
1.Am trying to get the list of attachments that is saved as part of the bug.


GetAttachments bugzAttach = new GetAttachments(bug_id);
conn.executeMethod(bugzAttach);     
Integer attachmentCount = bugzAttach.getAttachments().size();


What is the expected output? What do you see instead?

The count is not coming despite the bug id having  the attachments

What version of the product are you using? On what operating system?

3.6.9 and Windows OS

Please provide any additional information below.

Original issue reported on code.google.com by [email protected] on 10 Aug 2012 at 3:28

BugzillaConnector does not allow "Basic access authentication"

What steps will reproduce the problem?
1. Connect to any protected Bugzilla installation.

What is the expected output? What do you see instead?
It should allow connections to a protected Bugzilla installations - but 
currently only unprotected installations are supported.

What version of the product are you using? On what operating system?
current svn checkout.

Please provide any additional information below.
See my patch for a suggested change. ( btw. this patch works for my  protected 
bugzilla installation )


Original issue reported on code.google.com by [email protected] on 1 Mar 2011 at 5:35

Attachments:

New URLConnection problem

"The method newURLConnection(URL) is undefined for the type XmlRpcSunHttpTransport" I am facing the above problem in line number 224 of BugzillaConnector.java.. I have taken your code and I tried in my system.. Please anyone can tell me the solution?

PHP SOAP Extension not enabled in MantisBT

Hi friends,
I am new to MantisBT. I don't know how to enable PHP SOAP Extension in MantisBT. I found some suggestions when googled it but the issue still exists. Please can anyone tell me how to enable PHP SOAP Extension in MantisBT.

Thanks,
Gangadhar Badagi

retrieving bugs created within a date range via the j2bugzilla API

Attempting to do this, I have added a new search limiter in your enumeration in 
class BugSearch:
        CREATION_TIME("creation_ts"),

Then, I am searching normally using the following query:
        SearchQuery(SearchLimiter.CREATION_TIME, "YYYY-MM-DD")
and it works fine. It returns the bugs created on that date or later.

However, I am failing to expand it to a date range. I have tried:
        SearchQuery(SearchLimiter.CREATION_TIME, "YYYY-MM-DD:YYYY-MM-DD")

What would you suggest?

I am using j2bugzilla-2.1.1.jar 

Thanks in advance,
Yannis

Original issue reported on code.google.com by [email protected] on 3 May 2013 at 3:21

Enhancement : allow more than one SearchLimit

With an additional method, you can search for more than one SearchLimiter.

eg.: 

BugSearch search = new BugSearch(SearchLimiter.OWNER,settings.user);
search.addQueryParam(SearchLimiter.PRIORITY, { "P1","P2","P3"});
search.addQueryParam(SearchLimiter.COMPONENT, "javaProject1");
search.addQueryParam(SearchLimiter.STATUS, { "NEW","ASSIGNED","REOPENED" });


Original issue reported on code.google.com by [email protected] on 1 Mar 2011 at 5:51

Attachments:

https://landfill.bugzilla.org with 3.6.5+

What steps will reproduce the problem?
1. https://landfill.bugzilla.org, with bugzilla version 3.6.5+
2. GetBug getBug = new GetBug(id);
   bugzillazConnector.executeMethod(getBug);
   Bug bug = getBug.getBug(); //returns null because required field "version" is empty

What is the expected output? What do you see instead?
Bug that is represented by the given ID.

What version of the product are you using? On what operating system?
3.6.5+

Please provide any additional information below.
is "version" mandatory field in bugzilla specs?

Original issue reported on code.google.com by [email protected] on 21 Jul 2011 at 8:02

"pom.xml bugfixing and enhancing"-request

What steps will reproduce the problem?
1. Eclipse on my Ubuntu-Box can't open your pom.xml without errors.

Futher request : 
1. Adding some bells and whistles


Comments to my patch : 
a) Is the dependency xmlrpc-server realy nessesary ? Your api seams to work 
nicely without it.

b) My svn checkout does not live in "C:\Users\Tom\workspace\Personal 
Projects\JBugz\" - if you change it to only 'src' - maven can find the source. 

c) Finally I added some bells and whistles to the build-plugin, to ensure the 
correct jdk-version, show warnings, etc.


Original issue reported on code.google.com by [email protected] on 1 Mar 2011 at 5:17

Attachments:

Fails to parse Bugzilla response

BugzillaConnector conn = new BugzillaConnector();
conn.connectTo("https://bugzilla.mozilla.org/");
BugComments bc = new BugComments(307965);
conn.executeMethod(bc);

[Fatal Error] loose.dtd:31:3: The declaration for the entity "HTML.Version" 
must end with '>'.
Mar 7, 2011 12:34:44 PM jbugz.base.BugzillaConnector executeMethod
SEVERE: Could not execute method User.login
org.apache.xmlrpc.client.XmlRpcClientException: Failed to parse server's 
response: The declaration for the entity "HTML.Version" must end with '>'.
    at org.apache.xmlrpc.client.XmlRpcStreamTransport.readResponse(XmlRpcStreamTransport.java:188)
    at org.apache.xmlrpc.client.XmlRpcStreamTransport.sendRequest(XmlRpcStreamTransport.java:156)
    at org.apache.xmlrpc.client.XmlRpcHttpTransport.sendRequest(XmlRpcHttpTransport.java:143)
    at org.apache.xmlrpc.client.XmlRpcSunHttpTransport.sendRequest(XmlRpcSunHttpTransport.java:69)
    at org.apache.xmlrpc.client.XmlRpcClientWorker.execute(XmlRpcClientWorker.java:56)
    at org.apache.xmlrpc.client.XmlRpcClient.execute(XmlRpcClient.java:167)
    at org.apache.xmlrpc.client.XmlRpcClient.execute(XmlRpcClient.java:137)
    at org.apache.xmlrpc.client.XmlRpcClient.execute(XmlRpcClient.java:126)
    at jbugz.base.BugzillaConnector.executeMethod(BugzillaConnector.java:166)


Original issue reported on code.google.com by [email protected] on 7 Mar 2011 at 8:39

Reduce hackyness by 1

What steps will reproduce the problem?
1. getPriority() on my System always returns P3 ( default )

What is the expected output? What do you see instead?
less hacky ;) 

If getPriority() can't parse the value, it will throw a NumberFormatException.

Original issue reported on code.google.com by [email protected] on 1 Mar 2011 at 5:43

Attachments:

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.