Displaying 20 results from an estimated 800 matches similar to: "Upgrading software under Wine"
2006 Jul 02
3
fixme:win:SwitchDesktop
I just installed Wine last night. First let me say: it's awesome!
Much better than I supposed.
I decided to try Wine because I've been trying to get file compat-
ability between Linux and PasswordSafe, a great Windows password
manager.
I copied all the PasswordSafe files to their own directory in my
$HOME so that PasswordSafe could write it's database.
I cd to that directory;
2007 Mar 19
3
XML support needed
The latest version of Password Safe was compiled with a new version of
Visual Studio: VC8.0.
The program continues to install and run fine, but when it attempts to
write it's configuration file at exit, Wine/Windows pops up a dialog
window titled "Password Safe" with the text:
-----------------------------------------------------------------------
"Unable to use a XML reader
2005 Dec 02
1
acroread security problem
Dear all,
I think there's a security problem with the acroread plugin for firefox.
I'm using sysutils/pwsafe to manage my passwords. A feature of this
tool is that it can copy the requested password to the X clipboard,
allowing the user to paste it (eg. in a password box), never seeing
the pass in clear.
When I load a PDF document in Firefox, the acroread process lives on
even after the
2011 Dec 07
5
switch to windows to Linux
Hello All,
Sir I am working on the Openvpn application. I am download the OpenVPN application GUI from the website "www.openvpn.se". This application is for windows.
I am trying to compile this code in Linux. but I got the error like windows.h not found and some other error related to this application. Please help me to implement "Wine development Kit" in Linux. I really need
2007 Mar 19
0
Any chess players here?
The Internet Chess Club, launched a new chess interface in August.
Besides being a terrific client for connecting and playing chess
on ICC, it has a built-in chess engine with 14 personalities from
beginner to GM's that you can play off-line. You can also add-in
other chess engines.
If you try it, I'm sure you'll agree it is one of the best chess
clients available. It is now at
2015 Aug 31
3
COLUMNS and LINES environment variables
Hello openssh developers,
Instead of just playing nethack, I've been building a client that
would log in to nethack at alt.org and using a pipe to get the login data
from pwsafe directly onto the server.
All of this works brilliantly after playing with some stty magic (full
script in [0]), however, this way the terminal size is burned into
80x24, which is way smaller than my graphical
2007 May 15
5
About a simple insert
Ok, my problem is that I have a form with a client''s information. Now in
the form, I ask the client for his info, which inserts into the table
"clients", and then I have another text input where he has to provide a
specific detail that i want to be inserted into the table "details". How
can I insert this data into 2 different tables?
--
Posted via
2007 Oct 03
4
form_remote_tag :onsubmit not working.
Hi,
Has anyone successfully implemented the :onsubmit option for
form_remote_tag. It doesn''t seem to work for me. Is there any specific
version of rails which is required for the same.
Here''s my piece of code.
<script>
function set_tojid(){
alert(''onsubmit'');
}
</script>
<%= form_remote_tag :update => '''', :url => {
2007 Oct 24
4
before_filter at the method level
I have used before_filter in the passed at the class level but can it be
used in the method level.
For example, I want to refuse a non-admin type from being able to delete
anything in the entire application. Is there an easy way to do this?
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the
2008 Apr 23
2
OT -Recommendations relating to a Password Safe
Hi Everyone
I am wondering if many people are using software that acts as a password
safe. And if so can you recommend any software in particular?
I know many people will disagree with this idea, and I myself have
always followed the printed list stored in a secure location. But in
our particular situation keeping this single list current and correct
while ensuring that regular password
2007 Jun 20
4
Remove session string from css and js file?
How do you remove the session string from the css and js file?
I have already set the ApplicationController session :disabled => true
Any suggestions or a site that already has this solution?
Thank you,
Nickmenow
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
2007 Mar 19
1
fixme: How?
I first tried Wine a few months ago to see if Password Safe would
run in Linux. Being very impressed that it ran nearly flawlessly,
I've became it's maintainer in the AppDB.
Everything works except the following two functions: the "Get Help"
menu item and the "Perform Autotype" feature. The only effect of
clicking on either of these is the error messages Wine
2007 May 11
5
options_for_select - how to set the selected value?
Ok, this should be simple but I am finding it''s not and previous
postings don''t seem to shed too much light on this.
I have a select_tag with 4 values pulled in via a helper:
def filter_hours
filter_hours = [
["1 hour", 1],
["24 hours", 24],
["7 days", 168],
["14 days", 336],
]
end
The select_tag looks
2007 Oct 24
7
NoMethodError when creating new ActiveRecord model object
the strangest thing is happening...i''m not getting this every time,
maybe 1/3 of the time, identical requests...
i''m a rails newbie, but i think i''m trying pretty standard stuff, this
is an excerpt from the log:
----------------------
Processing EmailConfigsController#edit_xml (for 127.0.0.1 at 2007-10-24
15:52:09) [GET]
Session ID: 6630219819a2da423d8c48a259dd28d6
2007 Nov 07
7
Help on loop
Hey,
I have got a script that returns a long list of font family names, which
I all want to store in a variable (array). I tried doing this with @f =
font.family also in the for loop below but it only prints the last item
when I want to display the results.
require ''rubygems''
require ''RMagick''
include Magick
for font in Magick.fonts
puts font.family
end
2006 Jul 02
1
puzzled
Just installed Wine for the first time last night, so am new here.
Reading this news group while waiting for a reply to an earlier post,
I notice that something like a third of the posts here are dupes or
reposts.
I've never seen this in a technical news group before. Is this a
malfunction of the news client?
2007 Mar 19
1
EZ way to test Wine versions
Greetings!
I'm looking for an easy way to test software under different versions
of Wine. Is there a way to have more than one working version of Wine
installed concurrently?
I maintain two apps in the AppDB and have suffered a regression in one
of them. So it would be really nice if I could easily switch back and
forth between versions of Wine, without uninstalling/reinstalling.
Cheers!
2007 Sep 17
8
DISTINCT?
This should be easy, but I''m stumped...
class X < ActiveRecord::Base
belongs_to :y
end
class Y < ActiveRecord::Base
has_many :x
end
The y table has a column names. The x table has a column value. I
want the list of values in x for the name "Location" in y. Yes, there
are many repetitions.
I can probably hack together an SQL statement to do this without too
much
2007 Nov 06
2
passing a parameter only if not blank
I have this form tag:
<% form_remote_tag :update => ''hotel-loyalties'', :url => { :action =>
''make_hotel_loyalty'', :id => @user.id, :manager => @manager.id end } do
-%>
I only want to pass the @manager value if it is not blank. I tried:
<% form_remote_tag :update => ''hotel-loyalties'', :url => { :action =>
2005 Oct 06
2
segmentation fault
greetings,
running Centos 4.1 i386 on a poweredge 1800, will be trying x86_64
tomorrow since apparently the processors are EM64. anyhow, I'm having
issues with this unit producing segmentation faults on practically
everything. this is not an issue just with Centos 4.x, but also RHEL
3. so I resorted to RH9, but had other issues with hardware drivers.
Today, I installed OS and