Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs: Continued generation iteration #33

Merged
merged 1 commit into from
Feb 20, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 16 additions & 2 deletions docs/bin/generate-manifest.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
$repo = 'wordpress/secure-custom-fields';

$manifest = array();
$slug_map = array(); // Track slugs and their sources
$paths = array(
$root . '/*.md',
$root . '/*/*.md',
Expand All @@ -36,8 +37,12 @@
// Get relative path from docs directory
$key = str_replace( array( $root . '/', '.md' ), '', $file );

// Handle index.md files specially
if ( 'index' === $slug ) {
// Special handling for tutorial files
if ( 'tutorial' === $slug ) {
$bits = explode( '/', $key );
array_pop( $bits ); // Remove 'tutorial'
$slug = end( $bits ) . '-tutorial'; // Use parent directory name plus -tutorial
} elseif ( 'index' === $slug ) { // Handle index.md files specially.
$bits = explode( '/', $key );
array_pop( $bits ); // Remove 'index'
$slug = end( $bits ); // Use parent directory name as slug
Expand All @@ -61,6 +66,15 @@
basename( $file ) === 'index.md' ? '/index.md' : '.md'
),
);

// Check for slug conflicts
if ( isset( $slug_map[ $slug ] ) ) {
printf( "\nError: Slug conflict detected!\n\n" );
printf( "Original entry:\n%s\n\n", json_encode( $manifest[ $slug_map[ $slug ] ], JSON_PRETTY_PRINT ) );
printf( "Conflicting entry:\n%s\n\n", json_encode( $manifest[ $key ], JSON_PRETTY_PRINT ) );
exit( 1 );
}
$slug_map[ $slug ] = $key;
}
}

