search for: edit

Displaying 20 results from an estimated 29692 matches for "edit".

Did you mean: edi
2007 Apr 05
1
FLAC: command line output
...K, wrote 37142516 bytes, ra tio=0,617 But, sometimes the output is flooding the whole screen and it repeats again and again printing the same line but just printing another % of completion, like this: flac -V --best "12 Mario Lopez vs Red Sector - Into my Brain (Plug ' n' play club edit).wav" flac 1.1.4, Copyright (C) 2000,2001,2002,2003,2004,2005,2006,2007 Josh Coalson flac comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to redistribute it under certain conditions. Type `flac' for details. 12 Mario Lopez vs Red Sector - Into my Brain (P...
2015 Aug 24
0
Regalamos 1.000 vuelos a Canarias
...portant; } /* @tab Page @section background style @tip Set the background color and top border for your email. You may want to choose colors that match your company's branding. */ body,#bodyTable{ /*@editable*/background-color:#F2F2F2; } /* @tab Page @section background style @tip Set the background color and top border for your email. You may want to choose colors that match your company's branding. */ #bodyCell{...
2014 Aug 28
14
[PATCH 00/13] code refactorings for tools
Hi, this series does a couple of code reorganizations/refactoring in code used by tools: the windows path handling code, and the two types of file editing (using editor, and using perl expression). There's still a code duplication between the two variants of file editing, but it is just within a single source, and can be easily solved now (planning as next step). Pino Toscano (13): edit: move windows path code to common file fish, edit:...
2018 Sep 10
1
make check (pigeonhole)
...--with-dovecot=../ \ ??? --with-ldap=plugin \ ??? --without-unfinished-features make -j3 5) during 'make check' of pigeonhole got the following error: make[3]: Entering directory `/root/rpmbuild/SRPMS/dovecot-2.3.2.1/dovecot-2.3-pigeonhole-0.5.2/src/lib-sieve/util' for bin in test-edit-mail; do \ ? if ! /bin/sh ../../../run-test.sh ../../.. ./$bin; then exit 1; fi; \ done test-edit-header(root): Error: Cannot lookup test user: Mail access for users with UID 89 not permitted (see first_valid_uid in config file, uid from mail_uid setting). ../../../run-test.sh: line 27: 29930 Se...
2018 Sep 10
0
make check (pigeonhole)
...ugin \ > ??? --without-unfinished-features > > make -j3 > > 5) during 'make check' of pigeonhole got the following error: > > make[3]: Entering directory > `/root/rpmbuild/SRPMS/dovecot-2.3.2.1/dovecot-2.3-pigeonhole-0.5.2/src/lib-sieve/util' > for bin in test-edit-mail; do \ > ? if ! /bin/sh ../../../run-test.sh ../../.. ./$bin; then exit 1; fi; \ > done > test-edit-header(root): Error: Cannot lookup test user: Mail access for > users with UID 89 not permitted (see first_valid_uid in config file, uid > from mail_uid setting). > ../../../run...
2018 Sep 09
3
make check (pigeonhole)
Hello list, During the 'make check' (pigeonhole) portion of a building (rpmbuild) a dovecot.spec file I'm getting the following error: testsuite(root): Fatal: Couldn't drop privileges: User is missing UID (see mail_uid setting) I'm not sure how to resolve this, and any help would be appreciated to help me finish the creating the rpm -- Eric Broch White Horse Technical
2009 Sep 23
2
[PATCH] New tool: virt-edit
This adds a virt-edit command. This is already possible using guestfish: guestfish -i domain ><fs> vi /some/file but having a special command to do it makes the operation more obvious and easier. Rich. -- Richard Jones, Emerging Technologies, Red Hat http://et.redhat.com/~rjones libguestfs lets you e...
2006 Aug 09
11
Query Offset Parameter problem
Greetings, I''m trying to make a simple logging application that just displays the last few rows of information in the log. In order to do this, I am trying to use the ":offset" option for find. However, I am not getting the results I expect. For testing purposes, the query is being run against a table (MySQL) that contains 11 records. According to the RoR documentation,
2006 Apr 08
5
Creating sub actions
...c attributes like car name, model, etc etc, tt has a list of "parts" that a car has. This essentially means i have two models (or tables in db) "Car" and "Part" and "Cars_Controller" and "Parts_COntroller". [The Problem] Now I want to develop an edit interface for this scenario. The edit interface has two tabs "General Car Details" and "Car Parts". Now I understand that when I select to "edit" a car. This will take me two first edit screen where I will see "General Car Details" (as default selected tab...
2006 Jan 04
3
Legacy Table works-except edit?
Greetings, I''m trying to put a Rails face on a Legacy Oracle 10 table. I am currently setting the table_name and primary_key, and I get the list and show to work fine. However, when I hit edit I just get the Editing <table name>, Edit button, Show, and Back. None of the fields are rendered. Why would I be able to show these fields in the show and list, but not edit them in the edit? My DB user has the power to edit them via TOAD. Thanks, Joe
2012 Feb 10
3
[PATCH 0/3] Fix guestfish edit command.
This is a further, more comprehensive fix for https://bugzilla.redhat.com/show_bug.cgi?id=788641 The guestfish 'edit' command (aka 'emacs', 'vi') suffered from the same problems as virt-edit and more. It could have failed and left a partially overwritten file, and it didn't preserve permissions etc from the original file. These three patches fix all this. The first is a code cleanup. T...
2011 Jan 28
1
ReferenceClasses examples {method}
Dear r-devel-list, dear John Chambers, I'm trying to learn OOP-possibilities in R and I was going through the documentation 'ReferenceClasses {methods}' (great work, by the way...). Reading associated Examples, something bothers me : it seems to me that there are errors in 'edit' and 'undo' methods. I think that : - 'undo' should update 'edits' field with : length(edits) <<- length(edits) - 1 #(and not - 2) - and for coherence, 'edit' should store modifications in an 'append'-style : edits <<- c(edits,list(backup)) #a...
2014 May 20
1
[patch] Add support for editor function in edit.default
Regarding the following extract of ?options: ?editor?: a non-empty string, or a function that is called with a file path as argument. edit.default currently calls the function with three arguments: name, file, and title. For example, running the following vimCmd <- 'vim -c "set ft=r"' vimEdit <- function(file_) s...
2011 Jan 28
1
ReferenceClasses examples {method}
Dear help, dear John Chambers, I'm trying to learn OOP-possibilities in R and I was going through the documentation 'ReferenceClasses {methods}'. (great work, by the way...) Reading associated Examples, something bothers me : it seems to me that there are errors in 'edit' and 'undo' methods. I think that : - 'undo' should update 'edits' field with : length(edits) <<- length(edits) - 1 #(and not - 2) - and for coherence, 'edit' should store modifications in an 'append'-style : edits <<- c(edits,list(backup)) #a...
2011 Nov 14
1
Problem with edit()
Since installing R 2.14.0 on my Mac (a Mac Pro running 10.6.8) an issue has arisen when using the vi editor in conjunction with the edit() command. More specifically, commented lines disappear from edited functions when using [functionname.R] <- edit(). That is, if you have created a function called “test.func” as such: function () { # This is a test ex _ 4 duh <- seq(1, 10) fuh <- s...
2006 May 09
1
"Unfelicity" :-) with edit()
Hi, people. This is about R 2.3.0 under Linux. It seems that edit() may change a function environment. Here is a transcript, more comments follow: ======================================================================> > fix(f) > f function () { } > fix(f) Erreur dans edit(name, file, title, editor) : une erreur s'est produite ? la li...
2006 Jan 05
2
help - edit without using scaffold
Hello, What am I doing wrong? The code below does not show the current record for editing. def edit @user = User.find(params[:id]) end def update @user = User.find(params[:id]) if @user.update_attributes(params[:user]) flash[:notice] = ''User was successfully updated.'' redirect_to :action => ''show'', :id => @user else re...
2014 Jun 23
2
[PATCH] edit: add -m option
Implement the -m/--mount as available in guestfish to override the automatic introspection and specify which partitions to mount instead. --- edit/edit.c | 38 +++++++++++++++++++++++++++++++++----- edit/virt-edit.pod | 36 ++++++++++++++++++++++++++++++++++++ 2 files changed, 69 insertions(+), 5 deletions(-) diff --git a/edit/edit.c b/edit/edit.c index 07790be..7a2603c 100644 --- a/edit/edit.c +++ b/edit/edit.c @@ -53,6 +53,7 @@ stat...
2006 Jul 27
4
problem with elsif
hi! i have a little problem, im working with permissions, so if u are a normal user, u can only view something and admins can view,edit, delete i pick up the level, and then i check up, if the level is right, and then i put the options. but i dont know why, the admin can only view and delete, i mean my code only take the last link_to here is the code: <%= link_to "read", :action => "show", :id => m...
2006 Jul 27
1
Weird issue with editing data.
Hi all. Ive got a small CRUD app that is giving me some weird isuses. If I add/create an entry that works fine, the data goes into the db. I can later show the data, but when I edit it, no data is displayed in the form for me to edit. Here is the bits from the controller. def new @kb=Knowledgebase.new end def create @kb= Knowledgebase.new(params[:kb]) if @kb.save flash[:notice] = ''New knowledge base article created.'' redirect_t...