Why is DW adding a "/" in commands?

I recently noticed that in some code, ie <br /> DW adds
the "/" in the code. It seems to work okay, but can't be correct.
Any info would be appreciated.

In DW, under Edit > Preferences > New Page, you
probably have Default
Document Type (DTD) = XHTML... something.
Or you have a XHTML DTD already in your pages. Check the
first line of code
for something like:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
Transitional//EN"
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
DW will therefore create your code so it is XHTML compatible,
which is
stricter syntax than regular HTML.
See
http://en.wikipedia.org/wiki/XHTML
esp. the Common Errors subheading where it shows typical
XHTML syntax such
as all tags must be closed e.g. <p></p> or
self-closed e.g. <br />.
In practical terms, you probably won't notice any difference
in how your web
page looks in a browser.
Regards
John Waller

Similar Messages

  • Why the step-and-repeat function (command+d) isn't working in Illustrator CS5?

    Why the step-and-repeat function (command+d) isn't working in Illustrator CS5?
    I am trying this. Take an object, move it some inches on the right while holding the option key, so I duplicate it.
    Usually, I pressed on command+d to duplicate this action on and on (duplicate the object and moving it some inches away), but now it is not working.
    any idea?

    kwakoo,
    It may be time for the list:
    The following is a general list of things you may try when the issue is not in a specific file, and when it is not caused by issues with opening a file from external media. You may have tried/done some of them already; 1) and 2) are the easy ones for temporary strangenesses, and 3) and 4) are specifically aimed at possibly corrupt preferences); 5) is a list in itself, and 6) is the last resort.
    If possible/applicable, you should save current artwork first, of course.
    1) Close down Illy and open again;
    2) Restart the computer (you may do that up to at least 5 times);
    3) Close down Illy and press Ctrl+Alt+Shift/Cmd+Option+Shift during startup (easy but irreversible);
    4) Move the folder (follow the link with that name) with Illy closed (more tedious but also more thorough and reversible), for CS3 - CC you may find the folder here:
    https://helpx.adobe.com/illustrator/kb/preference-file-location-illustrator.html
    5) Look through and try out the relevant among the Other options (follow the link with that name, Item 7) is a list of usual suspects among other applications that may disturb and confuse Illy, Item 15) applies to CC, CS6, and maybe CS5);
    Even more seriously, you may:
    6) Uninstall (ticking the box to delete the preferences), run the Cleaner Tool (if you have CS3/CS4/CS5/CS6/CC), and reinstall.
    http://www.adobe.com/support/contact/cscleanertool.html

  • Why is Discoverer adding outer joins?

    Hi,
    I have set up standard joins (i.e. no outer joins) between one master and two detail folders in the Admin. For some reason when I create a report using the three folders, Discoverer is making them outer joins. Note: This query will cause a fan trap but there is a business reason for doing so (disable fan trap detection is checked). I'm using Plus/Web for the report.
    Why is Discoverer adding outer joins?
    Thanks, Andrew
    This is what I expect (note one master joined to two details):
    SELECT
    O125508.BUSINESS_TRANSACTION_CODE,
    O141221.SOURCE,
    O141221.AMOUNT
    FROM IRIS.IRS_ACQUIRED_INFO_V O125508,
    IRIS.IRS_FUNDINGS_V O141221,
    IRIS.IRS_FUNDING_SELECTIONS_V O144361
    WHERE ( ( O125508.BUSINESS_TRANSACTION_ID = O141221.BUSINESS_TRANSACTION_ID )
    AND ( O125508.BUSINESS_TRANSACTION_ID = O144361.BUSINESS_TRANSACTION_ID )
    AND ( O144361.SOURCE = :"Source" )
    AND ( O125508.BUSINESS_TRANSACTION_CODE = :"Business Transaction Code" )
    This is what Discoverer is generating (note duplicate masters {IRS_ACQUIRED_INFO_V} with outer joins):
    SELECT
    O125509.BUSINESS_TRANSACTION_CODE,
    O141221.SOURCE,
    O141221.AMOUNT
    FROM IRIS.IRS_ACQUIRED_INFO_V O125508,
    IRIS.IRS_FUNDINGS_V O141221,
    IRIS.IRS_ACQUIRED_INFO_V O125509,
    IRIS.IRS_FUNDING_SELECTIONS_V O144361
    WHERE ( ( O125509.BUSINESS_TRANSACTION_ID = O125508.BUSINESS_TRANSACTION_ID ) )
    AND ( O125508.BUSINESS_TRANSACTION_ID = O141221.BUSINESS_TRANSACTION_ID(+) )
    AND ( O125509.BUSINESS_TRANSACTION_ID = O144361.BUSINESS_TRANSACTION_ID(+) )
    AND ( O144361.SOURCE(+) = :"Source" )
    AND ( O125509.BUSINESS_TRANSACTION_CODE = :"Business Transaction Code" )
    Edited by: cfandrew on Mar 26, 2009 12:36 PM

    Rod,
    You’re correct in that the “source” field in the query (aka: select portion) is different than the “source” field in the condition - but this is on purpose.
    Here is a good analogy. Department has many Employees. The business question is to give me all employees in Andy’s Dept (but you don't know what department Andy is in, so you have to have the query reverse engineer Andy's department and then go back and get all the employees in that department).
    The raw query/data without the condition causes a fan trap and looks like this:
    select d.dept_name, e1.emp_name, e2.emp_name
    from dept d
    ,emp e1
    ,emp e2
    where d.dept_id = e1.dept_id
    and d.dept_id = e2.dept_id
    Dept Name....Emp Name 1....Emp_Name 2
    Services.....Joe....................Joe
    Services.....Joe....................Jane
    Services.....Jane..................Joe
    Services.....Jane..................Jane
    IT.............Andy.................Andy
    IT.............Andy.................Sara
    IT.............Sara..................Andy
    IT.............Sara..................Sara          
    Billing.........Bill.....................Bill
    And this is what we want:
    select d.dept_name, e2.emp_name
    from dept d
    ,emp e1
    ,emp e2
    where d.dept_id = e1. dept_id
    and d.dept_id = e2. dept_id
    and e1.emp_name = 'Andy'
    Dept Name...Emp_Name 2
    IT...............Andy
    IT...............Sara
    And this is what Discoverer is providing:
    select d2.dept_name, e2.emp_name
    from dept d1
    ,dept d2
    ,emp e1
    ,emp e2
    where d2.dept_id = d1.dept_id
    and d1.dept_id = e1.dept_id(+)
    and d2.dept_id = e2.dept_id(+)
    and e1.emp_name(+) = 'Andy'
    Dept Name....Emp_Name 2
    Service..........Joe
    Service..........Jane
    IT.................Andy
    IT.................Sara
    Billing.............Bill
    Also, DisableAutoOuterJoinsOnFilters is set to 1.
    Thanks for your help!
    Andy

  • Why can't I access the command line I just downloaded for xcode?

    Why I can't access the command line I just downloaded for xcode?

    Firefox will not appear in the Market for most phones with incompatible hardware. I believe the Motorola Bravo is supported. You can check if your phone is supported here:
    https://wiki.mozilla.org/Mobile/Platforms/Android
    On some supported devices, a bug prevents Firefox from appearing in the Market. This may be related to the recent Market update. You can go to Settings/Applications and uninstall the Market update, then find and install Firefox.
    Or, you can download the app directly from here:
    http://ftp.mozilla.org/pub/mozilla.org/mobile/releases/4.0b3/android-r7/multi/
    (Note: To download the app directly for an AT&T phone, you will have to search for instructions on how to "sideload" the APK file, since AT&T disables the option to install from non-Market sources.)

  • Why do manually added mp3s in the Podcasts app all show up in the same folder?

    Let me explain!
    I like to download lectures and talks and audio books from other sources than iTunes.
    I like to add these mp3 files to iTunes, change the Media type of them from Music to Podcast, and transfer them to my iPod Touch. This is so I will more easily know which ones have been listened to and can be removed.
    This worked (and works) well in the Music app. Everything was separated into folders based on what album name I had manually assigned to the ID3 tags of the files.
    But in the Podcast app, all of these files are now lumped into one folder.
    I currently have eight un-listened-to episodes of Philip K. Dick's Valis on my iPod Touch. But the folder shows a count of 106 unheard episodes in relation to this audio book, because it lumps all of my other manually added podcast media tracks into the same folder.
    Why is this?
    Why does the Podcasts app refuse to let me separate manually added files into individual folders based on album information?
    Had the My Stations feature let me populate its playlists in a more rational manner, and also allowed me to manually change the running order of the tracks (something which only seems to be possible in the On-The-Go playlist), I would not think that this omission was such an annoyance.
    I have been searching for months for mentions of this problem, but I have not seen a single one, and so I have finally decided to make my own thread.
    Let me know if the nature of my problem remains unclear.
    Joakim

    That doesn't do anything.
    When I plug my phone in and attempt to sync it with iTunes and click on "Steven's iPhone" under "Devices" the display to the right just says "loading..." and it stays like that for hours. Nothing happens.
    As far as I can tell, there is literally no way for me to delete the photos from my iPhone and I therefore, cannot upgrade to the newest software, download new apps, etc.

  • Why don't Browse in Bridge command in photoshop cc 2014 work?

    Browse in Bridge command in photoshop cc 2014 does not work ( It can not open Bridge program why? )

    Okay here's excactly what I did. I opened a picture (JPG) and made a new layer from the background (Layer 0).
    Next, I selected an area in the picture using the magnetic lasso tool.
    Then, I clicked effects (FX) in the Layers window and made sure the correct layer was selected. I proceeded to add an Outer Glow. I increased the opacity to 100% for good measure.
    When I clicked Ok to close the the layer styles window, the Layers window in the bottom right said that I have "Effects > Outer Glow" under "Layer 0" but the picture remained totally unchanged.
    Photoshop tells me that a layer style should be there but nothing is there. Also, I used to do this exact method and it used to work fine; now, for some reason it's giving me a hard time.

  • Why does the Reduced Size PDF command create larger files?

    I have been a happy user of Adobe Acrobat vers. 7 until Adobe ceased the support of that version and I was unable to print and do other activities since my last Mac OS vers.10.6.8 update, so I was forced to upgrade to Adobe's Acrobat's X latest version 10.0.0.  I had hope to be able to produce Adobe Acrobat 3D files but found out later that Adobe does not do that anymore and I would have to buy it as a plugin from Tetra 4D for another $399.00, oh well. I then wanted to reduce the file size of some larger pdfs I had edited.  It took a while to locate the command location, now in File>Save>Reduced SizePDF, once I activated the command on my file it actually increased its size!!  Why did this happen?  Should I continue to use my disabled, Adobe unsupported vers 7 to get the superior performance I once had?  This issue was mentioned in an earlier thread that started out as to where to locate this command but the resultant larger file issue remained unanswered.  Currently unhappy on my purchase.  Will Adobe offer a free upgrade to fix this?

    I agree with Peter. Use Pages '09, but keep a document migration strategy present. When you create a Pages document in Pages '09, export it to Word .doc too. Export any current content in Pages v5.2.2, and then stop using it. That means no double-clicked documents.
    Pages v5 is not an evolution of Pages '09 — it is an incomplete rewrite, and uses a different, internal document architecture than did Pages '09. This internal architecture is to blame for the export translation bloat into Word's different document architecture. It does not matter whether you type a single character, or multiple pages, you will get about a 500Kb .docx file.
    Opening, and resaving this monster .docx file in MS Word in Office for Mac 2011, LibreOffice, or TextEdit will result in a very small .docx footprint.

  • Why is Preview adding white padding around my images?

    I have noticed that when I insert a JPG image into a PDF file using Preview, the application inserts white padding around the image. Meanwhile, when I insert a PDF image, no white padding is added. Why is the same image treated differently based on its file format?

    I'm guessing that when you add a raw graphic file to a set of PDFs pages, OS X "puts the image on a page", possibly either the same size as the preceding page, or the print default size.
    Every PDF page contains data specifying its page size, so that data is already there when you drop in a PDF file. Most image files don't actually specify their intended size: they are merely displayed at a useful resolution.
    If you want the images to be a different size from your other pages in your PDFs, then you will be better off converting them to PDFs before adding to another PDF. If this is part of a procedure that you do repeatedly, then you should look at the possibilities of automation in OS X.

  • RH9 - Any idea why generating printable output from the Command Line doesn't include images?

    I have a batch file that creates a printable output of our main documentation broken up into 36 separate documents, 1 per chapter. Each chapter is a separate layout. I realize that RH has its own Batch building process, but the reason for me doing it through the command line via a batch file (.bat) is that RH keeps taking focus from my mouse and it makes it difficult to do any other computer work while the RH project generates the printable output for those chapters.
    Anyway, RH's Batch build works fine.
    But the command line for printable output does not include any of my images in the printable output. I don't know why. The document generates with all the topics fine, but the images are missing. No placeholder box in the resulting Word doc, they just simply weren't included. Has anyone else seen this? Any way to fix it?

    All,
    I thought it may be related to spaces in the path in which the script was called from. I tried having the ODBC command script in another directory but the same thing happens. It will give me the "CONFIGSYSDSN: Unable to create a data source for the 'Oracle in OraClient10g_home1' driver: Could not load the setup or translator library with error code -2147467259". As soon as the script is done running I can manually double click the script and it adds the DSN fine.
    Thanks,
    Clif Bridegum

  • Why virtual interfaces added to ManagementOS not visible to Cluster service?

    Hello All, 
    I"m starting this new thread since the one before is answered by our friend Udo. My problem in short is following. Diagram will be enough to explain what I'm trying to achieve. I've setup this lab to learn Hyper-V clustering with 2 nodes. It is Hyper-V
    server 2012. Both nodes have 3x physical NIcs, 1 in each node is dedicated to managing the Node. Rest of the two are used to create a NIC team. Atop of that NIC team, a virtual switch is created with -AllowManagementOS
    $False. Next I created and added following virtual interfaces to host partition, and plugged them into virtual switch created atop of teamed interface. These virtual interfaces should serve the purpose of various networks available. 
    For SAN i'm running a Linux VM which has iSCSI target server and clustering service has no problem with that. All tests pass ok.
    The problem is......when those virtual interfaces added to hosts; do not appear as available networks
    to cluster service; instead it only shows the management NIC as the available network to leverage. 
    This is making it difficult to understand how to setup a cluster of 2x Hyper-V Server nodes. Can someone help please?
    Regards,
    Shahzad.

    Shahzad,
    I've read this thread a couple of times and I don't think I'm clear on the exact question you're asking.
    When the clustering service goes out to look for "Networks", what it does is scan the IP addresses on each node. Every time it finds an IP in a unique subnet, that subnet is listed as a network. It can't see virtual switches and doesn't care about
    virtual vs. teamed vs. physical adapters or anything like that. It's just looking at IP addresses. This is why I'm confused when you say, "it won't show virtual interfaces available as networks". "Networks" in this context are IP subnets.
    I'm not aware of any context where a singular interface would be treated like a network.
    If you've got virtual adapters attached to the management operating system
    and have assigned IPs to them, the cluster should have discovered those networks. If you have multiple adapters on the same node using IPs in the same subnet, that network will only appear once and the cluster service will only use
    one adapter from that subnet on that node. The one it picked will be visible on the "Network Connections" tab at the bottom of Failover Cluster Manager when you're on the Networks section.
    Eric Siron Altaro Hyper-V Blog
    I am an independent blog contributor, not an Altaro employee. I am solely responsible for the content of my posts.
    "Every relationship you have is in worse shape than you think."
    Hello Eric and friends, 
    Eric, much appreciated about your interest about the issue and yes I agree with you when you said... "When the clustering service goes out to look for "Networks",
    what it does is scan the IP addresses on each node. Every time it finds an IP in a unique subnet, that subnet is listed as a network. It can't see virtual switches and doesn't care about virtual vs. teamed vs. physical adapters or anything like that. It's
    just looking at IP addresses. This is why I'm confused when you say, "it won't show virtual interfaces available as networks". "Networks" in this context are IP subnets. I'm not aware of any context where a singular interface would be treated
    like a network."
    By networks I meant to say subnets. Let me explain what I've configured so far:
    Node 1 & Node 2 installed with 3x NICs. All 3 NICs/node plugged into same switch. 
    Node1:  131.107.0.50/24
    Node2:  131.107l.0.150/24
    A Core Domain controller VM running on Node 1:   131.107.0.200/24 
    A JUMPBOX (WS 2012 R2 Std.) VM running on Node 1: 131.107.0.100/24
    A Linux SAN VM running on Node 2: 10.1.1.100/8 
    I planed to configured following networks:
    (1) Cluster traffic:  10.0.0.50/24     (IP given to virtual interface for Cluster traffic in Node1)
         Cluster traffic:  10.0.0.150/24   (IP given to virtual interface for Cluster traffic in Node2)
    (2) SAN traffic:      10.1.1.50/8      (IP given to virtual interfce for SAN traffic in Node1)  
         SAN traffic:      10.1.1.150/8    (IP given to virtual interfce for SAN traffic in Node2)
    Note: Cluster service has no problem accessing the SAN VM (10.1.1.100) over this network, it validates SAN settings and comes back OK. This is an indication that virtual interface is
    working fine. 
    (3) Migration traffic:   172.168.0.50/8     (IP given to virtual interfce for
    Migration traffic in Node1) 
         Migration traffic:   172.168.0.150/8    (IP given to virtual interfce for
    Migration  traffic in Node2)
    All these networks (virtual interfaces) are made available through two virtual switches which are configured EXACTLY identical on both Node1/Node2.
    Now after finishing the cluster validation steps (which comes all OK), when create cluster wizard starts, it only shows one network; i.e. network of physical Layer 2 switch i.e. 131.107.0.0/24.
    I wonder why it won't show IPs of other networks (10.0.0.0/8, 10.1.1.0/8 and  172.168.0.0/8)
    Regards,
    Shahzad

  • Adding multiple SQL Commands, Errors

    When I add a second SQL Command to my report I get the following error messages right before it attempts to update the data.  I have tried replacing the new SQL into the existing SQL command and it works, so I am fairly certain the SQL syntax is correct.
    "Failed to retrieve data from the database" and "unknown database connection error".
    Any idea as to why this is occurring?
    Thanks!

    If you're using a command, you should use a single command to provide ALL of the data for your report.  Please see my post here Best Practices When Using Commands with Crystal Reports for more information about how to use commands.
    -Dell

  • Group Added With dscl Command Not Listed In Account Prefs

    I added groups for each user per article 307128 using the dscl command:
    sudo dscl . create /Groups/username GroupMembership username
    sudo dscl . change /Groups/username RecordName username _username
    But these new groups are not listed by the Account preferences on my new MacBook. They are listed on my iMac G4. Both machines are running 10.5.2. The accounts on the new MacBook were migrated from the iMac.
    A dscl list shows that the groups are defined:
    sudo dscl . list /Groups
    And when I try to add a new group called _username with Account preferences I get an error saying the name is in use.
    Any idea how to get Account preferences to show these groups?
    Thanks.

    ovithucu, in your contacts app, swipe down from the top bezel to Settings.
    In the list of "Show Account in Contacts List", turn OFF each account shown, leaving none ON.
    Tap the lower left BACK button.
    Now, back in the main Contacts view, drag down on the screen to see the total number of contacts, what number is there?
    Those are you "Local" contacts, stored locally in the device memory. Those can be cleared if you want, and start all over again.
    Also, check your gmail account on a PC, login and see how many contacts you have in gmail which should be sycning to the device.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Why can I connect to Server (command K) but won't automate? NSLU2

    Hi all,
    I can see my hard drive sitting behind my NSLU2 and connect via a command-K and inputing smb://192.168.1.77/DISK 1 to connect. It changes my "DISK 1" to "DISK%201" with the %20 apparently covering the space in the shared name.
    But when I try to use the same for automator, it will not mount the shared drive. Any suggestions?
    TIA

    1. This is precisely why you should avoid spaces in filenames and odd characters. It makes automation (if you think you might initially do it) more difficult, regardless of the tools. As a rule i use UpperCamel cas on all my machines to name all entities (Drives/Volumes, files, folders, machines, etc..). If i need to separate things more then i use separation characters instead of spaces. These characters are limitesd to periods (.), undescores (_), and hyphens .
    2.) The thing is that urls generally need to have the chracters escaped. Depending on the client using the url this one of any number of methods url encoded (%20) slashed (\ ), quoted ("protocol://server/Name of Something") or something else. Normally url encoding should work since its what youd use if you were putting it in the dialog. Since it isnt though i would try single or doublequotes first, then slashes. If neither of those work then im not sure. Alhough and alternative method would be to make a batch script that does it and then trigger that script with automator.

  • New recordsets being added as a command

    All of a sudden, when adding a new recordset, Dreamweaver
    adds it as a
    command instead of regular recordset. It strips out the sql
    completely. Here
    is the resulting code for a simple state recordset. Is this a
    know new
    issue? A setting that got changed?
    <%
    Dim billstates
    Dim billstates_cmd
    Dim billstates_numRows
    Set billstates_cmd = Server.CreateObject ("ADODB.Command")
    billstates_cmd.ActiveConnection = MM_site_STRING
    billstates_cmd.CommandText = ""
    billstates_cmd.Prepared = true
    Set billstates = billstates_cmd.Execute
    billstates_numRows = 0
    %>

    I had the same issue (with my FIU email as well) I called apple support and they gave me the following instructions. Seems to be working perfectly fine.
    - Go to Apple Mail
    - Hit on Preferences, go to Accounts and hit the "+" button
    - Select "Add other mail account", and hit continue
    - Enter your Full Name, FIU email address, and password (DO NOT HIT CREATE)
    - Push down the option key, and while holding down the option key hit "NEXT"
    - It will route you to the Incoming Mail Server Info window, here you will type in the Mail Server as: imap.gmail.com. Again type in your user name (complete FIU email) and password. And again, hold down the option key, and while holding down the option key hit "NEXT".
    - Then it wil route you to the Outgoing Mail Server. Type in the Outgoing Mail Server as: smtp.gmail.com, and again your email and password.
    -Hit Create
    Once you see the email account on your Apple Mail sidebar, go to compose a new message and send yourself an email to your FIU email from your FIU email.
    This worked for me and synced all my folders. Hope it works for you as well.

  • Why is ical adding multiple alerts to my recurring events?

    I have searched for this issue in the support topics but can only find very old threads with links to apps that do not work.  My recurring events in ical are all of a sudden getting many many alerts added to them.  Every once in while I try deleting the event and creating a new one, or deleting the extra alerts for all future events and YET THEY KEEP COMING BACK.  It's super annoying when I am getting 10 reminders for one event and have to clear each one of them.  PLEASE HELP!

    Thanks Malcolm.I'm afraid this issue started for me after updating to iOS6!

