浏览代码

Change windows build image

Arkadiusz Ryś 2 年之前
父节点
当前提交
c33befd771
共有 2 个文件被更改,包括 11 次插入8 次删除
  1. 2 2
      .gitlab-ci.yml
  2. 9 6
      README.rst

+ 2 - 2
.gitlab-ci.yml

@@ -49,7 +49,7 @@ build-upload:
     - tags
 
 build-windows-exe:
-  image: cdrx/pyinstaller-windows
+  image: schnouki/pyinstaller-windows-ci
   stage: build
   script:
     - pip install -r requirements.txt
@@ -61,6 +61,6 @@ build-windows-exe:
 #  only:
 #    - tags
   artifacts:
-    name: "graph-exploring-tool-%CI_TAG.zip" # % because of windows https://docs.gitlab.com/ee/ci/jobs/job_artifacts.html#with-a-windows-runner-or-shell-executor
+    name: "graph-exploring-tool-%CI_TAG.zip" # % because of windoze https://docs.gitlab.com/ee/ci/jobs/job_artifacts.html#with-a-windows-runner-or-shell-executor
     paths:
       - ./buildgraph-exploring-tool.zip

+ 9 - 6
README.rst

@@ -40,7 +40,7 @@ Usage
 Interface
 ~~~~~~~~~
 
-|query_image||prefix_image|
+|query_image| |prefix_image|
 |ui_annotated_image|
 
 .. |query_image| image:: docs/query.png
@@ -57,13 +57,14 @@ Interface
 
 The Graph Exploring Tool (or GET) is a graphical application which allows you to explore the knowledge graph using SPARQL queries.
 We provide templates which allow for quick traversal of compliant knowledge graphs.
-The tool separates actions into multiple panel.
-1. The left Query Palette panel (red) allows you to load a predefined template. Hovering over the name of the template will provide a tooltip with the description of the action carried out by that template.
-2. The center and main Query Editor panel (green) is where the template is shown once it has been chosen. You can change the template itself or use the provided fields (blue) to insert references into the template itself.
+The tool separates actions into multiple panels.
+
+1. The left Query Palette panel **(red)** allows you to load a predefined template. Hovering over the name of the template will provide a tooltip with the description of the action carried out by that template.
+2. The center and main Query Editor panel **(green)** is where the template is shown once it has been chosen. You can change the template itself or use the provided fields **(blue)** to insert references into the template itself.
    The reference fields support dragging and dropping.
    To perform the query you need to click the Query button.
-3. The small one line panel (yellow) show the status. This includes messages whether a query was successful. Any error will also be displayed right here.
-4. The most important panel is the Results panel (orange). Any information returned by the query will be displayed here.
+3. The small one line panel **(yellow)** show the status. This includes messages whether a query was successful. Any error will also be displayed right here.
+4. The most important panel is the Results panel **(orange)**. Any information returned by the query will be displayed here.
    You can drag and drop any of the fields in the result onto the parameters fields in the template.
 
 
@@ -75,7 +76,9 @@ You open up the FTGPM++ (workflow diagram) and look at what is of interest to yo
 Let's say you are interested in finding all the individuals (or instances) of a certain type.
 You look at the Query Palette panel. You see the first options which is what you need.
 Now you click on this (Find Individuals) button. Here you see that you need to specify two parameters.
+
 - We need to know what class the individuals you're looking for belong to and perhaps a relation to another individual.
+
 The example assumes you want to find all Formalisms and their name.
 At this point you can execute the query by clicking the Query button.
 The list of corresponding individuals will now be visible in the Results panel.