Changeset 7228


Ignore:
Timestamp:
10/21/18 21:27:22 (6 years ago)
Author:
Leif-Jöran
Message:

Some further proofing in main.jsx.

Location:
SRUAggregator/trunk/src/main/resources/assets/js
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • SRUAggregator/trunk/src/main/resources/assets/js/main.js

    r7223 r7228  
    3511635116                                        React.createElement(
    3511735117                                                "div",
    35118                                                 { className: "rightist", style: { position: 'absolute', right: 0, width: 150 } },
     35118                                                { className: "rightist", style: { position: 'absolute', right: 0, width: 170 } },
    3511935119                                                React.createElement(
    3512035120                                                        "a",
    35121                                                         { href: this.props.URLROOT, target: "_blank", tabIndex: "-1" },
     35121                                                        { href: this.props.URLROOT + "/", target: "_blank", tabIndex: "-1" },
    3512235122                                                        React.createElement("img", { width: "28px", height: "28px", src: "img/magglass1.png" }),
    3512335123                                                        React.createElement(
     
    3761637616        var URLROOT = window.MyAggregator.URLROOT = window.location.pathname.substring(0, window.location.pathname.indexOf("/", 2)) ||
    3761737617        //window.location.pathname ||
     37618        //"/ws/fcs/2.0/aggregator";
    3761837619        "/Aggregator";
    3761937620
     
    3784037841                                                        React.createElement(
    3784137842                                                                "a",
    37842                                                                 { className: "navbar-brand", href: URLROOT, tabIndex: "-1" },
     37843                                                                { className: "navbar-brand", href: URLROOT + "/", tabIndex: "-1" },
    3784337844                                                                React.createElement("img", { width: "28px", height: "28px", src: "img/magglass1.png" }),
    3784437845                                                                React.createElement(
    3784537846                                                                        "header",
    3784637847                                                                        { className: "inline" },
    37847                                                                         " Content Search "
     37848                                                                        " Federated Content Search "
    3784837849                                                                )
    3784937850                                                        )
     
    3871838719                                'input-lg': true
    3871938720                        });
    38720                         var newurl = !query ? "#" : window.MyAggregator.URLROOT + "?" + encodeQueryData({ queryType: queryTypeId, query: query, mode: 'search' });
     38721                        var newurl = !query ? "#" : window.MyAggregator.URLROOT + (this.props.embedded ? "/embed" : "/") + "?" + encodeQueryData({ queryType: queryTypeId, query: query, mode: 'search' });
    3872138722                        return React.createElement(
    3872238723                                "a",
     
    3930539306                                        "p",
    3930639307                                        null,
    39307                                         "To perform a simple keyword search in all CLARIN Federated Content Search centres and their corpora, go to the search field at the top of the page, enter your query, and click the 'search' button or press the 'Enter' key."
     39308                                        "To perform a simple keyword search in all CLARIN Federated Content Search centres and their corpora, go to the search field at the top of the page or switch to Text Layer Contextual Query Language (CQL) in the dropdown list, enter your query, and click the 'search' button or press the 'Enter' key."
    3930839309                                ),
    3930939310                                React.createElement(
    3931039311                                        "p",
    3931139312                                        null,
    39312                                         "To perform an advanced search on multiple annotation layers in CLARIN Federated Content Search centres that support this, switch to Multi-layer Federated Content Search (FCS) in the dropdown list, enter a FCS query in the search field at the top of the page, and click the 'search' button or press the 'Enter' key."
     39313                                        "To perform an advanced search on multiple annotation layers in CLARIN Federated Content Search centres that support this, switch to Multi-layer Federated Content Search (FCS-QL) in the dropdown list, create the query in the Graphical Query Builder, and click the 'search' button or press the 'Enter' key. Alternatively in embedded mode enter a FCS-QL query in the search field at the top of the page."
    3931339314                                ),
    3931439315                                React.createElement(
  • SRUAggregator/trunk/src/main/resources/assets/js/main.jsx

    r7223 r7228  
    1919        window.location.pathname.substring(0, window.location.pathname.indexOf("/", 2)) ||
    2020        //window.location.pathname ||
     21        //"/ws/fcs/2.0/aggregator";
    2122        "/Aggregator";
     23
    2224
    2325var PT = PropTypes;
     
    194196                                                                <span className="icon-bar"></span>
    195197                                                        </button>
    196                                                         <a className="navbar-brand" href={URLROOT} tabIndex="-1">
     198                                                        <a className="navbar-brand" href={URLROOT + "/"} tabIndex="-1">
    197199                                                                <img width="28px" height="28px" src="img/magglass1.png"/>
    198                                                                 <header className="inline"> Content Search </header>
     200                                                                <header className="inline"> Federated Content Search </header>
    199201                                                        </a>
    200202                                                </div>
Note: See TracChangeset for help on using the changeset viewer.