Displaying 20 results from an estimated 2000 matches similar to: "render :partial, accentuated characters and Ajax preview"
2006 Mar 07
1
has_and_belongs_to_many tags
I''m trying to create a search where I can find pages by their tag name.
Here''s a sample of my code (not working).
@tags = Page.find(:all, :conditions => ["#{:tag.name} LIKE ?",''%'' +
@params[''searchtags''] + ''%'' ])
My enviroment:
I''ve got a table called tags, and a table called pages, both with a
2013 Feb 09
1
trouble with accentuated characters in \title tag in Rd file
Dear R-devel-list,
Since I had no answer on the R-help-list
(http://permalink.gmane.org/gmane.comp.lang.r.general/284539) I try to
present my trouble on the R-devel-list. I am sure in the past (one year
ago) to succeed in putting accentuated characters in the \title tag in a
.Rd file. Recently, creating a package, I have NA in the title function
instead of the text containing the
2003 May 20
1
french accentuated letters
Hello,
I run samba 2.2.8 on solaris and when I mount my home from a WXP box I
don't see files of which names contain accentuated letters ?
Regards
Jean Frontin
System team
I R I T
Universit? Paul-Sabatier
118, rte de Narbonne
31062 Toulouse cedex 04
France
tel (33)(0)5 61 55 63 03
mail frontin@irit.fr
2018 Mar 19
0
Accentuated email addresses stored in LDAP
On 19/03/18 06:30, Aki Tuomi wrote:
>
>
> On 19.03.2018 07:58, Alexander Dalloz wrote:
>> Am 18.03.2018 um 23:25 schrieb Andr? Rodier:
>>> Every other alias works, but not those with accents. They are correctly
>>> stored in the LDAP database, using base64.
>>
>> Why do you even think a character like '?' would be legal in the local
>>
2018 Mar 19
0
Accentuated email addresses stored in LDAP
On 19/03/2018 07:23, Steffen Kaiser wrote:
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
> On Mon, 19 Mar 2018, Andr? Rodier wrote:
>
>> I had to use base64 encoding to store email addresses, because they
>> are
>> rejected otherwise, with an error message of illegal characters. I
>> also
>
> you are using the stock "mail" attribute
2018 Mar 28
0
broken mailing-list -> Re: Accentuated characters issue when receiving attributes from "samba user syncpasswords"
Am 28.03.2018 um 16:50 schrieb Lapin Blanc:
> Thank you for the tip, i'll use it, but how come it's correctly encoded
> in the DN and not in the attribute ?
> Is it related to the ldif format or something ?
no idea and hence *do not* reply privately on mailing-lists
i just recognize base64 when i see it
proper mail clients respect
List-Post: <mailto:samba at
2013 Jan 12
0
trouble with accentuated characters in \title tag in Rd file
Hi,
I have a weird issue when creating a package with latin1 encoding.
All works fine except the fact that I can't put non-ASCII characters
in the title tag. There is NA in the place of the title in the pdf file
of the documentation.
I can put non-ASCII characters in the other tags (description, details...).
I well verified that I put in the DESCRIPTION file the line :
Encoding:
2007 Dec 14
3
Preview Message Before Saving?
Hi all,
I''m sure this is really simple, but I can''t seem to figure it out. I
want to let users preview their messages before submitting. Something in
the form of:
def new
@post = Post.new
end
def preview
#preview message text here
#@post = Post.new(params[:post]) <--?
end
def create
#save message on user''s confirmation
...
@post.save
end
Have any
2018 Mar 28
1
Accentuated characters issue when receiving attributes from "samba user syncpasswords"
On Wed, 2018-03-28 at 16:06 +0200, Reindl Harald via samba wrote:
>
> Am 28.03.2018 um 15:52 schrieb Lapin Blanc via samba:
> > I receive stdin input from "samba user syncpasswords" in my python script.
> > The user is created with ' Active Directory Users and Computers', and have
> > some accentuated characters in their givenName and/or familyName (sn)
2018 Mar 28
0
broken mailing-list -> Re: Accentuated characters issue when receiving attributes from "samba user syncpasswords"
Am 28.03.2018 um 17:21 schrieb Rowland Penny via samba:
> On Wed, 28 Mar 2018 16:59:19 +0200
> Reindl Harald via samba <samba at lists.samba.org> wrote:
>
>>
>>
>> Am 28.03.2018 um 16:50 schrieb Lapin Blanc:
>>> Thank you for the tip, i'll use it, but how come it's correctly
>>> encoded in the DN and not in the attribute ?
>>> Is
2018 Mar 19
2
Accentuated email addresses stored in LDAP
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
On Mon, 19 Mar 2018, Andr? Rodier wrote:
> I had to use base64 encoding to store email addresses, because they are
> rejected otherwise, with an error message of illegal characters. I also
you are using the stock "mail" attribute in LDAP as:
olcAttributeTypes: ( 0.9.2342.19200300.100.1.3
NAME ( 'mail'
2018 Mar 28
5
Accentuated characters issue when receiving attributes from "samba user syncpasswords"
I receive stdin input from "samba user syncpasswords" in my python script.
The user is created with ' Active Directory Users and Computers', and have
some accentuated characters in their givenName and/or familyName (sn)
When parsing the diff, the CN reads of, but weird characters appears in the
attributes instead of the right name :
INFO:root:DN found: CN=Arsène
2006 Mar 29
5
EdgeRails: "undefined method `weight'' for #<Hash:
Hi all,
I was playing with the sample project found on the Wiki at
http://wiki.rubyonrails.com/rails/pages/HowToIntegrateFerretWithRails
, and everything was working fine, ... till I moved to EdgeRails :
undefined method `weight'' for #<Hash:0x22c7150>
(full error thread below)
Any idea?
Alain
2005 Dec 18
2
[Bug?] in tests, @foo.bars_count <> @foo.bars.count
Example: if a ''foo'' has 3 ''bars'',
bars_count == "0" # ERROR
bars.count == 3 # OK
It looks like a bug to me.
Alain
--
Posted via http://www.ruby-forum.com/.
2005 Dec 16
13
How to pass a collection to paginate?
There must be a better way to write this code:
@project_pages, @projects= paginate :project,
:per_page => 10,
:conditions => ["account_id = ?", account]
?!
If only I could pass the sub-collection
account = ...
@projects = account.project
to paginate, instead of letting it extract it with a find :all + sql
conditions
Alain.
--
Posted via
2005 Dec 21
7
Are there any disadvantages to using locomotive
Hi:
I had some issues and so switched to locomotive. I find it awesome. 1
click and its done.
My question - what disadvantages are there, if any? What do I lose by
using such a convenient solution.
speculation as well as facts are welcome but please define which you
are putting forwards.
Thanks in advance,
bruce
2006 Jul 26
1
Seek Error ?
anyone ever got this error ?
[Wed Jul 26 17:36:25 2006] [error] [client 192.168.11.100] (eval):21:in
`seek'', referer: http://rf.mathieu.mv.sha/diary.cgi/edit/1?someting=true
[Wed Jul 26 17:36:25 2006] [error] [client 192.168.11.100] : , referer:
http://rf.mathieu.mv.sha/diary.cgi/edit/1?someting=true
[Wed Jul 26 17:36:25 2006] [error] [client 192.168.11.100] Illegal seek,
referer:
2006 Oct 19
2
How to deal with accentuated chars in 0.10.8?
I''m startin to use Ferret and acts_as_ferret.
I need to use something like EuropeanAnalyzer
(http://olivier.liquid-concept.com/fr/pages/2006_acts_as_ferret_accentuated_chars).
By example, if the user search by "gonzalez" you can find documents taht
contents the term "gonz?lez" (gonzález)
The EuropeanAnalyzer is based on Ferret::Analysis::TokenFilter,
2018 Mar 19
2
Accentuated email addresses stored in LDAP
On 19.03.2018 07:58, Alexander Dalloz wrote:
> Am 18.03.2018 um 23:25 schrieb Andr? Rodier:
>> Every other alias works, but not those with accents. They are correctly
>> stored in the LDAP database, using base64.
>
> Why do you even think a character like '?' would be legal in the local
> part of an email address?
>
> Alexander
>
Hi!
This is slightly more
2001 Nov 28
17
problem of access with files accentuated
I need of helps for do backup of a server windows2000(english).
In the files accentuated, presents to following message:
ERRDOS - ERRbadfile (File not found.) opening remote file
\f\adm\Arquivos diversos e tempor rios\Tabela Master de Importaao.xls
(\f\adm\Arquivos diversos e temporarios\
They are more of 60 pages with this message.
When I rename the name of the file to without accent, it