Search Results

Search found 6 results on 1 pages for 'leeeroy'.

Page 1/1 | 1 

  • Using Hudson to build RPM packages.

    - by leeeroy
    I've a C project set up in Hudson doing nighly builds, i've also an .rpm spec file used for creating rpms from these sources. Does anyone have any experience on how to build rpms out of all this using Hudson ? Right now the only solution I see is to set up a job running a script that checks svn exports the sources ,creates a tarball and does the whole rpm build. This doesn't seem to integrate well with Hudson - e.g. how do I collect the artifacts ?

    Read the article

  • Spring MVC- several parts/views from a controller

    - by leeeroy
    i'm looking into using Spring MVC - how would I structure the fact that a page can be composed of several different views Consider a controller that's basically: public ModelAndView handleRequest(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { List<Post> posts = repository.getNewPosts(); return new ModelAndView("posts", "posts", posts); } However, I decide that on every page, I'd also want a side "pane" that shows data based on some logic. That "pane" would just be a .jsp that gets included from the above "posts" view, and I could change my controller to: public ModelAndView handleRequest(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { List<Post> posts = repository.getNewPosts(); List<Items> items= repository.getItems(); return new ModelAndView("model", "model", new MyCommonViewModel(posts,items)); } But then I'd have to change every controller to also do List<Items> items= repository.getItems(); , and change everything again the next time I come up with something new. This seems messy. How do I structure this ? `

    Read the article

  • CRT, do we still need to redistribute it ?

    - by leeeroy
    Do we still need to bother with vcredist.exe when distributing windows native applications ? Does any of these come bundled with Win-7 ? If not, are there any technical reasons these are not shipped to people via e.g. windows update - insteadof letting us burden the customers with yet-another-thing-that.must-work ? (Ok, that might sound argumentative, but I'm really wondering the reason these libraries are not default installed/updated on windows machines)

    Read the article

1