search for: project_numb

Displaying 7 results from an estimated 7 matches for "project_numb".

Did you mean: project_num
2006 Jan 08
2
RoR AJAX select box update?
Hi, I want to update a select box depending on another selected option thru ajax. Heres how I do it # _form.rhtml <select id="budget_coordinator_id" name="budget[coordinator_id]" onchange="<%= remote_function(:update => "budget_project_number", :url => { :action => :get_projects }) %>"> <%= options_from_collection_for_select(Coordinator.find_all, "id", "coordinator_name") %> </select> <select id="budget_project_number" name="budget[project_number]"> &...
2012 Sep 29
2
[libopusfile PATCH] build: implement autotools build system for libopusfile. (v4)
...ity} +API documentation ............ : ${enable_doc} +]) diff --git a/doc/Doxyfile b/doc/Doxyfile deleted file mode 100644 index 5f771d0..0000000 --- a/doc/Doxyfile +++ /dev/null @@ -1,18 +0,0 @@ -# Process with doxygen to generate API documentation - -PROJECT_NAME = "opusfile" -PROJECT_NUMBER = -PROJECT_BRIEF = "Stand alone decoder library for .opus files." -INPUT = ../include/opusfile.h -OPTIMIZE_OUTPUT_FOR_C = YES - -FILE_VERSION_FILTER = "/bin/sh git-version.sh" - -QUIET = YES -WARNINGS = YES -...
2008 Mar 12
2
Building a view for a 3 model has_many relationship
...ust remain blank. I''m doing something similar in another view that works fine with a habtm relationship: <% for charge in @charges %> <div> <p> <%= check_box_tag "user[charge_ids][]", charge.id, @user.charges.include?(charge) %> <%= [charge.project_number, charge.primary_number].join('''') %> - <%= charge.label %> </p> </div> <% end %> That is used to determine which charges a user has access to, so when on the edit screen for a user, it lists all the charges with a check box and when the form is sub...
2013 Jan 09
4
[PATCH] doc: fix out-of-tree build
It seems the mail you are referring to never made the list: it's not in the archives and not in my mailbox. Take a look here: http://lists.xiph.org/pipermail/flac-dev/2012-December/thread.html It's probably still waiting for moderation. On 07-01-13 17:07, Olivier BLIN wrote: > On 29/12/2012 00:06, Olivier Blin wrote: >> When building outside of the source tree, the Doxyfile
2012 Dec 28
0
[PATCH] doc: fix out-of-tree build
...----------- -# Project related configuration options -#--------------------------------------------------------------------------- - -# The PROJECT_NAME tag is a single word (or a sequence of words surrounded -# by quotes) that should identify the project. - -PROJECT_NAME = FLAC - -# The PROJECT_NUMBER tag can be used to enter a project or revision number. -# This could be handy for archiving the generated documentation or -# if some version control system is used. - -PROJECT_NUMBER = 1.2.1 - -# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) -# base path where...
2012 Dec 28
3
[PATCH] doc: fix out-of-tree build
...----------- -# Project related configuration options -#--------------------------------------------------------------------------- - -# The PROJECT_NAME tag is a single word (or a sequence of words surrounded -# by quotes) that should identify the project. - -PROJECT_NAME = FLAC - -# The PROJECT_NUMBER tag can be used to enter a project or revision number. -# This could be handy for archiving the generated documentation or -# if some version control system is used. - -PROJECT_NUMBER = 1.2.1 - -# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) -# base path where...
2006 Jul 14
18
ActiveRecord Love While We''re At It
I am working on and will be publicly showing ActiveRecord some love around the time of the RubyConf*MI [1] in late August. My main focus is getting AR to better handle inserts, updates and merges when working large sets of data. It can improve improve performance by 400% to 600% in preliminary benchmarks. I am coding this in a way so it can be patched to AR easily, and with that in mind