Displaying 20 results from an estimated 41 matches for "project_name".
2006 Jan 09
7
Large select list, speed issues
..."#ffffff" text="#000000">
<font size="-1"><font face="Verdana">I have a piece of code in my page
to generate a drop-down listing all of the company''s projects in
alphabetical order.<br>
<br>
<%= select_tag
name=''project_name'',options_from_collection_for_select(Project.find(:all,
:conditions => "status not containing ''dead''", :order =>
''project_name''), "id", "project_name") %><br>
<br>
When my page was in PHP, in which I ran...
2005 Jun 24
14
apache2 fastcgi (fcgi) internal server errors, still :(
...n do prevent 500s from hitting my users? (besides
redirecting them with javascript to the same URL which will be fine on
the next request? :)
thanks,
_alex
[Fri Jun 24 12:30:45 2005] [error] [client 172.20.0.175] FastCGI:
incomplete headers (0 bytes) received from server
"/var/www/project_name/public/dispatch.fcgi"
[Fri Jun 24 12:30:45 2005] [warn] FastCGI: server
"/var/www/project_name/public/dispatch.fcgi" (pid 9337) terminated due
to uncaught signal ''6'' (Aborted)
[Fri Jun 24 12:30:45 2005] [warn] FastCGI: server
"/var/www/project_name/public...
2010 Dec 21
1
Matching 2 SQL tables
Hi,
I have a postgresql and a mysql database and I would like to combine the
info from two different tables in R. Both databases contain a table with
three columns: project_name, release_id and release_date. So each project
output could be released multiple times (I am interested in the first
release_date). However, some of the data is missing. Basically, what I want
to do is to try and fill the missing data in 1 table with the data from the
other table. The difficulty her...
2006 Feb 12
4
How do I emulate directory structure with routes?
I''ve got something that I''m not sure is actually doable. I have a
very complex model relationship with a lot of parent/child/grandchild/
greatgrandchild etc stuff going on. Is there a way to do a route like
this?
tld.com/
projects/:project_name/:sequence_acronym/:shot_number/:department/:eleme
nt_name/:version/
where:
project is the parent of sequence
sequence is the parent of shot
shot and department are parents to element
element (will) exists in an acts_as_versioned model.
or to also show it
tld.com/projects/:project_name/:departm...
2007 Jun 06
0
Capistrano: Port in SVN
. . .
* executing "sudo chmod -R g+w /usr/local/svn/project_name"
servers: ["project_name.com"]
[project_name.com] executing command
command finished
* executing task svn_import
Adding branches and tags
ssh: connect to host project_name.com port 22: Connection refused
svn: Connection closed unexpectedly
Importing application.
ssh...
2011 Mar 21
1
Getting user session object in cucumber
...on project (.+)$/ do |page_name|
current_path = URI.parse(current_url).path
if current_path.respond_to? :should
current_path.should == path_to(page_name)
else
assert_equal path_to(page_name), current_path
end
end
When /^user create a project with name "([^"]*)"$/ do |project_name|
visit new_project_path
fill_in("project_name", :with=>project_name)
click_button("Add Property")
end
"
I know that I am missing something but as I am learner I am not able to
figure out.
Can anyone tell me How can I solve this?
Please it is very urgent.
Thanks,
M...
2006 Jun 02
2
pass extra value through text_field_with_auto_complete?
Hi,
I''m wondering if it is possible to pass an extra value (which I will
use to further restrict my query) using text_field_with_auto_complete?
Any suggestions would be appreciated!
-Mike
2009 Apr 04
1
Rails 2.3.2 - template question
Simplest of template files, tst.rb, contains:
PROJECT_NAME = File.basename(RAILS_ROOT)
run ''echo '' + PROJECT_NAME
Running command "rails tst -m ~/Rails_Tools/tst.rb" produces:
create
create app/controllers
.
.
create log/development.log
create log/test.log
applying template: /Users/r...
2010 Oct 06
1
Dynamic Variable Name
Is it possible to dynamically determine a variable''s name?
I would like to do:
$project_NAME
where
NAME can be anything.
I''ve tried this (for experiment purposes):
$project_name = ''my_project''
$project_my_project = ''/mnt/pa/test'' #this variable will be set out
of this script
notice($"project$project_name")
This is not parseble! I...
2008 Dec 31
3
[LLVMdev] Unit test patch, updated
On Dec 30, 2008, at 2:54 PM, Talin wrote:
> OK changes made and new patch attached.
Nice
+++ utils/unittest/Makefile (revision 0)
...
+# This has to come after Makefile.common, since it doesn't allow us to
+# override the VPATH value unless we set PROJECT_NAME, which we don't
want
+# to do.
+VPATH = $(LLVM_SRC_ROOT)/utils/unittest/googletest/src/
Why play with VPATH here? What is this doing? Can this be handled a
different way? Similarly in makefile.unittest.
+++ unittests/ADT/DenseMapTest.cpp (revision 0)
+namespace {
+
+using namespace ll...
2006 Sep 19
9
RoR with apache2 on SuSE
...cheWithFastCGIAndRubyBindings
And I have managed to get ruby, rails, fcgi, and mod_fcgi all installed
and working. I even have a test fcgi script that runs fine. However,
I''m just not sure how to reference the project once it is on the server.
With webbrick you just say localhost:3000/project_name. But we can''t
say http://192.168.X.X/project_name on the apache web server because
there is no index document. I can hit
http://192.168.X.X/project_name/public but when I click on about your
applications environment I get this ugly output:
#!/usr/bin/ruby # # You may specify the pat...
2008 Mar 21
3
Error in new project boot.rb
When I create a new 2.0 project (rails project_name)
Aptana shows what appears to me to be a valid error in boot.rb
The line:
if version = self.class.gem_version
is an assignment
Should this not read:
if version == self.class.gem_version
def load_rails_gem
if version = self.class.gem_version
gem ''rails'', versi...
2006 Mar 31
5
RoR 1.1 RJS problem
...;)
end
end
*******************************************************************************
The index.rhtml:
<%=
javascript_tag("document.getElementById(''index'').className=''selected'';")
%>
<div id="main_title">
<%= $PROJECT_NAME %> Configuration Wizard
</div> <!-- main_title -->
<div id="main_description">
This wizard will walk you through configuring your <%=
$PROJECT_NAME %>
system. Click the Begin button to start the process.
</div> <!-- main_description -...
2009 Jan 01
0
[LLVMdev] Unit test patch, updated
....com>
> On Dec 30, 2008, at 2:54 PM, Talin wrote:
>
> OK changes made and new patch attached.
>
> +++ utils/unittest/Makefile (revision 0)
>
> ...
> +# This has to come after Makefile.common, since it doesn't allow us to
> +# override the VPATH value unless we set PROJECT_NAME, which we don't want
> +# to do.
> +VPATH = $(LLVM_SRC_ROOT)/utils/unittest/googletest/src/
>
>
> Why play with VPATH here? What is this doing? Can this be handled a
> different way? Similarly in makefile.unittest.
>
Removed VPATH in this file by moving GTest up one dir...
2012 Sep 29
2
[libopusfile PATCH] build: implement autotools build system for libopusfile. (v4)
...visibility ............ : ${cc_cv_flag_visibility}
+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...
2010 Nov 27
9
rails server command
Hi. When I try and start my server using ''rails server'' I get the
following.....
Usage:
rails new APP_PATH [options]
Options:
-r, [--ruby=PATH] # Path to the Ruby binary of your choice
# Default:
C:/InstantRails-2.0-win/ruby/bin/r
xe
-d, [--database=DATABASE] # Preconfigure for selected database
(options
2005 Jan 16
0
[LLVMdev] Proposed Makefile Changes
...for projects. Please review
this file:
http://illuvium.net/src/projects/sample/Makefile.common.in
as it contains the complete list of variables you need to set and
provides some documentation on them. Note that there are three
new project related variables you need to set: PROJECT_NAME,
PROJ_VERSION, and PROJ_INSTALL_DIR. These variables make it
possible for the "install", "dist", and "dist-check" targets to work
for your project too, not just LLVM.
3. If it isn't clear how to set up your project, please consult the
documentati...
2005 Jan 16
1
[LLVMdev] Proposed Makefile Changes
...view
> this file:
> http://illuvium.net/src/projects/sample/Makefile.common.in
> as it contains the complete list of variables you need to set and
> provides some documentation on them. Note that there are three
> new project related variables you need to set: PROJECT_NAME,
> PROJ_VERSION, and PROJ_INSTALL_DIR. These variables make it
> possible for the "install", "dist", and "dist-check" targets to work
> for your project too, not just LLVM.
>
> 3. If it isn't clear how to set up your project, please co...
2006 Aug 16
0
Eclipse, RadRails, Configuration
...Create Rails application", it popups a dialog
where I selected External Tools. Then it displays a window that asks for
a configuration information. Hre are the valeus I entered:
under the tab main:
- location /usr/local/bin/rails
- working directory ${project_loc}
- Arguments ../${project_name}
under the tab Refresh
- checked the Refresh Resources, the entire workspace and Recursively
include
under Environment
- empty
under Common
- Save as Local file, Display in External tools, Allocate console, and
Launch in background
IT WORKS!!!!!!!!
--
Posted via http://www.ruby-...
2006 Mar 02
2
Ajax.Autocompleter with an empty field
Hey guys,
I have a field that will have very few autocomplete options. I have
an ajax.autocompleter on it that works great, but I wanted to make it
start autocompleting as soon as the field is blur()ed, so that even
if the field is empty, the list will still appear. Like a combo box
in windows. How can I do this? Setting :min_chars => 0 (or even -1)
didn''t work...
-Josh