"texts on html file" are not updated "when edited on server"

Hi All,
QUESTION
What are the solutions, for having editable text/content on .html published files, so clients can edit through their server control panel
Scenario:
Client wants to update the "text" by editing the .html files on a server.
I published the website as static html so the text can be included in .html file, but edits made on server's control panel, doesnt appear in live website.
I also noticed that the texts located in edgeActions.js are editable through server, i am not very interested to define all my text content as the dynamic
code because then I must worry about empty .html files and SEO questions.

Here is what I ve found in regard to my own question...
For a Client, to be able to change the text on server (Ex: phone numbers in a contact page), they should access and modify the text in the   edge.js or sometimes edgeaction.js page. Changing the text on .html page will create no result. I assume, this is because, the .html page is exported ONCE and only at the point of Publishing a project, to satisfy the SEO needs or whatever. Think of the text on .html page as a Sticker to fool the rest of the world, changing it will not change anything on webste and. Also if you change the text in .js, the change will not be relfected on .html file.

Similar Messages

  • Jspf files are not interpretated when included? weblogic 8.1

    Well My problem is that jspf files are not interpretated when included
              into jsp files. stuff such as netui tags are included as text and
              printed as such?
              Does this mean that jspf files are only for pure HTML?

    Hey David
              I discovered the error its the special danish letters (which I cant even
              write here due to the charset). ae,oe,aa (???)
              When used as variable names in a jspf file and included they are
              misinterpreted. This is not the case in a jsp file.
              Its clearly a bug in BEA, but I replaced all occurrences and worked
              myself around it.
              David Karr skrev:
              > It's important to understand that JSP pages are compiled into servlet classes, and then loaded into the JVM. The servlet class is executed when the JSP page is loaded by the application.
              >
              > It's also important to understand the difference between an "include directive", and an "include action". The "directive" includes the text into the JSP page before it is compiled, so any JSP tags in the included text will be compiled as if they were part of the original page. The "action" includes the text at run-time, after the JSP is converted to a servlet and loaded into the JVM. If the result of your "include action" is a string of text with JSP tags, that string will be included in the result as-
              > is, without being compiled.
              >
              > From what you describe, I'm guessing you're using an include action, not an include directive. Reorganize your application to use include directives for your ".jspf" files, and you should be on the right track.

  • Music files are not updating in nokia n-79.

    I added mp3 files to my mobile nokia n79,but files is not updating in music library,when we refresh manually it nont stops saying "0 file added"...,but when i play songs in filemanager it plays well..pls help me out of this ASAP.

    Try the procedure mentioned here:
    /t5/Nseries-and-S60-Smartphones/Can-t-refresh-N97-music-library/ta-p/948327

  • In JEditorPane the links in HTML file are not working

    hi,
    I am using JEditorPane to dispaly HTML file.
    In the html files there are some links to some other pages.
    The JEditorPane is showing the links but it didn't work when i click.
    Is there any Events which i have to add?

    Try posting in the Mac Number forum.
    https://discussions.apple.com/community/iwork/numbers
    Also, specify the version of Numbers you are using.

  • Gif and html files are not found

    Hi everyone,
    I am trying to deploy an application that I have written for websphere on iPlanet 6.5. The deployment is succesful and the application works but none of my images are shown. Also if I try to open my index.htm page it will not be recognized by the server.
    I have noticed that if I put those file in the docs folder of my webserver they will be found but then of course the links are not correct any more because the the jsps and servlets are not in de NASApp folder.
    Does anybody know a sollution for this. I don't want to rewrite my entire application just because I am changing application servers.
    Thank you for your help in advance.
    Greetings Manuel

    I'm not sure what you mean. The bottom line is that the webserver only forwards requests to the appserver that begin with NASApp (or whatever your token is).
    So if your index page has the URL of http://myserver.mydomain/NASApp/myapp/index.html then a relative URL of images/home.gif will load the gif from the application server (since the broswer will actually request http://myserver.mydomain/NASApp/myapp/index.html ). If you use the URL /images/home/gif , then the GIF will be requested from the docroot of the webserver.
    David

  • Custom HTML Master Page not updating when activating Feature via PowerShell

    I created a WSP to deploy a HTML Master Page.  I later have code that will publish this Master Page to create a .master, but I stripped this out just to simplify things.  My issue is with the first step - getting the HTML Master Page file to
    update by activating the feature using PowerShell.  I don't understand why it's not working - I'm not even using this Master Page currently.  Plus, oddly the master page does update if I go into the UI and deactivate/activate my feature. 
    I can easily reproduce this problem using the following steps:
    1. Created a SharePoint Empty Project named SharePointProject1
    2. Added a Module named Module1
    3. Added a HTML Master Page called MyMaster.html and updated the elements.xml file for the Module1 with the following:
     <Elements xmlns="http://schemas.microsoft.com/sharepoint/">
      <Module Name="Module1" Url="_catalogs/masterPage/Test">
        <File Path="Module1\MyMaster.html" Url="MyMaster.html" ReplaceContent="TRUE" Level="Published" Type="GhostableInLibrary">
          <Property Name="Title" Value="My Master Page" />
          <Property Name="MasterPageDescription" Value="My Master Page" />
          <Property Name="UIVersion" Value=";#15;#" />
          <Property Name="HtmlDesignAssociated" Value="TRUE" />
          <Property Name="ContentType" Value="Html Master Page" />
        </File>
      </Module>
    </Elements>
    4. Deployed the WSP and activated the Feature containing Module1
    5. Updated the HTML Master Page
    6. Re-deployed the WSP
    7. Deactivated the feature and Reactivated the feature using PowerShell 
         => _catalogs/masterpage/test folder still has OLD file - Why??
        $deployFeatureId = "575ec423-1b20-404c-8b2c-d160426c53e7"
        Disable-SPFeature -Identity $deployFeatureId -Url
    http://sp2013local -confirm:$false
        Enable-SPFeature -Identity $deployFeatureId -Url
    http://sp2013local
    8. Deactivated the feature and Reactivated the feature through UI
         => _catalogs/masterpage/test folder now has the correct file
    I even added event receiver code to delete the HTML file on deactivation but that still didn't work.

    Hi Sagar,
    The second link isn't applicable for me because I'm not setting the Master Page for the site collection just yet.  I'm just trying to get the version to be correct in the master page library first.
    For the first link, I am trying to publish a Master Page, not a Page Layout.  I did try adding some similar code that I found from this article,
    http://www.eliostruyf.com/provision-your-html-designs-master-pages-page-layouts-to-sharepoint-2013/
    but the same result.  PowerShell is still copying an old version of the file to the Master Page Gallery, but the activating/deactivating the feature in the UI works fine. 
    Here is my code:
    <?xml version="1.0" encoding="utf-8"?>
    <Elements xmlns="http://schemas.microsoft.com/sharepoint/">
      <Module Name="Module1" Url="_catalogs/masterPage/Test">
        <File Path="Module1\MyMaster.html" Url="MyMaster.html" ReplaceContent="TRUE" Level="Draft" Type="GhostableInLibrary">
        </File>
      </Module>
    </Elements>
        public class Feature1EventReceiver : SPFeatureReceiver
            public override void FeatureActivated(SPFeatureReceiverProperties properties)
                SPSite site = (SPSite)properties.Feature.Parent;
                PublishMasterPage(site, "/_catalogs/masterpage/Test/MyMaster.html");
            public void PublishMasterPage(SPSite site, string filePath)
                SPFile file = site.RootWeb.GetFile(filePath);
                if (file.CheckOutType != SPFile.SPCheckOutType.None)
                    file.Item.Update();
                else
                    file.CheckOut();
                    file.Item.Update();
                file.CheckIn("Checked in by the branding deploy feature", SPCheckinType.MajorCheckIn);
                if (file.DocumentLibrary.EnableModeration)
                    file.Approve("Approved by the branding deploy feature");

  • Files are not updating on my remote site.

    Hi, Everything has been fine with my site until today.  Something is different.  When I make a new page in Dreamweaver and save it as a new .html page, then I syncronize as I always have.  Not only does it not upadate my files, but it continually shows files which have already been syncronized.  I have even taken a page which is showing just fine on the internet, added something to it, snycronized it, and it does no updating at all.  I hope I am giving you enough info.  If not, please tell me, but I dont know what has changed to cause this.

    One more test.  Add this last modified meta tag to your page in code view, right below your <title> </title> tags.
    <meta http-equiv="Last-Modified" content="13 September, 2009 at 21:13:24" />
    Upload to server.  Refresh browser. Can you see the new page now?
    If not, contact your host.  Your site may be up, but on some of the cheaper web hosting accounts (not saying yours is cheap BTW b/c I don't know anything about them), servers don't reflect updates right away.  Also, make  sure you haven't run out of   server space and you're uploading to the correct folder?
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • New PC files are not updating on the LINK PC window

    When I loaded the Link soft ware on to my pc it uploaded all my music/pictures/document files- perfect. However later I saved a new music file on my PC but it does not show on the LINK soft ware window? The file was a new itunes music file which I can see on Itunes but not on the LINK PC window. All the other music files came from the same source in itunes so I know that works. Is there some kind of refresh?

    Hello guymad,
    Are you able to add other new files to see if you experience the same issue? What is the source of this new audio file? Is it DRM protected?
    Thank you,
    -FB
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.
    Click "Accept as a Solution" for posts that have solved your issue(s)!

  • Pdf files are not opening. when change to diff. search engine they open

    was trying to open an ally bank acct. it ask that i print some pdf forms . they would open but the page stayed blank. I closed the firefox engine and opened safari when i got to the pdf forms they opened with the content.

    hello vijayabhaskarv, that sounds as if you're using the pdf viewer built into firefox per default, which might not work in all situations. please see the following article in order to select a different plugin to render pdf files: [[How to disable the built-in PDF viewer and use another viewer]]

  • Folder views are not updated when you arrange by categories in Outlook

    According to KB2925273, the work around doesn't really work for us, when can we expect a proper fix for this bug?

    Hi,
    If the workaround does not work for you, I think the symptom you encounter may not fully match the one described on the KB article. I have some questions:.
    1. When did the issue firstly happened, just after applying the RU?
    2. What’s the user impact, all the users or some specific users?
    3. Have you tried resetting the folder views to the default settings on the Outlook side and does it help?
    Thanks,
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Simon Wu
    TechNet Community Support

  • MAC Files are not Visible when logged in on Windows

    HEllo
    I installed 10.5 with Boot camp and Windows XP successfully on my MAc Mini (1GB RAM).
    When i log on to MAC i see the Windows partitoned HDD and its contents however when i log on to windows i cant see the MAC Partitoned HDD in windows explorer.
    Does any one know a workaround to this issue?
    Thanks

    What you see has always been and is normal. However, if you must, you can buy MacDrive7 - they have a demo - which allows 32-bit versions of Windows to access (r/w) to HFS+ volumes.

  • Icons for images on desktop do not update when edited in Preview

    I didn't know what topic to put this in but I guess I consider this a Finder issue.
    Here's the problem: In both Leopard and Tiger, when I edit something in Preview and save it the little icon preview image on my desktop (you know, above the file name) does not change, even after I restart. I know the world isn't going to end because of it but it has gotten to the point where I'll edit things in Photoshop instead of Preview just to get the stupid icon to be accurate, otherwise I don't know if I've worked on a picture already or not. It would save me from a lot of time wasted booting up Photoshop just to crop an image.
    I also noticed that the Spotlight comments (when I use "get info" on the file) still describe the picture in its larger format before cropping. It just doesn't seem to update itself. The image I am looking at as an example is a PNG right now but I'm sure it has happened with jpegs as well. (generally I'll just go into Photoshop in the end and save from there to update the icon out of frustration)
    Can this be fixed? It would certainly make me enjoy using Preview a little more.
    I thought this would go away with a Leopard upgrade but it doesn't seem to.

    chakramchucker wrote:
    Is there a way to remove or replace the preview image manually, then?
    select the files with custom icons and enter commandoptioni.
    in the resulting info window select the little icon in the top left corner and press delete.

  • Files are not applying in Stand by server.

    Hi All,
    We are getting the bellow error in standby server while applying log files.
    Media Recovery Log /oracle/DB7/saparch/DB7arch1_97211_627008903.dbf
    Errors with log /oracle/DB7/saparch/DB7arch1_97211_627008903.dbf
    ORA-310 signalled during: ALTER DATABASE RECOVER    LOGFILE '/oracle/DB7/saparch/DB7arch1_97211_627008903.dbf'  ...
    Fri Feb 18 13:09:56 2011
    ALTER DATABASE RECOVER CANCEL
    ORA-1547 signalled during: ALTER DATABASE RECOVER CANCEL ...
    This error we are facing after sudden reboot/crash of the server.  Upto DB7arch1_97210 files successfully applied.
    Please help on this.
    Regards,
    Venkata.

    Make the all archivelogs available in archive directory and use below command (After mounting your DB in standby mode).
    recover standby database
    Update this message with the result after issuing above command (Paste the last 10 lines of your controlfile)
    Regards,
    Nick Loy

  • Text not updated when changing the ResourceBundle

    this is an abstraction of what i have on my code:
    controller
    public class controller extends VBox{
         @FXML protected Label ex2;
         public CtrlMainMenu() throws Exception{
              FXMLLoader fxmlLoader = new FXMLLoader(getClass().getResource("/view/View.fxml"));
              fxmlLoader.setController(this);
              fxmlLoader.setRoot(this);
              fxmlLoader.setResources(CtrlLanguage.resource);
              fxmlLoader.load();
         @Override public void initialize(URL arg0, ResourceBundle arg1) {
              ex2.setText(arg1.getString("ex2"));
    }View
    <fx:root type="VBox" xmlns:fx="http://javafx.com/fxml">
         <children>
              <Label text="%ex1"/>
              <Label fx:id="ex2"/>
         <children>
    </fx:root>Language controller
    public class CtrlLanguage{
         private static String PATH =
              new File(
                   CtrlImageLoader.class.getProtectionDomain().getCodeSource().getLocation().getPath()
              ).getParentFile().getPath() + "/language/";
         public static ResourceBundle resource;
         public static void setLanguage(String file) throws Exception{
              try {
                   if(new File(PATH + file).exists())
                        resource = new PropertyResourceBundle(new FileInputStream(PATH + file));
                   else
                        resource = new PropertyResourceBundle(CtrlLanguage.class.getResourceAsStream("/language/"+file));
              } catch (Exception e) {
                   resource = new PropertyResourceBundle(CtrlLanguage.class.getResourceAsStream("/language/EN"));
         public static String get(String key){
              try {
                   return resource.getString(key);
              } catch (Exception e) {
                   return key;
    }problem comes when I try to change the language without changing the current root
    the elements of the view are not updated when the bundle is changed (CtrlLanguage.setLanguage("file");) until the root is changed/loaded again
    is there any way so i can make the content change without having to reload again the root?

    A method which returns an instance of the following class:
    * A localizable read only property for internationalization of string properties.
    * @author Christian Schudt
    public final class LocalizableStringProperty extends ReadOnlyStringProperty {
        private String resourceKey;
        private StringProperty text;
        private String baseName;
        private ClassLoader classLoader;
        // Keep the listener as hard reference in the class, so that it won't get GCed, until this class has no references any more.
        private ChangeListener<Locale> changeListener;
        public LocalizableStringProperty(LocaleManager localeManager, String baseName, String resourceKey) {
            this(localeManager, baseName, resourceKey, null);
        public LocalizableStringProperty(LocaleManager localeManager, String baseName, String resourceKey, ClassLoader classLoader) {
            changeListener = new ChangeListener<Locale>() {
                @Override
                public void changed(ObservableValue<? extends Locale> observableValue, Locale locale, Locale locale1) {
                    localeChanged(locale1);
            localeManager.localeProperty().addListener(new WeakChangeListener<Locale>(changeListener));
            this.baseName = baseName;
            this.classLoader = classLoader;
            this.resourceKey = resourceKey;
            text = new SimpleStringProperty();
            localeChanged(localeManager.getLocale());
        private void localeChanged(Locale locale) {
            ResourceBundle resourceBundle;
            Locale.setDefault(locale);
            if (classLoader == null) {
                resourceBundle = ResourceBundle.getBundle(baseName, locale);
            } else {
                resourceBundle = ResourceBundle.getBundle(baseName, locale, classLoader);
            text.set(resourceBundle.getString(resourceKey));
        @Override
        public String get() {
            return text.get();
        @Override
        public Object getBean() {
            return text.getBean();
        @Override
        public String getName() {
            return text.getName();
        @Override
        public void addListener(ChangeListener<? super String> changeListener) {
            text.addListener(changeListener);
        @Override
        public void removeListener(ChangeListener<? super String> changeListener) {
            text.removeListener(changeListener);
        @Override
        public void addListener(InvalidationListener invalidationListener) {
            text.addListener(invalidationListener);
        @Override
        public void removeListener(InvalidationListener invalidationListener) {
            text.removeListener(invalidationListener);
    }

  • Folders last modified time stamp are not updated in Windows 7

    After changing any .cpp file in Visual Studio, the last modified time stamp for the file's folder
    IS NOT updated. What's happening ?
    However when I change a Word (.docx) file, the last modified time stamp for the file's folder
    IS updated ! How come ?

    Hi,
    If you thought this issue gets worse and if you have already set NtfsDisblesLastAccessUpdate to 0, then please revoke it to 1.
    From the above Blog we can see that in Windows 7, the "Last Modified" field on log files is not updated when a program attempts to open the file or the utility is stopped, this is a design change to NTFS , becase we cache the metadata for
    folder contents and do not refresh it until a handle is closed on an open file or an explicit call is made to retrieve the properties of an individual file.
    Per your current issue that even if you closed these Vistual Studio files, the timestamp still didn't update. Please try the following and check whether any of them work:
    - open the file in a second program
    - view the proprties of the file
    - "dir <filename>" at a command prompt 
    In addition, if you edit these Vistual Studio files with Notepad(Before doing that, please close all the programs include Vistual Studio) and try to reproduce the issue, does the issue still occur?
    Regards,
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

Maybe you are looking for