Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for stylesheet (0.25 sec)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/XslTransformer.java

            }
            File stylesheet = new File(args[0]);
            File source = new File(args[1]);
            File dest = new File(args[2]);
            String destDir = "";
            if (args.length > 3) {
                destDir = args[3];
            }
    
            System.out.format("=> stylesheet %s%n", stylesheet);
            System.out.format("=> source %s%n", source);
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Thu Oct 05 19:36:14 GMT 2023
    - 2.2K bytes
    - Viewed (0)
  2. build-logic/documentation/src/main/groovy/gradlebuild/docs/DslReference.java

         */
        public abstract DirectoryProperty getRoot();
    
        /**
         * The stylesheet directory used by the DSL reference documentation.
         */
        public abstract DirectoryProperty getStylesheetDirectory();
    
        /**
         * The stylesheet used by the DSL reference to highlight code snippets.
         */
        public abstract RegularFileProperty getHighlightStylesheet();
    
        /**
    Java
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 1.9K bytes
    - Viewed (0)
  3. build-logic/buildquality/src/main/kotlin/gradlebuild/incubation/action/IncubatingApiReportAggregationWorkAction.kt

           <title>Incubating APIs</title>
           <link xmlns:xslthl="http://xslthl.sf.net" rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:400,400i,700">
           <meta xmlns:xslthl="http://xslthl.sf.net" content="width=device-width, initial-scale=1" name="viewport">
           <link xmlns:xslthl="http://xslthl.sf.net" type="text/css" rel="stylesheet" href="https://docs.gradle.org/current/userguide/base.css">
    
        </head>
        <body>
    HTML
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon Jan 18 06:55:55 GMT 2021
    - 3.4K bytes
    - Viewed (0)
  4. build-logic/documentation/src/main/groovy/gradlebuild/docs/ReleaseNotesTransformer.java

                    append("<meta name='viewport' content='width=device-width, initial-scale=1'>").
                    append("<title>Gradle @version@ Release Notes</title>").
                    append("<link rel='stylesheet' type='text/css' href='https://assets.gradle.com/lato/css/lato-font.css'/>");
            addCssToHead(document);
            addJavascriptToHead(document);
    
            wrapH2InSectionTopic(document);
    Java
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Thu Jan 26 13:00:32 GMT 2023
    - 8.1K bytes
    - Viewed (0)
  5. build-logic/buildquality/src/main/kotlin/gradlebuild/incubation/action/IncubatingApiReportWorkAction.kt

           <title>Incubating APIs for $title</title>
           <link xmlns:xslthl="http://xslthl.sf.net" rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:400,400i,700">
           <meta xmlns:xslthl="http://xslthl.sf.net" content="width=device-width, initial-scale=1" name="viewport">
           <link xmlns:xslthl="http://xslthl.sf.net" type="text/css" rel="stylesheet" href="https://docs.gradle.org/current/userguide/base.css">
    
        </head>
        <body>
    HTML
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Sun Jun 25 02:53:14 GMT 2023
    - 12.7K bytes
    - Viewed (0)
  6. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleUserManualPlugin.java

                Map<String, Object> attributes = new HashMap<>();
                // TODO: This breaks the provider
                attributes.put("stylesdir", stylesDir.get().getAsFile().getAbsolutePath());
                attributes.put("stylesheet", "manual.css");
                attributes.put("doctype", "book");
                attributes.put("imagesdir", "img");
                attributes.put("nofooter", true);
                attributes.put("sectanchors", true);
    Java
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Mar 01 05:46:51 GMT 2024
    - 17.7K bytes
    - Viewed (0)
  7. .tm_properties

    projectDirectory = "$CWD"
    exclude = "{**/build/{classes,distributions,repo,integ test,timestamp.txt,libs,tmp,*resources,checkstyle,distDocs,samples,snippets,src,stylesheets},gradlew,*.{iml,ipr,iws,bat},intTestHomeDir,out}"
    softTabs = true
    tabSize = 4
    
    TM_JAVA_SOURCE_FOLDER_REGEX=src|groovy|java|test|unit|integration|functional
    
    [ "**/build/reports/tests" ]
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Thu Nov 17 15:17:22 GMT 2011
    - 382 bytes
    - Viewed (0)
  8. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleDslReferencePlugin.java

                dslRef.getRoot().convention(extension.getSourceRoot().dir("dsl"));
                dslRef.getStylesheetDirectory().convention(extension.getSourceRoot().dir("stylesheets"));
                dslRef.getHighlightStylesheet().convention(dslRef.getStylesheetDirectory().file("custom-highlight/custom-xslthl-config.xml"));
    
    Java
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 5.7K bytes
    - Viewed (0)
Back to top