Expand Down
71 changes: 33 additions & 38 deletions docs/bin/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,6 @@
"parent": "features",
"markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/api.md"
},
"features/fields": {
"slug": "fields",
"parent": "features",
"markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/fields/index.md"
},
"features": {
"slug": "features",
"parent": null,
Expand Down Expand Up @@ -69,23 +64,18 @@
"parent": null,
"markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/tutorials/index.md"
},
"features/fields/clone": {
"slug": "clone",
"parent": "features/fields",
"markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/fields/clone/index.md"
},
"features/fields/tutorial": {
"slug": "tutorial",
"parent": "features/fields",
"markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/fields/tutorial.md"
"features/fields": {
"slug": "fields",
"parent": "features",
"markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/fields/index.md"
},
"features/fields/accordion": {
"slug": "accordion",
"parent": "features/fields",
"markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/fields/accordion/index.md"
},
"features/fields/accordion/tutorial": {
"slug": "tutorial",
"slug": "accordion-tutorial",
"parent": "features/fields/accordion",
"markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/fields/accordion/tutorial.md"
},
Expand All @@ -95,7 +85,7 @@
"markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/fields/button-group/index.md"
},
"features/fields/button-group/tutorial": {
"slug": "tutorial",
"slug": "button-group-tutorial",
"parent": "features/fields/button-group",
"markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/fields/button-group/tutorial.md"
},
Expand All @@ -105,12 +95,17 @@
"markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/fields/checkbox/index.md"
},
"features/fields/checkbox/tutorial": {
"slug": "tutorial",
"slug": "checkbox-tutorial",
"parent": "features/fields/checkbox",
"markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/fields/checkbox/tutorial.md"
},
"features/fields/clone": {
"slug": "clone",
"parent": "features/fields",
"markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/fields/clone/index.md"
},
"features/fields/clone/tutorial": {
"slug": "tutorial",
"slug": "clone-tutorial",
"parent": "features/fields/clone",
"markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/fields/clone/tutorial.md"
},
Expand All @@ -120,7 +115,7 @@
"markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/fields/color-picker/index.md"
},
"features/fields/color-picker/tutorial": {
"slug": "tutorial",
"slug": "color-picker-tutorial",
"parent": "features/fields/color-picker",
"markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/fields/color-picker/tutorial.md"
},
Expand All @@ -130,7 +125,7 @@
"markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/fields/date-picker/index.md"
},
"features/fields/date-picker/tutorial": {
"slug": "tutorial",
"slug": "date-picker-tutorial",
"parent": "features/fields/date-picker",
"markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/fields/date-picker/tutorial.md"
},
Expand All @@ -140,7 +135,7 @@
"markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/fields/date-time-picker/index.md"
},
"features/fields/date-time-picker/tutorial": {
"slug": "tutorial",
"slug": "date-time-picker-tutorial",
"parent": "features/fields/date-time-picker",
"markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/fields/date-time-picker/tutorial.md"
},
Expand All @@ -150,7 +145,7 @@
"markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/fields/email/index.md"
},
"features/fields/email/tutorial": {
"slug": "tutorial",
"slug": "email-tutorial",
"parent": "features/fields/email",
"markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/fields/email/tutorial.md"
},
Expand All @@ -160,7 +155,7 @@
"markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/fields/file/index.md"
},
"features/fields/file/tutorial": {
"slug": "tutorial",
"slug": "file-tutorial",
"parent": "features/fields/file",
"markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/fields/file/tutorial.md"
},
Expand All @@ -170,7 +165,7 @@
"markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/fields/flexible-content/index.md"
},
"features/fields/flexible-content/tutorial": {
"slug": "tutorial",
"slug": "flexible-content-tutorial",
"parent": "features/fields/flexible-content",
"markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/fields/flexible-content/tutorial.md"
},
Expand All @@ -180,7 +175,7 @@
"markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/fields/gallery/index.md"
},
"features/fields/gallery/tutorial": {
"slug": "tutorial",
"slug": "gallery-tutorial",
"parent": "features/fields/gallery",
"markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/fields/gallery/tutorial.md"
},
Expand All @@ -190,7 +185,7 @@
"markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/fields/google-map/index.md"
},
"features/fields/google-map/tutorial": {
"slug": "tutorial",
"slug": "google-map-tutorial",
"parent": "features/fields/google-map",
"markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/fields/google-map/tutorial.md"
},
Expand All @@ -200,7 +195,7 @@
"markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/fields/group/index.md"
},
"features/fields/group/tutorial": {
"slug": "tutorial",
"slug": "group-tutorial",
"parent": "features/fields/group",
"markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/fields/group/tutorial.md"
},
Expand All @@ -210,7 +205,7 @@
"markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/fields/icon-picker/index.md"
},
"features/fields/icon-picker/tutorial": {
"slug": "tutorial",
"slug": "icon-picker-tutorial",
"parent": "features/fields/icon-picker",
"markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/fields/icon-picker/tutorial.md"
},
Expand All @@ -220,7 +215,7 @@
"markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/fields/image/index.md"
},
"features/fields/image/tutorial": {
"slug": "tutorial",
"slug": "image-tutorial",
"parent": "features/fields/image",
"markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/fields/image/tutorial.md"
},
Expand All @@ -230,7 +225,7 @@
"markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/fields/link/index.md"
},
"features/fields/link/tutorial": {
"slug": "tutorial",
"slug": "link-tutorial",
"parent": "features/fields/link",
"markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/fields/link/tutorial.md"
},
Expand All @@ -240,7 +235,7 @@
"markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/fields/message/index.md"
},
"features/fields/message/tutorial": {
"slug": "tutorial",
"slug": "message-tutorial",
"parent": "features/fields/message",
"markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/fields/message/tutorial.md"
},
Expand All @@ -250,7 +245,7 @@
"markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/fields/number/index.md"
},
"features/fields/number/tutorial": {
"slug": "tutorial",
"slug": "number-tutorial",
"parent": "features/fields/number",
"markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/fields/number/tutorial.md"
},
Expand All @@ -260,7 +255,7 @@
"markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/fields/oembed/index.md"
},
"features/fields/oembed/tutorial": {
"slug": "tutorial",
"slug": "oembed-tutorial",
"parent": "features/fields/oembed",
"markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/fields/oembed/tutorial.md"
},
Expand All @@ -270,7 +265,7 @@
"markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/fields/page-link/index.md"
},
"features/fields/page-link/tutorial": {
"slug": "tutorial",
"slug": "page-link-tutorial",
"parent": "features/fields/page-link",
"markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/fields/page-link/tutorial.md"
},
Expand All @@ -280,7 +275,7 @@
"markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/fields/password/index.md"
},
"features/fields/password/tutorial": {
"slug": "tutorial",
"slug": "password-tutorial",
"parent": "features/fields/password",
"markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/fields/password/tutorial.md"
},
Expand All @@ -290,7 +285,7 @@
"markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/fields/post-object/index.md"
},
"features/fields/post-object/tutorial": {
"slug": "tutorial",
"slug": "post-object-tutorial",
"parent": "features/fields/post-object",
"markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/fields/post-object/tutorial.md"
},
Expand All @@ -300,7 +295,7 @@
"markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/fields/radio/index.md"
},
"features/fields/radio/tutorial": {
"slug": "tutorial",
"slug": "radio-tutorial",
"parent": "features/fields/radio",
"markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/fields/radio/tutorial.md"
},
Expand All @@ -310,7 +305,7 @@
"markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/fields/range/index.md"
},
"features/fields/range/tutorial": {
"slug": "tutorial",
"slug": "range-tutorial",
"parent": "features/fields/range",
"markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/fields/range/tutorial.md"
}
Expand Down
41 changes: 0 additions & 41 deletions docs/features/fields.md

