search for: nav

Displaying 20 results from an estimated 173 matches for "nav".

Did you mean: na
2023 Aug 31
1
Need help with idmap-configuration
...ic upgrade and deleted all of them after the update was finished. That way the classic upgrade script was able to create all group-memberships within the AD LDAP-database. There's no entry for user koch within /etc/passwd nevertheless "getent passwd koch" will show one entry for user NAV\koch and this entry shows uid 10024. And that's exactly the uid that unix user koch has on the old samba3 server. "getent passwd koch"-output on old NT4-DC: koch:x:10012:10001:Peter Koch:/home/koch:/bin/bash This is a line from /etc/passwd "getent passwd koch"-output on ne...
2006 Jul 19
4
Using Application.rhtml as layout for all controllers
I put my nav system in application layout. that way any controller loading will have the nav system. I have one problem though - the <%= yield %> is in the body, so how would my controllers specify other css files? my application layout would look like this: <html> <head> title css incl...
2020 Jul 07
0
[centos/centos.org] branch master updated: Fixed old 7 release tag in download page
...e changed, 1 insertion(+), 1 deletion(-) diff --git a/_includes/centos-linux-download.html b/_includes/centos-linux-download.html index 056dfed..f371c24 100644 --- a/_includes/centos-linux-download.html +++ b/_includes/centos-linux-download.html @@ -1,7 +1,7 @@ <div> <ul class="nav nav-tabs"> <li class="nav-item"><a class="nav-link active" role="tab" data-toggle="tab" href="#tab-1">8 (2004)</a></li> - <li class="nav-item"><a class="nav-link" role=&quo...
2007 May 11
15
Simulating onmouseleave and onmouseenter with Prototype
...simulation of onmouseleave and onmouseenter events. Why? Lets say you have a Menu. A ul element that contains many li elements. If you want to have a function (maybe an effect) fire when the mouse moves outside of the ul, you are out of luck. Observe the mouseout function like so: Event.observe(nav, ''mouseout'', function(e) { // you would think this would work alert(''mouse is outside of nav?...''); }); and what actually happens is that every time the mouse leaves the element OR crosses the boundary of a child element (li), the event is fired. Instead of i...
2007 Jul 18
3
immediate Descendants not working in IE
Hi, im currently styling a menu using a java script effect which hides the nested submenus on load, and also shows/hides them on mouseover. It is working in firefox, using ... var ul = $("nav").getElementsByTagName("ul")[0]; var lis = ul.immediateDescendants(); I then loop through lis to initially hide all the submenus. This works fine in firefox, but not in IE. The sub menus are still visible when the page loads?! Any ideas? --~--~---------~--~----~------------~----...
2012 Jun 19
4
GUI rails debugger
Hello, Somewhat new to rails here. But have used Ruby for years and thus have used ruby-debug before with success. My years of gdb experience were helpful. I like how rails development is easy to do with Vim and command line. They only time I yearn for a GUI tool is when debugging. I do MS MVC dev at work, and VS is nice for debugging, even if I am not nuts about the rest of it. Anyone
2006 Jan 30
5
url for image in css
Hi, I''d like to call a background image for every item in a list. Something like div#nav li.submenu {background: url(dropmenu.gif) 95% 50% no-repeat;} the image is in public/images/dropmenu.gif Thanks, Peter
2006 Jul 25
11
Prevent users from entering urls
How could I make it so that links on my page could link to a controllers action, but if the user manually entered the url, it would redirect them back to the main page? Is this possible? Thank you, -Ben Lisbakken -- Posted via http://www.ruby-forum.com/.
2011 Mar 02
3
haml to erb - does it work with new html5 tags?
Hi, I wanted to covert all my erb over to haml, but I use HTML5 tags like nav, section, article, etc. Any idea if this is supported by haml? Checked out their site, nothing mentioned there or did I miss something. Sorry noob here. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send...
2006 Jun 06
5
Rails and Framesets
I''d like to use a frameset to separate the content in an app I''m playing with into 3 separate panes. A 1/3 page width left pane will be for general navigation, (so rarely needs reloading). The main content separates into a top and bottom pane, (with the top pane being set by the nav pane, and the bottom pane being set by the top pane). Unfortunately, I''m new to Rails and haven''t the faintest idea how I can get Rails to parse...
2012 Nov 06
2
rspec failure upon revisit
...ot; type="text/css"> </head> <body> <div class="container"> <header><a href="/"><img alt="Sample App" class="round" src="/assets/logo.png"></a> <nav class="round"><ul> <li><a href="/">Home</a></li> <li><a href="/help">Help</a></li> <li><a href="#">Sign in</a></li> </ul></na...
2006 Jan 26
1
Samba (+ NAV?) and bad printer names?
...orrectly via Samba from both WinXP boxes. Here's a snippet of my smb.conf file: load printers = yes printing = cups printcap name = cups So what is going on with those WinXP machines at 4:00AM? The only thing I can think of is the daily system-wide scan done by Norton Antivirus (NAV). Can anyone shed some light on what is going on here and how I can stop these queries to bogus printer names? Thanks. ------------------------------------------ Logged Samba errors: Jan 24 03:59:34 nemesis smbd[3799]: [2006/01/24 03:59:34, 0] smbd/service.c:make_connection(800) Jan 24 03...
2005 Nov 08
1
Event.observers - I''m totally list - please help
Hello, I need some help on how to use the Event.observers - thank you in advance for your input. <div class="navcontainer"> <ul id="nav"> <li class="button"> <img src="images/spacer.gif" width="20" height="20"> </li> <li class="button"> <img src="images/spacer.gif" width=&qu...
2002 Sep 19
0
NAV detected a virus in a document you authored.
Please contact your system administrator. The scanned document was QUARANTINED. Virus Information: The attachment PARK,.scr contained the virus W32.Klez.H at mm and could NOT be repaired.
2010 Sep 06
0
can't install tomtom sat nav
I'm running ubuntu 10 4 1, tryong to install tom tom home software, seems to work but after couple of minutes there is message that there is no internet connection. I did in terminal <winecfg> first and then <wine ~/tomtomhome> Do I have to change something in wine configuration? Did I miss something. I can add that I'm not computer expert.
2005 Dec 07
1
Navigation
Greetings, I appreciate the help from here as I seem to be asking the noob questions a lot, but what is a good way to deal with navigation pulled from a database? I have this in my view: <% @nav_buttons.each do |nav_button| %> <li><a href="#" class="nav"><%=h nav_button.name %></a></li> <% end %> this in my controller def index shownav end...
2006 Jul 18
3
Navigation techniques, everyone?
I''m rewriting the code to my first app. I want to reuse a lot of it, but tidy it up a lot. The first thing I will tackle is my nav-bar. Throughout a user''s experience on my app, I want it to reload as little as possible (I''ll have about 7 or 8 controllers with about 70 actions). So, I''ve thought of a few ways of doing it, and was wondering if you guys have any others! 1. Make a controller for i...
2005 Jun 08
2
Simple fix to horrible bug in Samba website CSS
...eet for the web site. The problem is in /samba/style/main.css. The simple patch makes the menu suddenly amazingly readable: $ diff -U5 main.css-orig main.css --- main.css-orig 2005-06-08 19:19:21.000000000 +1000 +++ main.css 2005-06-08 19:18:55.000000000 +1000 @@ -159,11 +159,11 @@ } .nav a, .nav a:link, .nav a:visited { display:block; - height:20px; + #height:20px; font-size:small; color:#2B5C9F; } .nav a:hover { color:#FFF; Please note that this is not just cosmetic. For the first time, I could read the link that allows me to subsc...
2003 Nov 01
4
Bug with partial IMAP fetches
...uot; WIDTH="4"><IMG SRC="/world/image/dot_red.gif" WIDTH="4" HEIGHT="1" BORDER="0"></TD> <!--********************************END SPACER CELL********************************--> <!--********************************NAVIGATION CELL********************************--> <TD ALIGN=LEFT VALIGN=TOP WIDTH="136"> <IMG SRC="/world/image/dot_red.gif" WIDTH="1" HEIGHT="11" BORDER="0"><BR><A HREF="home.asp" TARGET="_to...
2023 Aug 27
1
Classic Upgrade changes domain SID
...om a Samba 3.6.14 samba NT4 DC to a Samba 4.18.2 AD-DC. It does not work and I just want to make sure that I have the correct understanding of our domain SID. On our old Samba server net getdomainsid shows: SID for local machine SERV00 is: S-1-5-21-1415314133-2460755331-2761616138 SID for domain NAV is: S-1-5-21-1415314133-2460755331-2761616138 But Classic Upgrade script says: ..... Unable to determine the DomainSID, can not enforce uniqueness constraint on local domainSIDs ..... INFO 2023-08-27 10:50:08,940 pid:8522 /usr/samba/lib64/python3.9/site-packages/samba/provision/__init__.py #496: D...