Maybe you are looking for

  • How I "fixed" my iPod after the latest update screwed everything up

    I am not sure if this will help anyone but here is what I have been through and done. I also don't know if this "fix" will last. So far it has been 24 hours and my iPod still works. To be honest I was surprised anything worked since this whole fiasco

  • Send redirect not working in IGETMarkupInterceptor 's OnIOFailure

    Hi I am trying to redirect the user to an error page (portal page not jsp) by using sendredirect to the " desktopURL+_pagelabel=error_pagename" in the onIOFailure method of IGETMarkupInterceptor implementation. Even though the sendredirect is there i

  • Adding soap header in java

    Can anyone please tell me how to add following security header in Webservices (WS 1.0 ) client using java code? (I m using axis 1.4) <soap:Header> <wsse:Security soap:mustUnderstand="1"> <wsse:UsernameToken> <wsse:Username>[email protected]</wsse:Use

  • Help me n3250

    i have some problems regarding nokia 3250 and they are as follows: 1. *111# it shows done 2. every time when i switch off and switch on the ( n3250 ) phone doesn't read the memory card i have to open the memory card slot and then close it.Then only i

  • How to sync contacts' nickname?

    I am using Nokia N80, PC Suite 6.81.13 and Outlook 2003. I added nickname to some contacts in the phone but PC Suite wouldn't sync them to Outlook. What should I do?