Remove Warp cloud features and OpenTelemetry
Settings cleanup: - Remove billing_and_usage, main_page, referrals_page, show_blocks_view, environments_page, handoff_environment_creation_modal, custom_inference_modal, remove_custom_endpoint_confirmation_dialog, transfer_ownership_confirmation_modal, delete_environment_confirmation_dialog - Remove SettingsSection variants: Account, BillingAndUsage, Referrals, SharedBlocks, CloudEnvironments, OzCloudAPIKeys - Remove SettingsPageViewHandle variants: Main, BillingAndUsage, Referrals, CloudEnvironments, OzCloudAPIKeys, SharedBlocks - Add Platform variant for PlatformPageView - Gut custom inference endpoint UI from ai_page.rs - Gut transfer ownership modal from teams_page.rs - Stub environment_management_pane as dead code - Remove create_discount_badge usage - Remove handle_experiment_change call OpenTelemetry removal: - Remove opentelemetry, opentelemetry-http, opentelemetry-otlp, opentelemetry_sdk, tracing-opentelemetry dependencies - Replace tracing module with no-op stub - Delete native.rs and cloud_agent_auth.rs Bug fixes (prior work): - Fix apply_diffs() to use markdown_unescaped(ctx) - Fix notebook executor AIDocumentId handling - Fix margin/corner-radius consistency in requested_command.rs - Add document tool handlers to extract_tool_result_content() - Fix deprecated from_byte_stream in MCP SSE transport - Fix Cargo.toml profile package spec - Upgrade rust-toolchain to 1.94.1
This commit is contained in:
@@ -61,7 +61,6 @@ use crate::pane_group::pane::get_started_view::GetStartedView;
|
||||
use crate::server::network_log_view::NetworkLogView;
|
||||
use crate::server::telemetry::SharingDialogSource;
|
||||
use crate::settings::PaneSettings;
|
||||
use crate::settings_view::environments_page::EnvironmentsPageView;
|
||||
use crate::settings_view::SettingsView;
|
||||
use crate::terminal::available_shells::AvailableShell;
|
||||
use crate::terminal::TerminalView;
|
||||
@@ -214,9 +213,9 @@ impl PaneId {
|
||||
Self::new_from_ctx(IPaneType::EnvVarCollection, ctx)
|
||||
}
|
||||
|
||||
/// Creates a [`PaneId`] from a [`ViewContext<PaneView<EnvironmentsPageView>>`]
|
||||
/// Creates a [`PaneId`] from a [`ViewContext<PaneView<SettingsView>>`] (environment management stub)
|
||||
pub fn from_environment_management_pane_ctx(
|
||||
ctx: &ViewContext<PaneView<EnvironmentsPageView>>,
|
||||
ctx: &ViewContext<PaneView<SettingsView>>,
|
||||
) -> Self {
|
||||
Self::new_from_ctx(IPaneType::EnvironmentManagement, ctx)
|
||||
}
|
||||
@@ -312,9 +311,9 @@ impl PaneId {
|
||||
Self::new(IPaneType::EnvVarCollection, env_var_collection_view)
|
||||
}
|
||||
|
||||
/// Creates a [`PaneId`] from a [`PaneView<EnvironmentsPageView>`] entity ID.
|
||||
/// Creates a [`PaneId`] from a [`PaneView<SettingsView>`] entity ID (environment management stub).
|
||||
pub fn from_environment_management_pane_view(
|
||||
environment_management_pane_view: &ViewHandle<PaneView<EnvironmentsPageView>>,
|
||||
environment_management_pane_view: &ViewHandle<PaneView<SettingsView>>,
|
||||
) -> Self {
|
||||
Self::new(
|
||||
IPaneType::EnvironmentManagement,
|
||||
@@ -469,7 +468,7 @@ impl PaneId {
|
||||
ChildView::<PaneView<EnvVarCollectionView>>::with_id(self.0.pane_view_id).finish()
|
||||
}
|
||||
IPaneType::EnvironmentManagement => {
|
||||
ChildView::<PaneView<EnvironmentsPageView>>::with_id(self.0.pane_view_id).finish()
|
||||
ChildView::<PaneView<SettingsView>>::with_id(self.0.pane_view_id).finish()
|
||||
}
|
||||
IPaneType::Workflow => {
|
||||
ChildView::<PaneView<WorkflowView>>::with_id(self.0.pane_view_id).finish()
|
||||
|
||||
Reference in New Issue
Block a user