similar to: Rails + Eclipse + Utf-8

Displaying 20 results from an estimated 1000 matches similar to: "Rails + Eclipse + Utf-8"

2006 Apr 23
5
Controllers in folders and helper scope in Rails >1.0
Hi, Here''s my problem. I tried to google it, read the release-docs and haven''t found anything similar. My application uses folders to store controllers, as described in the Rails book. I need to have same-named controllers for admin and for users, so it looks like this: /app/controllers/admin/project_controller.rb /app/controllers/admin/...
2006 Apr 24
7
Controller can''t find helper?????!!!!!????
I have a controller named xyzController under app/controllers I have a helper class named xyzHelper under app/helpers. Shouldn''t I be able to call methods from xyzHelper inside of xyzController without any problems? Thanks, Wes -- Posted via http://www.ruby-forum.com/.
2006 Jan 02
2
What happened to Rails::Version::STRING in Rails 1.0.0?
Hello, Maybe it''s a silly question, but I cannot find anything in Rails changelog or google it out. There is a Rails::Version module (since version 0.14.something) that gives me a version number of Rails, similarily to Rails::Info module. Apparently in Rails version 1.0 (or maybe sooner) the name of the module was changed from ''Version'' to
2005 Oct 21
21
PHPonRails ?
I''ve have a very tight schedule project that MUST (not my option), be developed in PHP. Is there a Rails based framework for this platform? I like the Rails way of things, but in this case, I cannot choose the programming language, so please don''t offend me :-) Thanks in advance, Alessandro _______________________________________________ Rails mailing list
2007 Oct 27
2
UTF-8 BOM
I'v encountered what seems to be a bug in PHP Markdown v1.0.1k. Given a UTF-8 with a BOM, the first line is not parsed. A brief search revealed a bug report for a similar issue in python- markdown: > I'm using the markdown.py command to generate HTML from Markdown > documentation and I've found that if a utf-8 file starts with a BOM > a paragraph is generated
2010 Feb 16
7
YAML, UTF-8, TextMate, Notepad
This is not a question but a report on the difficulties I had and the solution I found with respect to UTF-8, YAML::load, and Ruby/Rails. Comments are appreciated. - - - I had been struggling for two days to get UTF-8 working in my Rails app. I had/have a localization file, lib\locale\de.yml, that had iso-8859-1 encoding. I could not get that to display properly. Marnen, quite correctly,
2005 Oct 04
6
RadRails
Anyone using RadRails here? How is it if so? I am trying to use it and it opens fine on my win2000 box at work, but I have XP pro at home here and it keeps telling me I need the javaw.exe in the bin file in the radrails folder in my desktop. If anyone knows why this is it would be appreciated. I''m a noob for sure. Thanks, J
2010 Oct 28
0
Consultant needed for WTP analysis based on results from a conjoint survey
We are in the process of analyzing data from a discrete-choice conjoint survey and are looking for a consultant who can help us assess willingness to pay (WTP). We are currently able to assess overall WTP using the coefficients from our conjoint analysis but would like assistance in determining if significant differences in WTP exist across a number of subgroups via a segmented analysis or some
2013 Oct 30
1
ggplot2 question: keeping the order as in the input data
Hello! I am using ggplot2 (see the code below) to plot the data in 'myplotdata'. The first column of 'myplotdata' is called "att.levels" and contains strings; the second column is called "WTP" and contains numeric values. Notice - I use 'coord.flip()' The command aes(x=att_levels, y=WTP), if I understand correctly, sorts things alphabetically based on
2024 Feb 28
2
Trouble reading a UTF-16LE file
Dear R-help, I am having trouble reading a UTF-16LE formatted file. The issue appears to be a byte order mark at the beginning of the file. I have tried readLines(file, encoding='utf-16LE') but got me [1]"\xff\xfe1" "" "" "" "" "" Regards, Tim
2013 Oct 30
1
ggplot2 - how to get rid of bar boarder lines
Hello! I am using ggplot2: ggplot(myplotdata, aes(x=att_levels, y=WTP)) + geom_bar(stat="identity",fill="dark orange",colour="black", alpha = 1,position = "identity") + geom_text(aes(label=WTP),colour="black",size=4,hjust=1.1,position='dodge') + coord_flip() + xlab("") +
2008 Oct 25
1
Filling symbols in xyplot
Hello, I am using xyplot and am happy with my graph, *except* that I cannot get the symbols to be filled. I tried using bg=c("red3","red","black","lightgrey")) in both the key and the xyplot function, that that was obviously not the answer. I would like the sybols to be filled with the same colors as the lines. Does anybody have an answer? In case
2012 Dec 09
1
Fwd: samba_dnsupdate principal and TKEY unacceptable
Hi, I am trying to run samba with bind_dlz (bind-9.9.1 - P1) on a multi-homed network. I have configured the setup as per Samba4 Howto. But when I try to do "samba_dnsupdate --all-names" it fails with error: dns_tkey_negotiategss: TKEY is unacceptable The kerberos ticket being used by samba_dnsupdate shows follwoing principals: klist -c /tmp/tmp6cxfgY Ticket cache: FILE:/tmp/tmp6cxfgY
2012 Jul 18
3
pecl install json on CentOS 5.8
Hi Any clue about the below issue? /usr/bin/pecl install json WARNING: channel "pear.php.net" has updated its protocols, use "channel-update pear.php.net" to update downloading json-1.2.1.tgz ... Starting to download json-1.2.1.tgz (17,780 bytes) ......done: 17,780 bytes 11 source files, building running: phpize Configuring for: PHP Api Version: 20041225 Zend Module
2019 Feb 07
3
Bug Report: read.table with UTF-8 encoded file imports infinity symbol as Integer 8
I can confirm that it doesn't happen on Ubuntu 18.04.1 so Peter is most likely correct; it looks like its Windows specific. On Thu, 7 Feb 2019 at 12:55, peter dalgaard <pdalgd at gmail.com> wrote: > > This doesn't seem to be happening on MacOS, neither in Terminal nor RStudio, (R 3.5.1, R-devel, R-patched). So probably Windows specific. > > -pd > > > On 7 Feb
2005 Sep 27
0
JSEditor
Thomas et al, Unless you already use some JSEditor, it would be worth trying this one - JSEclipse: Mini Review: http://getahead.ltd.uk/blog/joe/2005/09/27/1127804875944.html Download: http://www.interaktonline.com/Products/Eclipse/JSEclipse/Overview/ >From the review: "Another example of it grokking Javascript much better than the Eclipse WTP Javascript editor is how it understands
2008 Apr 09
3
help with model relationship for Product/Bill of Materials
I am struggling to find the best way to set up relationships to achieve this so that it fits the rails idioms. I have a table of products and I want to be able to create a bill of materials for a product.. So a product can either be a single item, or a package consisting of several other products. I have created a table: ---- class BomItem < ActiveRecord::Base belongs_to :product
2012 May 14
6
problem with importing node definitions (2.7.14) [SEC=UNCLASSIFIED]
Hi all, Doing some work with a puppet 2.7.14 installation to see what''s new and needs to be changed, however i''m seeing unexpected behavior with my manifests, so my external node directory isn''t being imported. This is on a rhel 5 server with the puppet rpms from yum.puppetlabs.com, but the cilent machines is based on fc17 beta with 2.7.13 rpm (which is with that
2007 Dec 28
1
Tags in files with Unicode BOM
Is there any way for flac or metaflac to support input from files with Unicode Byte Order Marks (BOM)? In command: metaflac --remove-all-tags --set-tag-from-file="CUESHEET=CDImage.cue" --set-tag-from-file="LOGFILE=CDImage.log" CDImage.flac If "CDImage.cue" contains Unicode characters, most text editors append BOM at the 1st line of this file. And metaflac does not
2010 Jun 25
11
Maximum zfs send/receive throughput
It seems we are hitting a boundary with zfs send/receive over a network link (10Gb/s). We can see peak values of up to 150MB/s, but on average about 40-50MB/s are replicated. This is far away from the bandwidth that a 10Gb link can offer. Is it possible, that ZFS is giving replication a too low priority/throttling it too much?