search for: _link

Displaying 12 results from an estimated 12 matches for "_link".

Did you mean: link
2006 Jan 11
8
[scriptaculous] Intermitently Disabling Clicks
I have button that slides down a menu using Effect.BlindDown, but the function that slides it down also makes it so that the opening link now slides the menu back in. If the user double clicks the link (thuse opening & closing immediatley) the slide animation breaks, then will not extend correctly (but no JS errors). How would you go about stopping this happening? Also, is it just me or is
2012 Sep 17
2
inheritance failure: duplicate declaration error
...uot; } } munin::client::plugin is a custom type, allowing to easily enable/disable munin plugins, according to the following definition: define munin::client::plugin($name, $source, $enable="true") { case $enable { "true": { file { "${name}_link": path => "$destdir/$name", ensure => "link", target => "$sourcedir/$source", } } "false": { file { "${name}_link": p...
2006 Jun 07
6
Links on the left hand side - are components necessary?
...t called "main" (main.rhtml) under view/layouts, and included >layout "main"< in pretty all of my controllers. main.rhtml has, amongst all the other HTML stuff: <%= render_component :controller=> ''dli/extras'', :action=> ''show_lookup_links''%> This is the component to display the links: class Dli::ExtrasController < ApplicationController uses_component_template_root Link=Struct.new(:name,:controller,:action) def show_lookup_links @links=[] @links << Link.new("Channels", "/lookup/ch...
2012 Jul 19
6
Rendering Partial
...tml.erb This file his has follow <footer class="footer"> <nav> <%= render "pages/link" %> <ol class="footer_pages"> </ol> </nav> </footer> Which calls a partial in the folder Pages which his a resources and has _link.html.erb and contains the follow <li> <%= @pages.each do |page| %> <%= page.name %> <% end %> </li> Now the issues is @pages.each his nil and I understand the caller will initiate the @pages = Page.all but the caller is who?? I try application and inserting i...
2006 Apr 28
5
Newbie: using date-picker
Finally found a nice date chooser script (http://projects.exactlyoneturtle.com/date_picker), but am a little confused how to implement it. So I put this where I need the date picker: <a id="_name_link" href="#" onclick="DatePicker.toggleDatePicker(''name'')" class="demo_link">[ choose date ]</a> <div id="_name_calendar" class="date_picker" style="display:none"></div> And the field th...
2017 Oct 13
0
Wine release 2.19
...nction call tests with array arguments. vbscript: Reimplement array_access function. Stefan Dösinger (5): msvcp140: Export _Remove_dir. msvcp: Implement the WCHAR version of _Unlink. msvcp: Implement the WCHAR version of _Symlink. msvcp: Implement the WCHAR version of _Link. msvcp140/tests: Port test_Unlink to msvcp140. Vadim Druzhin (1): comctl32/tests: Add tests for LVM_APPROXIMATEVIEWRECT in LVS_REPORT mode. Vincent Povirk (6): gdiplus: Store the gdi32 transform at Graphics creation time. gdiplus: Store the gdi32 clip region at Graphics cr...
2012 Mar 30
0
R 2.15.0 is released
...strings, but can be replaced by the use of iconv() in the rare cases where it is still needed. INSTALLATION: o Building with a positive value of --with-valgrind-instrumentation now also instruments logical, complex and raw vectors. o There is experimental support for _link-time optimization_ with gcc 4.5.0 or later on platforms which support it. C-LEVEL FACILITIES: o Passing R objects other than atomic vectors, functions, lists and environments to .C() is now deprecated and will give a warning. Most cases (especially NULL) are actually codin...
2012 Mar 30
0
R 2.15.0 is released
...strings, but can be replaced by the use of iconv() in the rare cases where it is still needed. INSTALLATION: o Building with a positive value of --with-valgrind-instrumentation now also instruments logical, complex and raw vectors. o There is experimental support for _link-time optimization_ with gcc 4.5.0 or later on platforms which support it. C-LEVEL FACILITIES: o Passing R objects other than atomic vectors, functions, lists and environments to .C() is now deprecated and will give a warning. Most cases (especially NULL) are actually codin...
2009 Aug 12
23
[PATCH 0/23] factor and const-correctness
This started as a simple warning-elimination change. I'll get back to that series shortly ;-) It turned into a factorization and constification exercise during which I got a taste of ocaml. Thanks to Rich Jones for help with a few snippets in generator.ml. The overall result is that many previously-manually-maintained bits from daemon/*.c functions are now hoisted into the automatically-
2012 Aug 30
2
[PATCH v2] daemon: collect list of called external commands
...err); diff --git a/daemon/link.c b/daemon/link.c index 4536f00..6abe3ca 100644 --- a/daemon/link.c +++ b/daemon/link.c @@ -28,6 +28,8 @@ #include "daemon.h" #include "actions.h" +GUESTFSD_EXT_CMD(str_ln, ln); + char * do_readlink (const char *path) { @@ -132,11 +134,11 @@ _link (const char *flag, int symbolic, const char *target, const char *linkname) if (flag) r = command (NULL, &err, - "ln", flag, "--", /* target could begin with '-' */ + str_ln, flag, "--", /* target could begin with ...
2012 Aug 30
1
[PATCH] collect list of called external commands
...(err); diff --git a/daemon/link.c b/daemon/link.c index 4536f00..f5e3cbe 100644 --- a/daemon/link.c +++ b/daemon/link.c @@ -28,6 +28,8 @@ #include "daemon.h" #include "actions.h" +GUESTFS_EXT_CMD(str_ln, ln); + char * do_readlink (const char *path) { @@ -132,11 +134,11 @@ _link (const char *flag, int symbolic, const char *target, const char *linkname) if (flag) r = command (NULL, &err, - "ln", flag, "--", /* target could begin with '-' */ + str_ln, flag, "--", /* target could begin with ...
2009 Aug 03
1
[PATCH 1/2] Convert all TABs-as-indentation to spaces.
...(fp, "%s\n", name); + fprintf (fp, "%s\n", name); } xdr_free ((xdrproc_t) xdr_guestfs_int_inotify_event_list, (char *) events); diff --git a/daemon/link.c b/daemon/link.c index 57e3538..29ae679 100644 --- a/daemon/link.c +++ b/daemon/link.c @@ -90,19 +90,19 @@ _link (const char *flag, int symbolic, const char *target, const char *linkname) if (flag) r = command (NULL, &err, - "ln", flag, "--", /* target could begin with '-' */ - buf_target ? : target, buf_linkname, NULL); + "ln", flag, &quo...