This file was deleted.

Empty file removed docs/features/fields/clone.md
Empty file.
Empty file removed docs/features/fields/tutorial.md
Empty file.
31 changes: 29 additions & 2 deletions docs/features/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This section details all features available in Secure Custom Fields.
## Core Features

- [Post Types](post-types.md) - Create and manage custom post types
- [Fields](fields.md) - Available field types and their usage
- [Fields](fields/index.md) - Available field types and their usage
- [API](api.md) - Programmatic access and integration

## Feature Categories
Expand All @@ -23,4 +23,31 @@ This section details all features available in Secure Custom Fields.
3. **Developer Tools**
- API endpoints
- Hooks and filters
- Helper functions
- Helper functions

## Available Fields

- [Accordion](fields/accordion/index.md) - Group fields into collapsible sections
- [Button Group](fields/button-group/index.md) - Select one option from a group of buttons
- [Checkbox](fields/checkbox/index.md) - Select one or more choices
- [Clone](fields/clone/index.md) - Duplicate and reuse existing field configurations
- [Color Picker](fields/color-picker/index.md) - Choose colors with a visual picker
- [Date Picker](fields/date-picker/index.md) - Select dates from a calendar
- [Date/Time Picker](fields/date-time-picker/index.md) - Select dates and times
- [Email](fields/email/index.md) - Input and validate email addresses
- [File](fields/file/index.md) - Upload and manage files
- [Flexible Content](fields/flexible-content/index.md) - Create flexible content layouts
- [Gallery](fields/gallery/index.md) - Manage collections of images
- [Google Map](fields/google-map/index.md) - Add location data with Google Maps
- [Group](fields/group/index.md) - Group fields together
- [Icon Picker](fields/icon-picker/index.md) - Select from available icons
- [Image](fields/image/index.md) - Upload and manage images
- [Link](fields/link/index.md) - Create links with titles and targets
- [Message](fields/message/index.md) - Display instructional text
- [Number](fields/number/index.md) - Input numeric values
- [oEmbed](fields/oembed/index.md) - Embed external content
- [Page Link](fields/page-link/index.md) - Link to internal content
- [Password](fields/password/index.md) - Securely input passwords
- [Post Object](fields/post-object/index.md) - Relate to other posts
- [Radio](fields/radio/index.md) - Select one choice from options
- [Range](fields/range/index.md) - Select a numeric value with a slider