Displaying 20 results from an estimated 600 matches similar to: "Changing the model_path."
2010 Jun 12
2
Redirections, Duplicate Content & Permalinks
Hi,
Recently I''ve looked at trying to get a permalink system up to
increase my site''s ranking in google (and to have nice looking URLs);
however I''ve been very worried about google and duplicate content.
I currently already have a "flaw" in my site, in which if you go to
mysite.com/tutorials/ID it will bring you to the same place as
2017 Oct 02
2
Where did Alive go?
Sorry, we really screwed up the server migration.
Alive is now working again and should be fixed for good :)
Permalinks are still missing; we are working on recovering those.
Apologies again for all the trouble.
Nuno
-----Original Message-----
From: Sanjay Patel
Sent: Monday, October 2, 2017 5:10 PM
Subject: Re: [llvm-dev] Where did Alive go?
I still can't use the web app - spins for
2017 Sep 22
2
Where did Alive go?
Craig I know it's a pain compared to the web interface but Alive is
pretty easy to install and run from a shell.
John
On 9/22/17 11:41 AM, Craig Topper via llvm-dev wrote:
> And now rise4fun.com <http://rise4fun.com> doesn't work at all?
>
> ~Craig
>
> On Wed, Sep 20, 2017 at 9:53 AM, Nuno Lopes <nunoplopes at sapo.pt
> <mailto:nunoplopes at
2017 Sep 22
0
Where did Alive go?
And now rise4fun.com doesn't work at all?
~Craig
On Wed, Sep 20, 2017 at 9:53 AM, Nuno Lopes <nunoplopes at sapo.pt> wrote:
> Alive is now working again. There was a migration to a new server.
> Permalinks are still being copied from backup; they will work again
> shortly as well. (I would probably not create new ones since they may get
> replaced while the copy is in
2017 Sep 20
2
Where did Alive go?
Alive is now working again. There was a migration to a new server.
Permalinks are still being copied from backup; they will work again
shortly as well. (I would probably not create new ones since they may
get replaced while the copy is in flux).
Nuno
Citando Nuno Lopes via llvm-dev <llvm-dev at lists.llvm.org>:
> I'm investigating; thanks for the heads up. Sorry for the
2006 Jan 15
4
form inputs resetting on sumbit
I searched for forum for something about this but couldn''t find
anything.
For example I have this in my view: (you enter start/end dates from
dropdowns, pick a category and a report is generated.)
<%= start_form_tag :action => ''display_report'' %>
From: <%= date_select ''report'', ''date1'' %> <br />
To: <%=
2009 Sep 28
7
Basic Rails problem with has_many nil values and permalinks
Hi,
I have a model property with has_many. I find the property and then I
need to find the name of the building or the neighborhood that the
property belongs to. The property is not always assigned a building or
neighborhood.
This becomes a problem when createing permalinks with permalink_fu.
has_permalink [:neighborhood_name, :building_name, :address]
The neighborhood name and building name
2003 Jun 24
1
S4 method setClass prototype definition question
Dear list,
this is not a problem report -- I would like to ask for advise what the
recommended and safe way to perform the following is or what problems might
arise in doing it differently.
The question is: What is the recommended way of providing a default value in a
prototype statement for a derived class for a slot provided from a parent class?
I have first consulted the methods package
2011 Apr 08
2
[Weft QDA users] Shifty Markings - round 2
Good Afternoon,
I''m new to the mailing list and was wondering if anyone could help me with my current headache. I saw in the previous posts that someone else has had the problem of shifty markings. I too am finding the text immediately above what I wrote appearing in the coding reports, even though the coding in the documents themselves remains as it should. The project involves
2005 Apr 24
4
Typo 2.0
I''m proud to announce the 2.0 release of the typo web logging engine.
What started as a toy project while
I was waiting for a client at starbucks now became a prestige open
source project with tons of modern features a dedicated dev team and
even its own hosting service!
Get it at http://rubyforge.org/projects/typo/
The 2.0 release has been long coming. Here are some of the new
2006 Jul 08
9
How to handle dynamically columned tables in rails
I want to build an application that lets me (the end user accessing a
web page) design a simple list with columns and add records. E.g., if
the end user says I want a table that has a list of songs, he can create
a list (title, date, artist, label) and then make another list of, e.g.,
books on his bookshelf with the necessary columns (title, author,
pub_date, shelf).
The end user
2005 Dec 27
6
avoid multiple render per action
Hello,
I have a hash that contains categories, and each category ID is a
hash of subcategories. What i want to do is dynamically load that
hash, loop thru it, for each category , subcat run a query against the
DB, and render a partial. The issue is i put the render:partial in a
for loop but you can only render once per action. What is the best
way to loop thru all my categories without a
2006 Jul 04
1
Has_many :through with checkboxes?
Just when I started getting the hang of has_and_belongs_to_many
relationships, I realize that I should probably convert several of my
app''s joins to has_many :through type relationships.
One example, pairing users with categories via subscriptions, where
each user can be the "owner" of a category, has given me particular
trouble when I try to update a user''s
2006 Apr 06
1
Rendering partials with pagination
I currently have a call to this action, which I''d like to paginate:
def get_words
@catid = params[:category]
@words = Category.find(@catid).words
render :partial => "word_display", :collection => @words
end
As you can see, a word_display partial is rendered for each word.
If I add the pagination call (getting the links object), how can I then
get
2008 Jul 26
1
Simple vector question.
I have some data that I read in via read.csv:
sales2007 <- read.csv("Total2007.dat", header=TRUE)
The data looks like:
> sales2007[1:605,]
Year DayOfYear Sku Quantity CatId Category SubCategory
1 2007 1 100091 1 10862 HOLIDAY Christmas
2 2007 1 100138 1 11160 PET COSTUMES Famous (Licensed)
3 2007
2005 Dec 19
2
Difficulty using correct moldel for the data in DB
Hi everyone,
I''ve tried posting the same question to the list last Friday but
somehow did not see it being posted..
I''ve just started with Rails and Ruby. I just started to play one of
those RPG and to get my feet wet I''m writing an app to keep track of
item fusions. So the scoop is that item can be fused with another
items to create a higher level item. The higher
2006 Nov 04
1
search function
Hey all,
I''m writing a search function for my page but I get stuck at the form
part. When I press submit all the params are nil.
here is my list.rhtml:
<%= start_form_tag :controller=>''ads'', :action => ''search'' %>
<%= render :controller=>''cats'',:partial => ''/cats/search'' %>
<p> <%=
2004 Aug 26
1
Novell Evolution Connector
I just built a version of the Novell Evolution Connector (to use
Evolution with a MS exchange server) that works with
RHEL/WBEL/CentOS/TaoLinux.
You can get it from here if you are interested...
http://www.hughesjr.com/component/option,com_docman/Itemid,34/task,view_category/catid,16/order,dmdate_published/ascdesc,DESC/
Here is the Novell link:
http://www.novell.com/products/connector/
Johnny
2008 Aug 05
1
RESHAPE cast help.
I have a set of data that is basically sales figures for a given year. It has columns for Yeaqr, Day Of Year, Sku, SubCatetory, and Category. The first few lines of data look like:
Year DayOfYear Sku Quantity CatId Category SubCategory
1 2007 1 100091 1 10862 HOLIDAY Christmas
2 2007 1 100138 1 11160 PET COSTUMES Famous
2004 May 18
2
ADIT 600 Manual
I am trying to find a manual for the Carrier Access Adit 600. Does anyone
know where I might be able to find one?
Thanks
-Jon
--
Jon J. Brandon jon@monsoonretail.com http://www.monsoonretail.com