#60 Forum search and issue tracking questions

Matthew Giannini Sat 6 Oct 2012

A few questions:

1) Is it possible to search the forum? If not, it would be a nice capability to have.

2) Even though project haystack is mostly a specification, is there a way to open "issues" against the specification; enhancements?

3) The haystack-java repo on bitbucket does not have issue tracking enabled. What is the best way to communicate issues with that project?

3.1) I think there is a small bug in HStr zinc encoding:

default:
  s.append('u').append('0').append('0');
  if (c < 0xf) s.append('0');
  s.append(Integer.toHexString(c));

I think it should be if (c <= 0xf)

Brian Frank Sun 7 Oct 2012

Hi Matthew,

We don't have search other than google. Although we do have a lucene plugin for the webstack powering the site. I'm not sure why I never turned that on, but I'll definitely take a look.

Anything to discuss or report should just be on this forum. I think that will be a nice centralized place to keep track of everything. Although if you have a simple patch to my code, you are welcome to just email me directly. Thanks for bug report - will fix.

Login or Signup to reply.