<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Home</title><link>https://sourceforge.net/p/basic-website-studio-tkinter/wiki/Home/</link><description>Recent changes to Home</description><atom:link href="https://sourceforge.net/p/basic-website-studio-tkinter/wiki/Home/feed" rel="self"/><language>en</language><lastBuildDate>Sun, 09 Nov 2025 13:40:47 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/basic-website-studio-tkinter/wiki/Home/feed" rel="self" type="application/rss+xml"/><item><title>Home modified by Till Wuttke</title><link>https://sourceforge.net/p/basic-website-studio-tkinter/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v1
+++ v2
@@ -1,8 +1,135 @@
 Welcome to your wiki!

-This is the default page, edit it as you see fit. To add a new page simply reference it within brackets, e.g.: [SamplePage].
+# Basic Website Studio (Tkinter Edition)

-The wiki uses [Markdown](/p/basic-website-studio-tkinter/wiki/markdown_syntax/) syntax.
+A simple, lightweight code editor for basic web development, written in
+Python using the standard Tkinter GUI toolkit. This application is
+designed to run without any external Python libraries (like PySide6 or
+PyQt), making it ideal for easy distribution on Linux systems, such as
+in a `.deb` package.
+
+
+
+*(This is a representative screenshot of what the application might look
+like)*
+
+## ✨ Key Features
+
+-   **Project Wizard**: Create new projects with a standard directory
+    structure (`src/css`, `src/js`, `assets`).
+-   **File Explorer**: View project files and folders in a tree view.
+-   **Tabbed Editor**: Open and edit multiple files in separate tabs.
+-   **Simple Syntax Highlighting**: Basic highlighting for HTML tags,
+    attributes, and strings.
+-   **Live Preview**: Opens the project\'s `index.html` file in the
+    system\'s default web browser.
+-   **Build Integration**: A \"Build\" button that executes
+    `npm run build` in the project directory (requires Node.js/npm).
+-   **Dependency-Free (Python)**: Uses only the Python standard library,
+    making it highly portable.
+-   **Dark Theme**: A pleasant, dark user interface for focused work.
+
+## 🎯 Project Goal
+
+The original version of this application was developed using PySide6.
+This version has been completely ported to **Tkinter** to meet a crucial
+requirement: **maximum portability and ease of packaging on Linux**.
+
+By exclusively using Python\'s built-in modules, the need to install
+heavy GUI frameworks via `pip` is eliminated. This significantly
+simplifies the creation of a standalone Debian package (`.deb`), as the
+only core system dependency is `python3-tk`, which is readily available
+on most desktop Linux systems.
+
+## 🛠️ Requirements
+
+No `pip` installations are needed for the Python code itself. However, a
+few system packages are required.
+
+### Mandatory (for basic functionality)
+
+1.  **Python 3**: Should be pre-installed on most Linux systems.
+2.  **Tkinter Library**: Python\'s interface to the Tk GUI toolkit.
+
+### Optional (for the \"Build Project\" feature)
+
+1.  **Node.js and npm**: Required to run JavaScript-based build
+    processes.
+
+## 🚀 Installation &amp;amp; Usage
+
+Follow these steps to get the application running.
+
+**1. Install System Dependencies (for Debian/Ubuntu-based systems):**
+
+    # Update your system's package list
+    sudo apt-get update
+
+    # Install Tkinter for Python 3 (required)
+    sudo apt-get install python3-tk
+
+    # Install Node.js and npm (optional, for the build feature)
+    sudo apt-get install nodejs npm
+
+**2. Download the Application:**
+
+Download the `main.py` file or clone the repository if it\'s available
+in one.
+
+    # Example for cloning a repository
+    git clone https://example.com/your-repo.git
+    cd your-repo
+
+**3. Launch the Application:**
+
+Run the Python script from your terminal.
+
+    python3 main.py
+
+The application window should now appear.
+
+## 📝 How It Works
+
+### Project Creation
+
+The \"New Project\...\" wizard creates the following structure and
+populates it with default files:
+
+    YourProjectName/
+    ├── project.bws          # Editor configuration file
+    ├── src/
+    │   ├── index.html
+    │   ├── css/
+    │   │   └── style.css
+    │   └── js/
+    │       └── main.js
+    └── assets/
+        └── images/
+
+### Build Process
+
+The \"Build Project\" button is a simple shortcut for the
+`npm run build` command. For this to work, your project must contain a
+`package.json` file in its root directory that defines a script named
+`"build"`.
+
+**Example `package.json`:**
+
+    {
+      "name": "my-project",
+      "version": "1.0.0",
+      "scripts": {
+        "build": "echo 'Building...' &amp;amp;&amp;amp; rm -rf dist &amp;amp;&amp;amp; mkdir dist &amp;amp;&amp;amp; cp -r src/* dist/"
+      }
+    }
+
+The output from the build process will be displayed in the \"Output\"
+panel at the bottom of the application.
+
+## 📜 License
+
+This project is licensed under the MIT License. See the `LICENSE` file
+for more details.

 [[members limit=20]]
 [[download_button]]
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Till Wuttke</dc:creator><pubDate>Sun, 09 Nov 2025 13:40:47 -0000</pubDate><guid>https://sourceforge.net02ee6c82b10927275a358d8d5dfd95d7d3a1b9ec</guid></item><item><title>Home modified by Till Wuttke</title><link>https://sourceforge.net/p/basic-website-studio-tkinter/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Welcome to your wiki!&lt;/p&gt;
&lt;p&gt;This is the default page, edit it as you see fit. To add a new page simply reference it within brackets, e.g.: &lt;span&gt;[SamplePage]&lt;/span&gt;.&lt;/p&gt;
&lt;p&gt;The wiki uses &lt;a class="" href="/p/basic-website-studio-tkinter/wiki/markdown_syntax/" rel="nofollow"&gt;Markdown&lt;/a&gt; syntax.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;h6&gt;Project Members:&lt;/h6&gt;
    &lt;ul class="md-users-list"&gt;
        &lt;li&gt;&lt;a href="/u/tiwut/"&gt;Till Wuttke&lt;/a&gt; (admin)&lt;/li&gt;
        
    &lt;/ul&gt;&lt;br/&gt;
&lt;p&gt;&lt;span class="download-button-69109800739e4d1c46884a78" style="margin-bottom: 1em; display: block;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Till Wuttke</dc:creator><pubDate>Sun, 09 Nov 2025 13:32:49 -0000</pubDate><guid>https://sourceforge.net7e5fa7faf0ff7b281f67407b1b89ca2c7fb3e994</guid></item></channel></rss>