Boundary Lines on Simple Web-site project

I'm new to Muse, and I'm setting up a very simple personal portfolio web-site.
I ran into a minor problem. I'm setting up a very clean Master page with an all-white background. Muse puts a black boundary line around the header area and the master page's body text area and footer. I need to eliminate these boundary lines but I haven't found a way to get rid of them.
How do I do that?
Thanks in advance!
--WA

Hi WA,
Seems the black line is coming up due to stroke width selected.
Select Header, footer and the text area and put the stroke width to 0, or select none in stroke drop down.
Here check this link: http://gauravr183.businesscatalyst.com/images/2013-06-11_1450.swf
Hope this helps.
Regards,
Gaurav Aggarwal

Similar Messages

  • Creation of a simple web site --- how to get started?

    First, I have recently purchased CS5, which is a very nice bundle of fantastic software. However, the thought of mastering all of these packages is mind-boggling. I started by jumping around between different packages, looking at tutorial material, examples, etc. which was quite helpful for getting an overview of how some of them worked and how I might use them. Presently, I have two main objectives --- 1) use Photoshop for doing some painting of images, and 2) use Dreamweaver to build a web site for a friend who offers a place of refuge for homeless cats. I initially thought it might be good to start with the painting project, however, I have changed my plan, and would like to pursue the design of a web page that can be used to help people to find a cat that they can adopt. Note, this is a non-profit application, but one that I believe to be quite important. Here are some of my initial thoughts on this site:
    Site purpose:
    To provide a web site for anyone to look at information on cats at this home, and how they
    can adopt one of them.
    Some features of the site:
    1. A cat database that I as the designer would create. This database would contain
        an entry for each cat available for adoption. It would include such things as
        the name, sex, age, paths to image(s) and/or video(s) of the cat, health status, etc.
        Anyone accessing this site should be able to easily navigate around it and to examine
        entries in this database. The client (designated person at the home offering cats
        for adoption) would be given privledges to modify the database (add, delete, and modify
        entries). The user interface for the client to update the database should be very easy
        to use.
    2. A simple form that could be used for information on someone that would like to adopt
        one of the cats in the database or to make an appointment to go to the location where
        the cat is being kept (for actual contact with the cat).
    3. Track number of visitors to the site
    Preliminary notes on the database
    Fields:
    - ID code (key) % Default: yymmddhrmnName (year-month-day-hr-min-Name)
    - Name
    - Sex (M / F)
    - Neutered / Not neutered
    - Age (estimated)
    - Type (breed)
    - Tagged (chip or ear marking)/ Not tagged
    - Checked In date (yy/mm/dd)
    - Checked Out date (yy/mm/dd)
    - Status (needs home / has home)
    - Social state (1,2,3,4,5)
    - Health state (1,2,3,4,5)
    - Companion state (1,2,3,4,5)
    - Image (file name) % multiple files allowed
    - Video (file name) % multiple files allowed
    - Medical/vet data (e.g. vaccinations, etc.)
    - General information (text on cat that includes comments, observations, etc.)
    Notes:
      * state = 1, Best
                    5, Worst
      Examples:
              Social state = 5, very unfriendly, afraid, etc.
                                   3, can touch if careful
                                   1, very friendly, unafraid
              Health state = 5, not in good health (e.g. infection)
                                   3, only minor health problems
                                   1, in very good health
       Companion state = 5, must have another cat or cats as company
                                   3, could be with other cat(s) company
                                   1, does not need the company of another cat
    Now, with this initial information (granted this is very rough), my question:
    How, armed with CS5, should I attack the problem of getting this web site up and running?
    Keeping in mind that I really would like to learn how to use CS5, and that this would be my first web site project.
    Any suggestions, study plan, references, etc. would be welcomed.
    Message was edited by: Birdy40 because of some small errors and changes.

    In keeping with bregent's admonition - it will invariably turn out more complicated than you imagined, if only because the more you do with this the more you will think of to do. In addition to the excellent suggestions of David Power's books and w3schools, I would offer one other bit of advice: Simplify. Make  your initial project the simplest possible, and then gradually adding more and more features. That will make it easier for you - and this forum - to help along the way.
    Perhaps as a first step, create a database with a few entries and then write code to retrieve the data.Even there you may find fields will need to be adjusted, added or removed or even redefined. Try all sorts of queries. Eventually you can create pages that will allow the input to be done with a form.
    Good luck with the project./
    Barry

  • JSP does not have visibility of java classes in simple Web Module Project

    Dear Experts
    I am developing what I thought would be a very simple Web Module Project for a simple webservice
    to allow a user to logon to Netweaver Portal with a simple logon and password.
    I have not done this in over 8 years, and am somewhat rusty.
    The webservice is package in  a .war and is deployed via an Enterprise Application project as a .ear.
    The issue I am having is that I want to enhance the presentation of the webservice through the
    provision of css and adding a couple of images. The "libraries" are visibile in the build path of web
    module project.
    At the top of my .jsp for logon form I want to import some java libraries in order
    to get String webpath = componentRequest.getWebResourcePath()"/":
    <%@ page session = "true"%>
    <%@ page import = "com.sapportals.portal.prt.resource.IResource" %>
    <%@ page import="com.sap.security.core.sapmimp.logon.SAPMLogonLogic" %>
    <%@ page import="com.sap.security.core.sapmimp.logon.SAPMLogonCertLogic" %>
    <%@ page import="com.sap.security.core.logonadmin.IAccessToLogic" %>
    <%@ page import="com.sap.security.core.logonadmin.ComponentAccessToLogic" %>
    <%  IAccessToLogic proxy = new ComponentAccessToLogic (componentRequest, aResponse, IAccessToLogic.ENV_LOGONCOMPONENT);
    final boolean inPortal = true;
    String webpath = componentRequest.getWebResourcePath()"/";
    // todo: find layout schema...
    aResponse.addResource(componentRequest.getResource(IResource.CSS, "css/main2.css"));
    %>
    However, during runtime the libraries are unknown and I get the following SAPJ2 EE errors
    indicating the methods etc are not known to the jsp:
    Full Message Text
    application [ctxhrofm] Processing HTTP request to servlet [jsp] finished with error.
    The error is: com.sap.engine.services.servlets_jsp.server.jsp.exceptions.CompilingException: Error while executing the compilation rocess: [/usr/sap/SQ1/JC20/j2ee/cluster/server3/apps/com.shell/sp~ctxhroap/servlet_jsp/ctxhrofm/work/jsp_LoginForm1310122356593.java22: package com.sapportals.portal.prt.resource does not exist
    import com.sapportals.portal.prt.resource.IResource;
                                              ^
    /usr/sap/SQ1/JC20/j2ee/cluster/server3/apps/com.shell/sp~ctxhroap/servlet_jsp/ctxhrofm/work/jsp_LoginForm1310122356593.java:23: package com.sap.security.core.sapmimp.logon does not exist
    import com.sap.security.core.sapmimp.logon.SAPMLogonLogic;
                                              ^
    /usr/sap/SQ1/JC20/j2ee/cluster/server3/apps/com.shell/sp~ctxhroap/servlet_jsp/ctxhrofm/work/jsp_LoginForm1310122356593.java:24: package com.sap.security.core.sapmimp.logon does not exist
    import com.sap.security.core.sapmimp.logon.SAPMLogonCertLogic;
                                              ^
    /usr/sap/SQ1/JC20/j2ee/cluster/server3/apps/com.shell/sp~ctxhroap/servlet_jsp/ctxhrofm/work/jsp_LoginForm1310122356593.java:25: package com.sap.security.core.logonadmin does not exist
    import com.sap.security.core.logonadmin.IAccessToLogic;
                                            ^
    /usr/sap/SQ1/JC20/j2ee/cluster/server3/apps/com.shell/sp~ctxhroap/servlet_jsp/ctxhrofm/work/jsp_LoginForm1310122356593.java:26: package com.sap.security.core.logonadmin does not exist
    import com.sap.security.core.logonadmin.ComponentAccessToLogic;
                                            ^
    /usr/sap/SQ1/JC20/j2ee/cluster/server3/apps/com.shell/sp~ctxhroap/servlet_jsp/ctxhrofm/work/jsp_LoginForm1310122356593.java:60: cannot resolve symbol
    symbol  : class IAccessToLogic
    location: class jsp_LoginForm1310122356593
    IAccessToLogic proxy = new ComponentAccessToLogic (componentRequest, aResponse, IAccessToLogic.ENV_LOGONCOMPONENT);
                              ^
    /usr/sap/SQ1/JC20/j2ee/cluster/server3/apps/com.shell/sp~ctxhroap/servlet_jsp/ctxhrofm/work/jsp_LoginForm1310122356593.java:60: cannot resolve symbol
    symbol  : class ComponentAccessToLogic
    location: class jsp_LoginForm1310122356593
    IAccessToLogic proxy = new ComponentAccessToLogic (componentRequest, aResponse, IAccessToLogic.ENV_LOGONCOMPONENT);
                                                        ^
    /usr/sap/SQ1/JC20/j2ee/cluster/server3/apps/com.shell/sp~ctxhroap/servlet_jsp/ctxhrofm/work/jsp_LoginForm1310122356593.java:60: cannot resolve symbol
    symbol  : variable componentRequest
    location: class jsp_LoginForm1310122356593
    IAccessToLogic proxy = new ComponentAccessToLogic (componentRequest, aResponse, IAccessToLogic.ENV_LOGONCOMPONENT);
                                                                                ^
    /usr/sap/SQ1/JC20/j2ee/cluster/server3/apps/com.shell/sp~ctxhroap/servlet_jsp/ctxhrofm/work/jsp_LoginForm1310122356593.java:60: cannot resolve symbol
    symbol  : variable aResponse
    location: class jsp_LoginForm1310122356593
    IAccessToLogic proxy = new ComponentAccessToLogic (componentRequest, aResponse, IAccessToLogic.ENV_LOGONCOMPONENT);
                                                                                    ^
    /usr/sap/SQ1/JC20/j2ee/cluster/server3/apps/com.shell/sp~ctxhroap/servlet_jsp/ctxhrofm/work/jsp_LoginForm1310122356593.java:60: cannot resolve symbol
    symbol  : variable IAccessToLogic
    location: class jsp_LoginForm1310122356593
    IAccessToLogic proxy = new ComponentAccessToLogic (componentRequest, aResponse, IAccessToLogic.ENV_LOGONCOMPONENT);
                                                                                    ^
    /usr/sap/SQ1/JC20/j2ee/cluster/server3/apps/com.shell/sp~ctxhroap/servlet_jsp/ctxhrofm/work/jsp_LoginForm1310122356593.java:63: cannot resolve symbol
    symbol  : variable componentRequest
    location: class jsp_LoginForm1310122356593
    String webpath = componentRequest.getWebResourcePath()"/";
                    ^
    /usr/sap/SQ1/JC20/j2ee/cluster/server3/apps/com.shell/sp~ctxhroap/servlet_jsp/ctxhrofm/work/jsp_LoginForm1310122356593.java:66: cannot resolve symbol
    symbol  : variable IResource
    location: class jsp_LoginForm1310122356593
    aResponse.addResource(componentRequest.getResource(IResource.CSS, "css/main2.css"));
                                                      ^
    /usr/sap/SQ1/JC20/j2ee/cluster/server3/apps/com.shell/sp~ctxhroap/servlet_jsp/ctxhrofm/work/jsp_LoginForm1310122356593.java:66: cannot resolve symbol
    symbol  : variable componentRequest
    location: class jsp_LoginForm1310122356593
    aResponse.addResource(componentRequest.getResource(IResource.CSS, "css/main2.css"));
                          ^
    /usr/sap/SQ1/JC20/j2ee/cluster/server3/apps/com.shell/sp~ctxhroap/servlet_jsp/ctxhrofm/work/jsp_LoginForm1310122356593.java:66: cannot resolve symbol
    symbol  : variable aResponse
    location: class jsp_LoginForm1310122356593
    aResponse.addResource(componentRequest.getResource(IResource.CSS, "css/main2.css"));
    ^
    14 errors
    Exception id: [0019996862AA007E00000436000077FB0004A78CA1BA8324]
    I have added the associated DCs for classes to used DCs and they are visible on the buildpath
    of my webservice.
    What am I missing?
    Many thanks for any advice offered
    Mike

    Have you made runtime references to used libraries...?
    refer page 20 ...in
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/60d99678-1a29-2d10-94b4-9d9a67b7199b?quicklink=index&overridelayout=true

  • Crystal Report Viewer icons do not show in Web Application Project in VS2005 (Web Site Project OK)

    Post Author: jsdude99
    CA Forum: Crystal Reports
    Hi,
    With Visual Studio 2005, the Icons at the top of the CrystalReportViewer do not show on Web Application Project. However, If I have a web site project, they are all shown. Please note that I found number of posts that people not seeing the icons after the deployment but my case is the development environment. Once I pass the first hurdle I may face further problems like the other people, so If you happen to know answers in both situations, please share your knowlegde..
    PS: I created two new types of projetcs and have just a CrystalReportViewer on the default page. Data is shown fine but the icons are missing (red X placeholders instead of icons) in Web Application Project. Very straight forward test.

    We havent tried that.  We changed the link in the web part to access an html page that claims that the report is loading.  It states in the html that if the page doesnt load to "click here" which redirects to the crystalreportviewer.  Its a temp fix for it.  One thing we are looking at is the 64 bit version of the Sharepoint integration kit.  That may contain a reportviewer webpart.
    Thanks for the reply.
    Brian

  • Do I need Bea Weblogic Portal for simple web site ?

    I have a decision making situation here to use or not to use Bea Weblogic portal 8.1 for my web application along with struts.
    Situation : Application has service( batch process with client applications, hand held devices ) and web ( browser based interaction ) oriented architecture. Data flows into centralized system and this data being diagnosed for analysis and displayed on web ( text and as graphical charts ).
    I do not see much content management required like Yahoo, but have lots of configurable dynamic presentation . ( dynamic page views DHTML, graphical charts etc,�.).
    Question : Is Bea Weblogic Portal 8.1 of any use in this situation ?
    Thanks in advance.

    First let me thank you("duffymo") for your interest in responding to this post.You're most welcome.
    I am in elementary at BEA WLP, trying to understand and use it for the first time.
    I am analysing at very high level view of architecture.Thinking before doing is an excellent idea. I commend you for exploring it before plunging in.
    Struts brings the frame work for web application that controls flow and model.
    Seems to be WLP brings the personalization to the web site.I think that's correct. Struts is a JSP/servlet-based Web presentation framework that helps you maintain MVC separation using a Model-2 scheme. (Google for unfamiliar terms.)
    Bringing WLP in to the picture makes any sense.I agree if you meant "does not make any sense". You don't need a portal, based on your earlier description. Roles might be in play here. You'll have one for each of the three scenarios that you described in your earlier response.
    You'll NEVER have a situation where someone will have the client and admin views visible at the same time. It sounds like your three roles are mutually exclusive. In that case a portal isn't necessary.
    Do they;( Bea WLP, Struts ) go hand in hand in the same architecture. Can I achieve the same by just
    using struts with out WLP.You can certainly use Struts with BEA's WebLogic. That's a J2EE app server, which has a servlet/JSP engine built in. Maybe that's the confusion here. Is your client insisting that you use WebLogic or the Portal product? They work together. I don't believe you can use the Portal product without WebLogic, but you can use WebLogic without the Portal. Clarify that point with your customer. Maybe they're just asking that you deploy on WebLogic. THAT is quite sensible.
    You need to ask your customer another question: do they already have a license for WebLogic and Portal, and is the software installed and running, or are they planning to buy one for the sake of this project? If they want to spend the money and give you a chance to learn WebLogic by all means let them, but know that there are other, free alternatives. (e.g., Tomcat, JBoss, etc.)
    Here's one for you: how familiar are you with J2EE? Have you done any projects with EJBs? Will this project require them? How well do you know Struts/servlets/JSPs/JSTL, or will this be your first time with them, too?
    I would like to learn WLP feature, but trying to save money for my client by not using too many
    technologies.I agree. It's something you can add on later if you need it. Best to get the base application up and running first.

  • Intention of JSF (web applications or web sites?)

    Hi,
    I want to write a web application that has a similar look and feel to todays desktop applications. Thus I don't need a typical web site look (title on the top, navigation bar etc.) but a more desktop look (a menu bar on the top, a status bar on the bottom etc.)
    Although I like JSF I am not sure, if this framework is the best for this job. Thus I wanted to ask, if you can tell me the intention of JSF:
    Is it to build web sites or is it also to build web applications without the typical web site look and feel? With JSF both is possible of course. And with the adequat JavaScript library on the client side it looks very nice (e.g. ExtJS).
    But was this one of the intentions of JSF? Or was it primarily to build usual web sites with a page flow etc.? And maybe another framework is better for what I am going to do?
    I only don't want to use a JSF for something it has not been made for.
    Greetings
    Mike

    wpafbuser1 wrote:
    I don't see what the point is in making a distinction between web sites and web apps. Are you trying highlight the difference between say Apache vs. JBoss?I'm not sure what you mean by "the difference between say Apache vs. JBoss" but here's what I meant. When I think a web site, I think of a site where the interaction tends to be more reading, clicking from page to the next, etc., like, for example a news site. With a web app, I tend to think of statefulness, business processes, etc, like an online accounting system, content management system, etc. The distinction is probably pretty academic, though...
    Well you need to decide if you're making a simple web site that serves static content or i fyou're making an application with a GUI. There's a big difference.Exactly.
    For a desktop-like application, I say web browsers in general are a bad choice. I'd use Web Start if possible and write a GUI. In any case, Hehe. That's a completely different (though very valid argument(
    AJAX is the last thing I'd use (now you're writing HTML, XML, AJAX, Java, etc..). Echo2 provides 1 single API rather than hacking several. Flex, while I haven't used much, seems to also provide a much cleaner solution. Fair enough, and that's not an uncommon opinion. I'm probably somewhere in the middle, but, for what I've been asked to do since the web 2.0 hype started, Ajax has been sufficient. I'm not Echo2 expert, but isn't that just an HTML/JS interface with a Java backend with Ajaxy operations? For really, really complex and dynamic UIs Flex (or JavaFX :) might be more appropriate.
    Again, I haven't used JSF so I can't say much about it. But I see lots of projects all the time and JSF seems to be slow for adoption so far. Just my personal experience.Hmm. I've used it for about three years now, fwiw, and really, really like it. Which probably isn't worth much. I will admit, though, that JSF isn't always the right tool (thus the discussion here). As far as adoption goes, it seems to be growing much faster than the other frameworks out there, but I may have tinted glasses... ;)

  • Creation of web site 'null' failed

    I finally decided to give Azure a try and the first thing I do - creating a simple web site - fails with:
    "Creation of web site 'null' failed."
    Details say: "Provisioning failed."
    I am simply trying to "quick create" a simple website, with no database or anything. Researching the Web, I see other people with the same problem, but no real solution. Some answers on this forum suggest subscribing to the web site service: I believe
    I am subscribed...How can I tell? I do have "Web Sites" in the left pane...
    Sub. ID: f619f60b-6f9d-460d-a8ef-9e6bdea1e926

    David,
    Here are some links:
    http://social.msdn.microsoft.com/Forums/en-US/a1475637-2f58-43f7-9028-866957926560/azure-website-provisioning-failed
    http://social.technet.microsoft.com/Forums/forefront/en-US/b6138a57-07bb-48bb-98bf-9e86dff589fd/creation-of-web-site-failed-provisioning-failed-error-when-creating-a-website-in-azure
    http://social.technet.microsoft.com/wiki/contents/articles/13625.windows-azure-web-sites-faq.aspx
    Yes, it happens consistently, no matter what I try. Also in different regions.
    I am using the 'current' portal. 
    Andrew

  • Web site will not open on a Mac

    A friend has helped me to develop a simple web site in Flash
    which I use to manage my photo galleries, which are created with
    Lightroom or Photoshop. I am familiar with most of Adobe CS3 except
    Flash or Dreamweaver, but I can get by with just editing text and
    uploading new galleries, so the site works really well for me.
    Unfortunately I have received feedback from people using
    Safari or Camini browsers and the Mac OS that the site will not
    open. They just see black and the message "Get Flash". The site
    works great on a PC using both I Explorer and Safari.
    I have no knowledge of how to overcome this problem and not
    having access to a Mac, no way to "fiidle about" and experiment. I
    would very much appreciate some advice from anyone in the know. The
    web site is at www.duncangrove.com . Please have a look at my pics
    if you check it out!
    Regards
    Duncan Grove

    your site is doing a strict check for a certain version of
    the flash plug-in, 9.0.45. It's probably not necessary to go that
    far, just checking for version 9.0 should be fine. The Mac is only
    up to 9.0.47 and many people are going to have a .28 version, which
    gets refused by your script.

  • Creating Web Dynpro Project in JDI

    Hi,
    I'm having difficulty creating a simple Web Dynpro project in a DC in JDI. I'm trying use Scenario 2+. When I try to build the DC containing the WDP project in the DC View, I get the following error:
    Apr 25, 2005 6:15:48 PM /userOut/Development Component (com.sap.ide.eclipse.component.provider.listener.DevConfListener) [Thread[ModalContext,5,main]] ERROR: hello: Build failed for meridium.com/hello(meridium.com_APPLICATION_1) in variant "default": Used component not found: sap.com/tc/bi/bp/webDynpro
    In the Web Dynpro perspective of the same project, the project cannot be built until I modify the .classpath file to modify the build path to include all of the jars reference in a WDP project.
    How do I identify the components that are to be used for a Web Dynpro application? Is this done in the SLD? If so, which dependencies should I assign? Are there any step-by-step examples of creating a WDP application in JDI scenario 2+?
    Thanks.
    Rob

    Thanks for your response.
    I took a look at the .dcdef file and it looks like it defines the proper DCs for a WDP project (see below). The problem seems to be that the files defined in these dependencies can't be located. The build error says "Used component not found: sap.com/tc/bi/bp/webDynpro" which is defined in the .dcdef file below. How do I specify where to find the dependent files?
    <?xml version="1.0" encoding="UTF-8"?>
    <development-component
               xmlns="http://xml.sap.com/2002/11/DevelopmentComponent"
               xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
               xsi:schemaLocation="http://xml.sap.com/2002/11/DevelopmentComponent dcdef.xsd"
               version="1.0.2"
               xmlns:IDX="urn:sap.com:DevelopmentComponent:1.0">
         <name>hello</name>
         <vendor>meridium.com</vendor>
         <caption>Hello </caption>
         <component-type>
              <vendor>sap.com</vendor>
              <type>Web Dynpro</type>
         </component-type>
         <properties>
              <ns0:localization xmlns:ns0="http://xml.sap.com/2003/06/Localization">
                   <ns0:domain>CA</ns0:domain>
                   <ns0:originalLocale>en</ns0:originalLocale>
              </ns0:localization>
         </properties>
         <build-plugin>
              <dc-ref>
                   <name>tc/bi/bp/webDynpro</name>
                   <vendor>sap.com</vendor>
              </dc-ref>
              <pp-ref>webDynpro</pp-ref>
         </build-plugin>
         <dependencies>
              <dependency>
                   <dc-ref>
                        <name>tc/cmi</name>
                        <vendor>sap.com</vendor>
                   </dc-ref>
                   <pp-ref>default</pp-ref>
                   <at-build-time/>
              </dependency>
              <dependency>
                   <dc-ref>
                        <name>tc/ddic/ddicruntime</name>
                        <vendor>sap.com</vendor>
                   </dc-ref>
                   <pp-ref>default</pp-ref>
                   <at-build-time/>
              </dependency>
              <dependency>
                   <dc-ref>
                        <name>tc/ddic/metamodel/content</name>
                        <vendor>sap.com</vendor>
                   </dc-ref>
                   <pp-ref>default</pp-ref>
                   <at-build-time/>
              </dependency>
              <dependency>
                   <dc-ref>
                        <name>tc/wd/webdynpro</name>
                        <vendor>sap.com</vendor>
                   </dc-ref>
                   <pp-ref>default</pp-ref>
                   <at-build-time/>
              </dependency>
              <dependency>
                   <dc-ref>
                        <name>tc/logging</name>
                        <vendor>sap.com</vendor>
                   </dc-ref>
                   <pp-ref>default</pp-ref>
                   <at-build-time/>
              </dependency>
              <dependency>
                   <dc-ref>
                        <name>tc/wdp/metamodel/content</name>
                        <vendor>sap.com</vendor>
                   </dc-ref>
                   <pp-ref>default</pp-ref>
                   <at-build-time/>
              </dependency>
              <dependency>
                   <dc-ref>
                        <name>com.sap.aii.proxy.framework</name>
                        <vendor>sap.com</vendor>
                   </dc-ref>
                   <pp-ref>default</pp-ref>
                   <at-build-time/>
              </dependency>
              <dependency>
                   <dc-ref>
                        <name>com.sap.aii.util.misc</name>
                        <vendor>sap.com</vendor>
                   </dc-ref>
                   <pp-ref>default</pp-ref>
                   <at-build-time/>
              </dependency>
              <dependency>
                   <dc-ref>
                        <name>com.sap.exception</name>
                        <vendor>sap.com</vendor>
                   </dc-ref>
                   <pp-ref>default</pp-ref>
                   <at-build-time/>
              </dependency>
              <dependency>
                   <dc-ref>
                        <name>com.sap.mw.jco</name>
                        <vendor>sap.com</vendor>
                   </dc-ref>
                   <pp-ref>default</pp-ref>
                   <at-build-time/>
              </dependency>
         </dependencies>
         <folders>
              <source-folder>META-INF</source-folder>
              <source-folder>src/mimes</source-folder>
              <source-folder>src/configuration</source-folder>
              <package-folder>src/packages</package-folder>
         </folders>
    </development-component>
    -r

  • Publishing web site-platform

    I am about to buy hosting for a very simple web site I created with iweb and in the plan options it says "Platforms Windows and Linux", before buying this I want to make sure that it will publish ok and it is compatible with the Apple platform.
    Also, is there any other thing I should take in account before paying for the hosting?
    If anyone can answer me these two questions, it would be great
    Thanks

    Reliability and good tech support are important. I would also make sure that the hosting service offers all the facilities you will need.
    If your hosting account doesn't have WebShell installed I would look elsewhere. This makes handling the files on the server and stuff like password protection a lot easier.
    The other thing to consider is how many websites you will want to publish. Make sure the account offers enough dedicated IP addresses for your future needs.

  • Looking for a simple tutorial to building my first responsive web site in Dreamweaver CC.

    I am looking for a simple tutorial to building my first responsive web site in Dreamweaver CC.
    I have watched the tv.adobe video 3 times and I cam not able to do the actions the author shows.
    help.
    Ken Edwards

    Responsive and simple don't go hand-in-hand.  First do some prep-work to understand the concepts.
    Responsive Web Design
    http://coding.smashingmagazine.com/2011/01/12/guidelines-for-responsive-web-design/
    Introduction to CSS Media Queries
    http://www.adobe.com/devnet/dreamweaver/articles/introducing-media-queries.html
    Jump start your RWD projects with any of the Responsive Frameworks below:
    Foundation Zurb
    http://foundation.zurb.com/templates.php
    Skeleton Boilerplate
    http://www.getskeleton.com/
    Initializr (HTML5 Boilerplate, Responsive or Bootstrap)
    http://www.initializr.com/
    DMX Zone's Bootstrap FREE extension for DW
    http://www.dmxzone.com/go/21759/dmxzone-bootstrap/
    Project Seven's Page Packs (Commercial CSS Templates)
    http://www.projectseven.com/products/templates/index.htm
    Have fun!!
    Nancy O.

  • When I download an excel spread sheet from a Ford web site I seem to be getting code and not the work sheet. Example- MIME-Version: 1.0 X-Document-Type: Workbook Content-Type: multipart/related; boundary="====Boundary===="

    I have a Macbook Air. I have MS office installed and work in Excel often with no issues. But When I download an excel spread sheet from a Ford web site I seem to be getting code and not the work sheet.
    Example-
    MIME-Version: 1.0
    X-Document-Type: Workbook
    Content-Type: multipart/related; boundary="====Boundary===="
    --====Boundary====
    Content-Location: file:///C:/HOLD.XHT
    Content-Transfer-Encoding: 8bit
    Content-Type: text/html; charset="utf-8"
    <html xmlns:v="urn:schemas-microsoft-com:vml"
    xmlns:o="urn:schemas-microsoft-com:office:office"
    xmlns:x="urn:schemas-microsoft-com:office:excel"
    xmlns="http://www.w3.org/TR/REC-html40">
    <HEAD>
    <meta name="Excel Workbook Frameset">
    <xml>
    <x:ExcelWorkbook>
      <x:ExcelWorksheets>
       <x:ExcelWorksheet>
        <x:Name>BTB</x:Name>
        <x:WorksheetSource HRef="./IBIT0001.xht"/>
       </x:ExcelWorksheet>
       <x:ExcelWorksheet>
        <x:Name>GSM</x:Name>
        <x:WorksheetSource HRef="./IBIT0002.xht"/>
       </x:ExcelWorksheet>
       <x:ExcelWorksheet>
        <x:Name>RODetail</x:Name>
        <x:WorksheetSource HRef="./IBIT0003.xht"/>
       </x:ExcelWorksheet>
      </x:ExcelWorksheets>
    </x:ExcelWorkbook>
    </xml>
    </HEAD>
    </HTML>
    --====Boundary====
    Content-Location: file:///C:/IBIT0001.xht
    Content-Transfer-Encoding: 8bit
    Content-Type: text/html; charset="utf-8"
    <html xmlns:v="urn:schemas-microsoft-com:vml"
    xmlns:o="urn:schemas-microsoft-com:office:office"
    xmlns:x="urn:schemas-microsoft-com:office:excel"
    xmlns="http://www.w3.org/TR/REC-html40">
    <HEAD>
    <meta http-equiv=Content-Type content="text/html; charset=utf-8">
    <style>
    <!--table
            {mso-displayed-decimal-separator:"\.";
            mso-displayed-thousand-separator:"\,";}
    @page
            {margin:1.0in .75in 1.0in .75in;
            mso-header-margin:.5in;
            mso-footer-margin:.5in;
            mso-page-orientation:landscape;}
    tr
            {mso-height-source:auto;}
    col
            {mso-width-source:auto;}
    br
            {mso-data-placement:same-cell;}
    .style21
            {color:blue;
            font-size:10.0pt;
            font-weight:400;
            font-style:normal;
            text-decoration:underline;
            text-underline-style:single;
            font-family:Arial;

    Try search/ask in the forum devoted entirely to Excel issues:
    http://answers.microsoft.com/en-us/mac/forum/macexcel

  • Where can I find the web site ID of a project site in Project Server 2010?

    Hi, I need to find the ID of the project site of a project in Project Server 2010 in order to be able to identify that web site in the Sharepoint Content DB (in the reporting DB, in Projects_View appears the URL of the project site but not its web
    site ID). I need to list the documents stored in the project sites of the projects contained in the Project Center inside PWA.
    Thank you very much
    Regards
    Carlos Negroni

    Hi Mahesh:
    Thanks but what I need is to link that ID with the related project in Project Server databases. Anyway I think I'll use the FullURL information to join the tables because that information appears in the Reporting Database of Project Server (although maybe
    it is not the best alternative).
    Regards

  • There is no address line to put any web site addresses

    I have down loaded Fire Fox so many times and each time there is no address line to place any web site addresses.
    I have a laptop using windows 7

    Make sure that you do not run Firefox in Full Screen mode with all toolbars hidden.
    * Press F11 to toggle full screen mode (Firefox/File > Full Screen)
    If the menu bar is hidden then press the F10 key or hold down the Alt key, that should make the menu bar appear.
    Make sure that toolbars like the "Navigation Toolbar" and the "Bookmarks Toolbar" are visible: "View > Toolbars"
    * If items are missing then open the Customize window via "View > Toolbars > Customize" or via "Firefox > Options > Toolbar Layout"
    * If a missing item is in the toolbar palette then drag it back from the Customize window on the toolbar
    * If you do not see an item on a toolbar and in the toolbar palette then click the "Restore Default Set" button to restore the default toolbar set up.
    See also:
    * http://kb.mozillazine.org/Toolbar_customization
    * https://support.mozilla.com/kb/Back+and+forward+or+other+toolbar+items+are+missing

  • Why can't I open my courses in my on-line school web site now when I have always been able to before?

    windows recently updated and I updated my antivirus and since then when I go into my on line school web site I cannot open any of my courses.

    Reload web page(s) and bypass the cache to refresh possibly outdated or corrupted files.
    *Hold down the Shift key and left-click the Reload button
    *Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    *Press "Command + Shift + R" (Mac)
    Clear the cache and the cookies from websites that cause problems.
    "Clear the Cache":
    *Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox/Tools > Options > Privacy > Cookies: "Show Cookies"
    Do you access these pages via a secure https connection?
    If that is the case then check if Firefox is blocking mixed content coming via a normal http connection.
    *https://support.mozilla.org/kb/how-does-content-isnt-secure-affect-my-safety
    *https://developer.mozilla.org/en/Security/MixedContent
    Boot the computer in Windows Safe Mode with network support (press F8 on the boot screen) as a test to see if that helps in case security software is blocking access.
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

Maybe you are looking for

  • Officejet 7000 networking problems with usb printer

    connected up my new officejet 7000, replacing my deskjet 1280 on my pc, running xp sp3, networked on my work network. set up as shared printer. Showing on shared printer list on network, but when I try to install network printer on another machine on

  • Program RFSUMB00 year end closing in Italy.

    Hello All, I am setting up all the configurations for year end closing in Italy using program RFSUMB00. Here i need some clarification on the below points. 1. dummy vendor / customer master needs to be created for each recon account. here i would lik

  • Calling an iview from webdynpro do not run

    Hello, my environment consists of a Sap Netweaver Portal 7.0 (SP15) and ECC 6.0 (SP9). On portal I have configured UWL, so when the user click on workitem a custom webdynpro is run. Webdynpro is composed by some container, with some alv lists include

  • Error #572 when connecting to smtp mail server

    Hello everybody! I think there are a lot of possible problems may appear when using the UTL_SMTP package in different ways. Could anybody tell me whether the error message "ORA-29279: 572 a domain name must be specified" has ever been seen and correc

  • What happened to the video filter in Photoshop Elements 13?

    So disappointed in Photoshop Elements 13. Just upgraded from Elements 8 with great expectations that 13 would be better and more powerful. All they did was dumb it down. Wish I could get my money back.